@import url("https://fonts.googleapis.com/css?family=Rubik+Mono+One|Roboto+Mono:400,700&display=swap");
/* CSS Document */
/*body{
	margin: 0;
	padding: 0;
}*/

/* unvisited link 
a:link {
color: white;
}*/
/* visited link 
a:visited {
color: white;
}*/
/* mouse over link 
a:hover {
color: orange;
} */
/* selected link
a:active {
color: black;
}*/

html, body {
    height: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.hero-tab {
    display: none;
}

.hero-tab.active {
    display: block;
}

.page-container,
.iwpdata-container
.site-page {
    padding: 0 1rem;
    max-width: 100%;
}

input,
textarea,
select {
    font-family: var(--font-family-primary);
}

body {
	margin: 0;
	padding: 0;
	display:flex;
	flex-direction: column;
}

.site-page {
    flex: 1;
    align-self: flex-start;
    justify-content: center;
    margin: 0 auto;
    max-width: 45rem;
    display: block;
}

content{
	/*
	Flex: 1;
	min-height: 0;	*/
	display:block;
}

.cookie-banner {
  display: none;   /* add this line */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
}

.main_bold_font_red_medium {
    font-family: "Rubik Mono One", sans-serif;
    font-size: 14px;
    color: #000000 !important;
}

.schedule{
	
	height: 100vh;
}
/*
.pushdown{
    padding-top: 1rem !important;
}*/

/* 1. Stop margin collapse on all forms */
.form {
    padding-bottom: 1rem;
}

/* 2. Give every field row the SAME spacing */
.form .dj_row {
    margin-bottom: 1rem;
}

.dj_row {
    margin-bottom: 1rem; /* or 16px if you prefer */
}
.form .dj_row {
  margin-bottom: 1rem;
}

.form .dj_two-col {
  margin-bottom: 1rem; /* ensure the two-column row has the same gap */
}

.form .pushdown {
  padding-top: 1rem;   /* controlled gap above the button */
}


/* 3. Give every submit button the SAME spacing above */
.form .form-button {
    margin-top: 1rem !important;
}

/* For checkbox used throughout website */
.styled-checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #ccc !important;
    background-color: #ffffff !important;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

.styled-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* For radio button used throughout website */
.styled-radio {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #ccc !important;
    background-color: #ffffff !important;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

.styled-radio:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: black;
}

/* For Footer */
footer{
	
	display: block;
	transition: opacity 0.3s ease;	
	
	width: 100%;
	z-index: 999;
}

.footer-hidden{

	opacity: 0;
	pointer-events: none;
}

.iwppage-container {
    max-width: 900px;
    margin: 0 auto;
    /*padding: 20px;*/
    padding: 0 1rem;
}

.section-title {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.red-arrows {
    color: #CF1F1F;
}

/* Chatroom (loaded via iframe on the livestream page) */
#chat-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    min-height: 0;
}

.form-button {
  background-color: #bbbbbb !important;
  color: #000 !important;
  border: 1px solid #bebebe !important;
  border-radius: 5px !important;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 !important;
}

#messages {
    background: #fff;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
}

/*.message {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
    padding: 4px 10px;
    border-bottom: 1px solid #eee;
}

.message .meta {
    flex: 0 0 auto;
    white-space: nowrap;
    font-weight: bold;
    color: #CF1F1F;
    margin-right: 8px;
}

.message .text {
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    color: #000;
}*/

.message {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    padding: 4px 10px;
    border-bottom: 1px solid #eee;
}

.message .meta {
    font-weight: bold;
    font-size: 11px;
    color: #CF1F1F;
    margin-bottom: 2px;
}

.message .text {
    font-size: 13px;
    word-wrap: break-word;
    color: #000;
}

.message.system {
    color: #888;
    font-style: italic;
}

#chat-input {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

#message-input {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: "Roboto Mono", monospace;
}

#send-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background: #CF1F1F;
    color: #fff;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
}

#dj-panel {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: "Roboto Mono", monospace;
}

#dj-panel input {
    padding: 4px;
    margin-right: 4px;
}

#dj-panel button {
    margin: 2px;
    padding: 4px 8px;
    cursor: pointer;
}

#status {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    font-family: "Roboto Mono", monospace;
}

#status .status-user {
    color: #CF1F1F;
    font-weight: bold;
}

#audio-player button {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 998;
}

#playPauseIcon{
	width: 40px;
	height: 40px;
}

.footer {
      
	margin-top: auto;
    }

/* Style for each iframe */
.iframe-item {		
	height: 120px; /* Set the height of each iframe */
	margin-bottom: 0px; /* Add spacing between iframes */
	border: none; /* Remove iframe borders */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional shadow for better visuals */
}

.wny-image {
  max-width: 100%;
  max-height: 283px;
}

header .top_div {
	height:auto;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0%;
	border: none;
}

header .top_div img{	
	/*flex-shrink: 0;
	display: block;	*/
	max-width: 720px;   /* match your section width */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.iwp-image {
    width: 100%;
    max-height: 120px;
    height: auto;
}

.iwp-banner {
    display: flex;
    width: 100%;
    align-items: stretch;   /* fillers match logo height */
}

.iwp-logo {
    max-height: 250px;      /* cap height */
	max-width: 100%;
    height: auto;           /* allow shrinking */
    width: auto;            /* maintain aspect ratio */
    flex-shrink: 1;         /* KEY: allow shrinking */
    flex-grow: 0;           /* do not stretch horizontally */
    display: block;
}

.iwp-filler {
    flex-grow: 1;           /* stretch horizontally */
    flex-shrink: 1;         /* shrink when needed */
	min-width: 1px;
    background-size: auto 100%; /* match logo height */
    background-repeat: repeat-x;
    background-position: center;
}

.iwp-filler.left {
    background-image: url('../images/logo_filler.png');
}

.iwp-filler.right {
    background-image: url('../images/logo_filler.png');
}

.player {
	border: 2px solid rgb(23, 22, 22);
	padding: 10px;
	background-color: #ffffff;
	width: 600px;
	height: auto;
}	

.form_a{
	margin:auto;	
	padding:40px;	
}

.bigLabel{
	font-family: "Rubik Mono One", sans-serif;
	font-size: 24px; 
	color: #Cf1F1F;
}

.field-label{
	color: #000000;

}

.advert_top{
	width: 100%;
	height: 100%;
	text-align: center;
	text-justify: auto;
}

.advert_bottom{
	width: 100%;
	height: 100%;
	text-align: center;
	text-justify: auto;
}

.MixcloudSpacing{	
	max-width: 720px;
    width: 100%;
    margin: 15px auto;       /* spacing between sections */
    padding: 20px;           /* equal internal boundaries */
    background-color: #f7f7f7;
    color: #000;
    border: 3px solid #ffffff;
    font-size: 16px;         /* slightly bigger default font */
}


.main_bold_font_red_large{	
	font-family: "Rubik Mono One", sans-serif;
	font-size: 15px; 	
	color: #000000 !important;
}

.main_bold_font_red{
	font-family: "Rubik Mono One", sans-serif;
	font-size: 12px; 	
	color: #000000 !important;
}

.main_bold_font_red a{
	
	text-align: center;
	color: #000000;
	text-decoration: none;
}

.main_bold_font_red a:link {
	
	color: #000000;
}

/* visited link */
.main_bold_font_red a:visited {

	color: #CF1F1F;
}

/* mouse over link */
.main_bold_font_red a:hover {

	color: #000000;
}

/* selected link */
.main_bold_font_red a:active {
	color: #CF1F1F;
}

.dj_play{
	position: absolute;
	top: 0;
	left: 0;
}

.h2_heading {
	font-weight: 900;
	font-size: xx-large;
	color:#000000;
	padding-top: 20px;
	padding-bottom: 20px;
}

#dj_form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dj_row {
    display: flex;
    flex-direction: column;
}

.dj_two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dj_label {
	color:#CF1F1F !important;
    font-weight: 600;
    margin-bottom: 6px;
}

input[type="password"],
input[type="text"],
input[type="email"],
input[type="url"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contactTextArea{
	
	width: 100%;
    padding: 10px;
	box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    height: 150px !important;
	resize: none;
}


.dj_genres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
}

.dj-callout {
    font-size: 16px;
    margin-top: 20px;
}


.dj_genre_item{
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
}

/* Genre checkbox labels have no class of their own, so they inherit the
   menu stylesheet's body{color:white} rule and go invisible on light
   backgrounds. Applies globally (djform, Profile tab, DJ Directory). */
.dj_genre_item label {
    color: #000;
    cursor: pointer;
}

/* Same root cause, wider net: every other unclassed checkbox/radio label
   sitting on a light background (claim modal, edit-show modal, Settings
   tab) inherits the same white body text and goes invisible. Rather than
   patching each inline style individually, this covers every label inside
   those light-background containers in one place. */
.schedule-modal-inner label,
.show-edit-modal-inner label,
#hero-tab-profile .profile-section-body label {
    color: #000;
}

button {
    padding: 1px 1px;
    font-size: 18px;
    border: none;
    background: #333;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.nowplaying-box {
    display: grid;
    grid-template-columns: auto 1fr auto 60px; /* 4 columns */
    grid-template-rows: auto auto auto auto auto; /* 5 rows */
    grid-gap: 10px;
    max-width: 720px;
    width: 100%;
	border-radius: 12px;
	padding-bottom: 6px;
}

/* Row 1, Col 1 */
.np-station {
    grid-column: 1 / span 3; /* columns 1,2,3 */
    grid-row: 1;
	font-family: "Rubik Mono One", sans-serif;
	font-size: 12px; 	
    color: #000;
	padding-left: 12px;
}

/* Now Playing tab on livestream.php: description sits full-width, centred, no offset */
#hero-tab-meta .np-station {
    padding-left: 0;
    font-size: 0.9rem;
}

/* Row 1, Col 2 */
.np-playbtn {
    grid-column: 4;
    grid-row: 1;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 20px;
	justify-self: start;
    cursor: pointer;
}
.np-playbtn img{
	max-width: 40px;
    max-height: 40px;
}

.nowplaying-details {
    display: grid;
    grid-template-rows: repeat(5, auto);
    row-gap: 4px;
}

.np-col {
    display: flex;
    flex-direction: column;
}

.np-row {
    font-size: 16px;
    font-weight: 600;
    color: #000;
	padding: 4px 12px;
}

/* Artwork spans rows 2–5 */
.np-art {
    grid-column: 1;
    grid-row: 2 / span 4; /* rows 2,3,4,5 */
    width: 150px;
    height: 150px;
    object-fit: cover;
	margin-left: 12px;
    border-radius: 8px;
}

/* Track info spans rows 2–5 */
.np-info {
    grid-column: 2 / span 3; /* columns 2,3,4 */
    grid-row: 2 / span 4;    /* rows 2,3,4,5 */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.andBreathe{
	margin-bottom: 14px;
}

.np-loader {
    width: 120px;
    height: 14px;
    background: #333;
    border-radius: 6px;
    animation: npPulse 1.2s infinite ease-in-out;
    margin-bottom: 10px;
}

#nowplaying-wrapper {
    position: relative;
    min-height: 40px;
}

.np-loader {
    width: 120px;
    height: 14px;
    background: #333;
    border-radius: 6px;
    animation: npPulse 1.2s infinite ease-in-out;
}

@keyframes npPulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.np-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.4s ease;
}

/* Tabs */
#hero-tabs {
    display: flex;
    gap: 0px;
    margin-bottom: 20px;
}

#hero-tabs button {
    padding: 10px 15px;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.hero-tab {
  display: none;        /* hide all panels by default */
}

.hero-tab.active {
  display: block;       /* only show the active one */
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

#hero-tab-chat.active #chat-frame {
    height: 100%;
    display: block;
}

/* Livestream page: let height flow down from page-container to hero-player,
   so hero-player fills exactly the space available between the banner and
   footer instead of a guessed fixed height. Scoped to this page only. */
#livestream-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#livestream-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Hero layout */
#hero-player {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0px;
}

.hero-artwork img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.hero-row {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000;
}

.hero-controls {
    display: flex;
    justify-content: center;
}

#hero-playbtn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    border: none;
    background: #ff0066;
    color: white;
    cursor: pointer;
}

/* Make headings black */
#auth-wrapper h2.auth-heading {
    color: #000;
}

/* Friendly micro-copy */
.auth-note {
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* OR separator */
.auth-or {
    text-align: center;
    font-weight: bold;
    color: #555;
    margin: 25px 0 10px;
}

#auth-wrapper .form input,
#auth-wrapper .form button,
#auth-wrapper .form input[type="submit"] {
  margin-bottom: 0;   /* remove random gaps */
}

#auth-wrapper .form .form-button {
  margin-top: 1rem;   /* consistent gap above buttons */
}

.tabs {
  display: flex;
  gap: 0;
  padding-bottom: 20px;
  width: 100%;                  /* make sure it stretches full width */
}

.tabs-button {
  background-color: #e6e6e6 !important;   /* match your grey div */
  color: #000 !important;     /* default black text */
  border: 1px solid #bebebe !important;
  border-radius: 5px 5px 0 0 !important;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-primary);
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 !important;
  margin-right: -1px;
}

.tabs-button.active {
  background-color: #f6f6f6 !important;   /* match your grey div */
  color: #CF1F1F !important;           /* red for selected tab */
  border-bottom: none !important;
  font-weight: bold;
}

.tabs-button:hover {
  color: #CF1F1F;           /* red on hover */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #000 !important;
    font-family: var(--font-family-primary) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth-note h3 {
    color: #CF1F1F;
}

.auth-note a {
    color: #CF1F1F;
    text-decoration: none;
}
.auth-note a:hover {
    color: black;
}

/* Reusable red-link/black-hover treatment for plain inline links outside
   .auth-note's scope (e.g. DJ application review's Mixcloud/SoundCloud/
   Instagram links) — same visual pattern, without pulling in .auth-note's
   own font-size/color changes to the surrounding text. */
.social-link {
    color: #CF1F1F;
    text-decoration: none;
}
.social-link:hover {
    color: #000;
    text-decoration: underline;
}

.form-button {
  background-color: #bbbbbb !important;   /* match your grey div */
  color: #000 !important;     /* default black text */
  border: 1px solid #bebebe !important;
  border-radius: 5px !important;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-primary);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 !important;
}

.form-button.active {
  background-color: #EBEBEB !important;   /* match your grey div */
  color: #CF1F1F !important;           /* red for selected tab */
  font-weight: bold;
}

.form-button:hover {
  color: #CF1F1F !important;           /* red on hover */
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
}

.form button,
.form input[type="submit"] {
  display: block;
  width: 100% !important;   /* stretches to parent width */
}

.form {
  padding-bottom: 1rem; /* prevents child margins from collapsing into footer */
}

.form {
  overflow: auto; /* or hidden */
}

.form button {
  margin-top: 1rem;   /* add a uniform gap above buttons */
}

.auth-errors {
    margin-bottom: 20px;
}

.error-message {
    background: #ffdddd;
    border-left: 4px solid #cf1f1f;
    padding: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Deliberate, scoped exception to the site's red/black/grey/white
   palette — reserved purely for transient success confirmations
   (saved, connected, uploaded), never for ongoing status categories.
   Those keep using the black/grey/red system elsewhere (schedule grid,
   My Shows, admin status pills etc.) — this is a different kind of
   signal, a moment of feedback rather than a state to track. */
.auth-success {
    background: #e5f6ec;
    border-left: 4px solid #0A8F48;
    color: #06542a;
    padding: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Warning banner — same shape as .auth-success, but purple with a leading
   exclamation mark, for messages that need to stand out as "something's
   wrong, worth noticing" without being a hard red error. */
.auth-warning {
    background: #f1e9fb;
    border-left: 4px solid #6b21a8;
    color: #4c1580;
    padding: 10px 10px 10px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.auth-warning::before {
    content: "!";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6b21a8;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

/* Shared upload UI — used anywhere a file gets picked/uploaded across
   the site (show artwork, mix uploads, etc.) so every upload looks and
   behaves the same, and any future tweak only needs changing here. */
.upload-filename-display {
    text-align: left;
    margin: 4px 0 0 !important;
    font-size: 13px;
    color: #666;
    display: none;
}
.upload-progress-wrap {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.upload-progress-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}
.upload-progress-fill {
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    transition: width 0.2s ease;
}
.upload-progress-pct {
    font-size: 12px;
    color: #666;
    min-width: 34px;
    text-align: right;
}

#forgot-password-link {
    color: #cf1f1f;
    text-decoration: none;
}

#forgot-password-link:hover {
    color: black;
}

#guidelines_form input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    padding: 0 !important;
    margin: 0 !important;
    border: 2px solid #333 !important;
    background-color: #ffffff !important;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

#guidelines_form input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Cancel link — match the forgot-password link colours */
#cancel-registration-link {
    color: #CF1F1F;
    text-decoration: none;
}

#cancel-registration-link:hover {
    color: black;
}


@keyframes spin{
	to { transform: rotate(360deg);}
}

@media screen and (max-width: 767px) {	
	
	.iwp-image {	  
	    width: 800px;
		max-width: none;
	}
	
	.player {
		width: 720px;
		max-width: none;
	}
	
	.MixcloudSpacing{	
		padding: 10px;	
		max-width: 720px; 		
	}
	
	.form_a{
		margin:auto;	
		padding:40px;	
	}
		
	.bigLabel{
		font-family: "Rubik Mono One", sans-serif;
		font-size: 24px; 	
	}
	#dj-form {
    
			max-width: 720px;
	}
}

@media screen and (max-width: 480px) {
	
	.iwp_image {	
		
		
		width: 480px;
		max-width: none;
		height: 100px;		
	}	
	
	.player {
		width: 400px;
		max-width: none;		
		border: 2px solid white;
		padding: 0px;
	}
	
	.MixcloudSpacing{	
	
		
		padding: 10px;
    	max-width: 400px; /* Set a fixed width */
	}

	#dj-form {
    
			max-width: 480px;
	}

	#playPauseIcon{
		width: 40px;
		height: 40px;
	}
}