#portrait, #landscape {
	display: none;
}

@media (orientation: portrait) {
	/*#portrait { display: block; }*/
}

@media (orientation: landscape) {
	/*#landscape { display: block; }*/
}

.cd {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	background-size: cover;
	position: relative;
	z-index: 9;
	margin-top: 5%;
	cursor: pointer;
}

.slideIn {
	animation: slide-in 1000ms; 
	transform: translateX(-105%);
 	}

	@keyframes slide-in {
	from {
    		transform: translateX(0%); /* Start off-screen to the left */
	}
	to {
    		transform: translateX(-105%); /* End at its original position */
	}
	}

.crt::before {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: -webkit-linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), -webkit-linear-gradient(left, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	background: -o-linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), -o-linear-gradient(left, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(to right, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	z-index: 2;
	background-size: 100% 2px, 3px 100%;
	pointer-events: none;
}

.songBox {
		background-color: #100C08; /* Light blue, similar to iPod screens */
    	border: 5px solid #2d2d2d;
		color: #f0f0f0;
		text-align: center;
		padding: 8px 10px;
		font-family: 'lcddregular';
		margin-left: 25px;
		margin-right: 25px;
		border-top: 3px solid #2d2d2d;
		border-right: 3px solid #666666;
		border-bottom: 3px solid #666666;
		border-left: 3px solid #2d2d2d;
		font-size: 22px;
		line-height: 24px;
		width: 100%;
		margin-bottom: 24px;
		white-space: nowrap;
    	overflow: hidden;
    	text-overflow: ellipsis;
}

#curSongRmobileBox {
	background-color: #100C08; /* Light blue, similar to iPod screens */
    border: 5px solid #2d2d2d;
	color: #f0f0f0;
	text-align: center;
	padding: 5px 10px;
	font-family: 'lcddregular';
	margin-left: 0px;
	margin-right: 0px;
	border-top: 3px solid #2d2d2d;
	border-right: 3px solid #666666;
	border-bottom: 3px solid #666666;
	border-left: 3px solid #2d2d2d;
	font-size: 30px;
	line-height: 28px;
	width: 100%;
	margin-bottom: 24px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	position: absolute;
	width: 100%;
}

.tapeHolder {
	
}

.ipod-screen {
   	width: 150px;
   	height: 150px;
   	background-color: #100C08;
   	font-family: monospace;
   	font-size: 8px;
   	text-align: center;
   	padding: 10px;
   	box-sizing: border-box;
   	image-rendering: pixelated;
   	image-rendering: -moz-crisp-edges;
   	image-rendering: crisp-edges;
   	transform: scale(2);
   	transform-origin: top left;
	position: relative;
	border-top: 3px solid #2d2d2d;
	border-right: 3px solid #666666;
	border-bottom: 3px solid #666666;
	border-left: 3px solid #2d2d2d;
}

	.ipod-screen img {
		border-radius: 8px;
		margin: 10px;
	}

	.glass {
		position: absolute;
  		width: 250px;
  		height: 250px;
  		background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
  		backdrop-filter: blur(1px); /* Frosted glass effect */
  		-webkit-backdrop-filter: blur(1px); /* For Safari */
  		border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
  		border-radius: 0px; /* Rounded corners for a softer look */
  		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  		margin: 0;
  		position: absolute;
  		top: 0;
  		left: 0;
  		-ms-transform: translate(10%, 10%);
  		transform: translate(10%, 10%);
	}

	.glass::after {
  		content: "";
  		position: absolute;
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  ); /* Light reflection gradient */
		opacity: 0.8;
  		border-radius: 0px; /* Match the overlay's border-radius */
	}

/*TAPE*/
:root {
	--background: #666666;
}

:root {
	--progress: 20;
	--progress-right: calc((130px * var(--progress)) / 100);
	--progress-left: calc(130px - var(--progress-right));
	--speed-spool: 5s;
}

.tape {
	width: 500px;
	height: 270px;
	margin: 0 auto;
	position: relative;
	padding: 25px 25px 0 25px;
	background-color: #231f20;
	border-radius: 15px;
	font-size: 16px;
}

.tape-screw {
	width: 1em;
	height: 1em;
	padding: 0.188em;
	position: absolute;
	border-radius: 50%;
	background-color: #c3c3c5;
	overflow: hidden;
}

.tape-screw:nth-child(1) {
	left: 7px;
	top: 7px;
	transform: rotate(20deg);
}

.tape-screw:nth-child(2) {
	right: 7px;
	top: 7px;
	transform: rotate(40deg);
}

.tape-screw:nth-child(3) {
	left: 7px;
	bottom: 9px;
	transform: rotate(-5deg);
}

.tape-screw:nth-child(4) {
	right: 7px;
	bottom: 10px;
	transform: rotate(10deg);
}

.tape-screw-overflow {
	width: 100%;
	height: 100%;
	background-color: #1d1b1e;
}

.tape-screw-overflow > div:before, .tape-screw-overflow > div:after {
	content: "";
	position: absolute;
	width: 0.625em;
	height: 0.625em;
	background-color: #c3c3c5;
	border-radius: 0.188em;
}

.tape-screw-overflow > div:nth-child(1):before {
	right: calc(50% + 0.063em);
	bottom: calc(50% + 0.063em);
}

.tape-screw-overflow > div:nth-child(1):after {
	left: calc(50% + 0.063em);
	bottom: calc(50% + 0.063em);
}

.tape-screw-overflow > div:nth-child(2):before {
	right: calc(50% + 0.063em);
	top: calc(50% + 0.063em);
}

.tape-screw-overflow > div:nth-child(2):after {
	left: calc(50% + 0.063em);
	top: calc(50% + 0.063em);
}

.tape-header {
	position: relative;
	height: 50px;
	padding-left: 6px;
	padding-top: 12px;
	overflow: hidden;
	background-color: red;
	border-radius: 15px 15px 0 0;
	font-family: "Rowdies", cursive;
	font-size: 26px;
	color: #686d69;
	background-color: #faeed8;
}

.tape-header:before {
	content: "";
	position: absolute;
	height: 16px;
	top: 20px;
	left: 36px;
	right: 16px;
	z-index: 1;
	box-shadow: 0px -1px 0px 0px #d3d0c7, 0px -2px 0px 0px #9a968b, 0px 1px 0px 0px #9a968b, 0px 2px 0px 0px #d3d0c7;
}

.tape-title {
	position: absolute;
	top: 3px;
	right: 50px;
	color: #2c303a;
	z-index: 1;
	font-family: "Homemade Apple", cursive;
	transform: rotate(-5deg);
	font-size: 20px;
}

.tape-body {
	height: 120px;
	padding-top: 5px;
	border-radius: 0 0 15px 15px;
	background: linear-gradient(to bottom, #78c9e9 0%, #78c9e9 99px, #ce217f 100px, #ce217f 100%);
}

.tape-window {
	width: 290px;
	height: 80px;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	background-color: white;
	position: relative;
}

.tape-window:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0px 0px 0px 10px #231f20;
}

.tape-spools {
	background-color: var(--background);
	padding: 5px 10px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	overflow: hidden;
}

.tape-spools:before, .tape-spools:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 78px;
	background-color: #231f20;
	z-index: 1;
}

.tape-spools:after {
	right: 3px;
}

.tape-spools:before {
	left: 3px;
}

.tape-spool {
	width: 60px;
	height: 60px;
	position: relative;
}

.tape-spoolbar {
	display: flex;
	position: relative;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin-top: 1px;
	width: 58px;
	height: 58px;
	border: 5px solid #a2a3a7;
	border-radius: 50px;
	background-color: var(--background);
	animation: tape-spol-rotate var(--speed-spool) linear infinite;
}

.tape-spoolbar:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	bottom: 5px;
	right: 5px;
	z-index: 1;
	border-radius: inherit;
	background-color: var(--background);
}

.tape-spoolbar > div {
	position: absolute;
	width: 6px;
	top: -2px;
	bottom: -2px;
	background-color: #a2a3a7;
}

.tape-spoolbar > div:nth-child(2) {
	transform: rotate(120deg);
}

.tape-spoolbar > div:nth-child(3) {
	transform: rotate(240deg);
}

.tape-film-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.tape-film {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 90px;
	min-height: 90px;
	border-radius: 50%;
	border: 1px solid #0f0f0f;
	background: #6a352d repeating-radial-gradient(#6a352d, #6a352d 1px, #7c3835 2px, #7c3835 3px);
	animation: tape-spol-rotate 7s linear infinite;
}

.tape-film:before {
	content: "";
	position: absolute;
	width: 90px;
	height: 90px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #98999d;
}

.tape-spool:nth-child(1) .tape-film {
	width: calc(90px + var(--progress-left));
	height: calc(90px + var(--progress-left));
}

.tape-spool:nth-child(2) .tape-film {
	width: calc(90px + var(--progress-right));
	height: calc(90px + var(--progress-right));
}

.tape-footer {
	position: relative;
	width: 280px;
	height: 67px;
	margin: 6px auto 0;
	border-top: 3px solid #828186;
}

.tape-footer:before {
	content: "";
	position: absolute;
	width: 3px;
	top: -2px;
	bottom: 0;
	right: 0;
	transform: rotate(-20deg);
	transform-origin: 0 0;
	background-color: #828186;
}

.tape-footer:after {
	content: "";
	position: absolute;
	top: -3px;
	left: -1px;
	bottom: 0;
	width: 2px;
	transform: rotate(20deg);
	transform-origin: 0 0;
	background-color: #828186;
}

.tape-hole:before, .tape-hole:after {
	content: "";
	position: absolute;
	background-color: var(--background);
	z-index: 3;
}

.tape-hole-radial:before, .tape-hole-radial:after {
	width: 18px;
	height: 18px;
	bottom: 5px;
	border-radius: 50%;
}

.tape-hole-radial:before {
	left: 30px;
}

.tape-hole-radial:after {
	right: 30px;
}

.tape-hole-square:before, .tape-hole-square:after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	bottom: 10px;
	border-radius: 5px;
	z-index: 3;
	background-color: var(--background);
}

.tape-hole-square:before {
	left: 84px;
}

.tape-hole-square:after {
	right: 84px;
}

.tape-footer .tape-screw {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	margin: 0 auto;
	bottom: 30px;
	font-size: 22px;
	transform: rotate(60deg);
}

.tape:hover .progress-range {
	opacity: 1;
}

@keyframes tape-spol-rotate {
	from {
 		transform: rotate(360deg);
	}
}

.songTitle {
	color: #78c9e9;
}

.modal-overlay {
	display: none;
		position: fixed;
  		z-index: 999999;
  		left: 0;
  		top: 0;
  		width: 100vw;
  		height: 100vh;
  		background-color: rgba(0,0,0,0.7);
  		backdrop-filter: blur(4px);
}

.modal-content {
	position: relative;
	background-color: #fff;
	color: #333;
	margin: 10% auto;
	padding: 2rem;
	width: 90%;
	max-width: 600px;
	border-radius: 10px;
	box-shadow: 0 0 20px #000;
	text-align: center;
	font-family: 'Segoe UI', sans-serif;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
}

.modal-button {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 1.25rem;
	background-color: #f9cb6a;
	color: #3365a6;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transition: background-color 0.3s ease;
}

.modal-button:hover {
	background-color: #e08000;
}

.header {
	padding: 0px;
	transition: all 1s ease-in-out;
	background-color: #606875;
	position: fixed;
	top: 0px;
	left: 0px;
	display: inline-block;
	width: 100%;
	max-width: 1250px; 
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	height: auto;
	opacity: 1;
}

.headerScroll {
	opacity: 0;
	z-index: -1;
}

#largeR {
	opacity: 1;
	max-width: 234px;
	transition: all 1s ease-in-out;
	height: auto;
	position: relative;
	margin: 0px auto;
	filter: drop-shadow(5px 5px 10px #000000);
	cursor: pointer;
	top: 70%;
    transform: translateY(-50%);
}

.menuButton {
	border: 5px solid #cd288b;
	border-radius: 15px;
	font-family: 'Oswald';
	color: #ffffff;
	display: inline-block;
	font-size: 25px;
	background-color: #78c9e9;
	width: 100%;
	transition: all 1s ease-out;
	text-decoration: none;
	position: relative;
	top: 15px;
}

.menuButton:hover {
	filter: drop-shadow(0px 0px 13px #78c9e9);
	cursor: pointer;
	text-decoration: none;
}

.menuButtonH {
	border: 5px solid #f7ca6c;
	border-radius: 20px;
	font-family: 'Oswald';
	color: #ffffff;
	display: inline-block;
	font-size: 37px;
	background-color: #4185d9;
	width: 250px;
	text-align: center;
	transform: translateY(72%);
	transition: all 1s ease-out;
}

.menuButtonH:hover {
	filter: drop-shadow(0px 0px 13px #f7ca6c);
	cursor: pointer;
}
	
.playlistButtonR {
	border: 3px solid #78c9e9;
	border-radius: 14px;
	padding: 5px 0px;
	font-family: 'Oswald';
	color: #ffffff;
	display: inline-block;
	font-size: 20px;
	background-color: #a178bc;
	width: 175px;
	text-align: center;
	transition: all 1s ease-out;
	text-transform: uppercase;
}

.playlistButtonR:hover {
	filter: drop-shadow(0px 0px 13px #78c9e9);
	cursor: pointer;
}

.menuButtonP {
	border: 5px solid #3d4759;
	border-radius: 20px;
	font-family: 'Oswald';
	color: #ffffff;
	display: inline-block;
	font-size: 37px;
	background-color: #ad94f8;
	width: 250px;
	text-align: center;
	transform: translateY(72%);
	transition: all 1s ease-out;
}

.menuButtonP:hover {
	filter: drop-shadow(0px 0px 13px #ffffff);
	cursor: pointer;
}

#pageContent {
	width: 100%;
	background-color: #78c9e9;
	padding-top: 150px; /*if alert, then 230 */
	padding-bottom: 100px;
	padding-left: 0px;
	padding-right: 0px;
	overflow-x: hidden;
}

#facebookGroup {
	max-width: 94%; 
	height: auto;
	margin-left: -25px;
	position: absolute;
}
	
.bodyText {
	margin-top: 80px;
	font-family: 'Barlow';
	margin-bottom: 25px;
	padding: 0px 40px 25px 40px;
	font-size: 20px;
}

.bodyTextTop10 {
	margin-top: 30px;
	font-family: 'Barlow';
	margin-bottom: 25px;
	padding: 0px 0px 25px 0px;
	font-size: 26px;
}
	
.bodyTextTop10 li {
	font-size: 26px;
	padding-top: 5px;
	color: #ffffff;
	margin-left: 15px;
}
	
.bodyTitle {
	font-family: 'Oswald';
	background-color: #ce217f;
	color: #f8deec;
	font-size: 4vw;
	padding: 5px;
	margin-left: -25px;
    margin-right: -25px;
	text-align: center;
	padding-left: 0px;
}

.bodyTitleTop10 {
	font-family: 'Oswald';
	background-color: #ce217f;
	color: #f8deec;
	font-size: 34px;
	padding: 5px;
	margin-left: -25px;
    margin-right: -25px;
	padding: 5px 15px 5px 40px;
}
	
#alsoLikeBar {
	background: #AC94F7;
	background: -webkit-linear-gradient(left, rgba(172, 148, 247, 1) 0%, rgba(65, 133, 217, 1) 100%);
	background: -o-linear-gradient(left, rgba(172, 148, 247, 1) 0%, rgba(65, 133, 217, 1) 100%);
	background: linear-gradient(to right, rgba(172, 148, 247, 1) 0%, rgba(65, 133, 217, 1) 100%);	
	text-align: center;
	font-family: 'Oswald';
	color: #ffffff;
	font-size: 42px;
	border-top: 1px solid #5a97af;
	text-transform: uppercase;
	filter: drop-shadow(0px 6px 5px #000000);
}

#alsoLikeText {
	filter: drop-shadow(0px 0px 2px #3365a6);
}	

#houseBar {
	background-color: #3365a6;
	font-size: 36px;
	color: #ffffff;
	font-family: 'Oswald';
	line-height: 50px;
}

#praiseBar {
	background-color: #826fbb;
	font-size: 36px;
	color: #ffffff;
	font-family: 'Oswald';
	line-height: 50px;
}



/*Footer*/

#footerM {
	background-color: #78c9e9; 
	line-height: 18px; 
	color: #333; 
	font-family: 'Barlow'; 
	font-size: 12px; 
	padding: 10px 0px;
	display: block;
}

#footerM a {
	color: #826fbb;
	transition: all .5s ease-in;
	font-weight: 500;
}

#footerM a:hover {
	color: #ac94f7;
	text-decoration: none;
}

#footerM .social {
	color: #ce217f;
	text-decoration: none;
}

#footerM .social:hover {
	color: #ac94f7;
	text-decoration: none;
}

#footerMfixed {
	position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999;
}

#footerD {
	display: none;
}

.footerContainer {
	-webkit-box-shadow: 0px -10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    box-shadow: 0px -10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.footerIcon {
	width: 30px; 
	height: auto;
	transition: all .5s;
	cursor: pointer;
}
	
.footerIcon:hover {
	filter: drop-shadow(0px 0px 10px #ffffff);
}
	
#curSongH, #curArtistH, #curSongP, #curArtistP {
	white-space: nowrap;
   	overflow: hidden;
	text-overflow: ellipsis;
}	
	
.listenLinkH {
	color: #3365a6;
	text-decoration: none;
	font-weight: bold;
}
	
.listenLinkR {
	color: #ce217f;
	text-decoration: none;
	font-weight: bold;
}

/* The Overlay (background) */
.overlay {
	height: 0;
	width: 100%;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	/*overflow-x: hidden;*/
	overflow: hidden;
	font-family: 'Barlow';
	font-weight: 500;
	transition: 0.5s;
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 1em;
    width: 100%;
    text-align: left;
    margin-top: 15px;
    margin-left: 0px;
}

.sidebarButtonYellow {
    border: 2px solid #f7ca6c;
    padding: 7px 5px 5px 5px;
    border-radius: 10px;
    margin: 10px 0px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 18px;
    color: #f7ca6c;
}

.btnFooter {
	transition: 0.5s;
}

.btnFooter.disable {
 	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(100%);
	cursor: not-allowed;
	color: #808080;
	pointer-events: none;
 }

/* The navigation links inside the overlay */
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 1.4em;
	
	color: #ffffff;
	display: block;
	transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
	color: #f8c460;
}

.overlay i {
	color: #4185d9;
	padding-right: 10px;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
	display: none;
}


/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
	.overlay a {font-size: 20px}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}

.overlay a {
		font-size: 1.8vw;
}
	
.overlay-content {
		position: relative;
		top: 15%;
		width: 100%;
		text-align: left;
		margin-top: 30px;
		padding-left: 50px;
}
	
.overlay .closebtn {
		position: absolute;
		top: 20px;
		right: 45px;
		font-size: 60px;
		display: block;
}
	
#tapepoddiscplayer {
	display: none;
}	

.headerPinkBar {
	height: 5px; 
	background-color: #cd288b;
}

.stationLogo {
	max-width: 100%; 
	height: auto;
	transform: translateX(50%);
	position: relative;
	top: 0%;
	filter: drop-shadow(2px 2px 5px #000000);
}

.stationLogoContainer {
	padding: 15px 0px;
	background-color: #606875;
}

.mobileOnly {
	display: inline-block;
}

.desktopOnly {
	display: none;
}

#top10box {
	background-color: #5a97af; 
	display: inline-block; 
	padding: 20px; 
	text-align: left; 
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75); 
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	width: 100%;
}

@media (min-width: 768px) {
	.header {
		padding: 0px;
		transition: all 1s ease-in-out;
		background-color: #606875;
		position: fixed;
		top: 0px;
		left: 0px;
		display: inline-block;
		width: 100%;
		max-width: 1250px; 
		left: 50%;
		transform: translateX(-50%);
		z-index: 9999;
		-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
		-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
		height: auto;
		opacity: 1;
	}
	
	.headerScroll {
		opacity: 1;
		z-index: 9999;
	}
	
	#footerD {
		background-color: #606875; 
		line-height: 18px; 
		color: #ffffff; 
		font-family: 'Barlow'; 
		padding: 10px 0px;
		display: block;
		border-bottom: 5px solid #cd288b;
		font-size: 14px;
		margin: 0px;
	}
	
	#footerD a {
		color: #ffffff;
		transition: all .5s ease-in;
		text-decoration: none;
	}

	#footerD a:hover {
		color: #ac94f7;
		text-decoration: none;
	}

	#footerD .social:hover {
		color: #f7ca6c;
		text-decoration: none;
	}
	
	#footerM, #footerMfixed {
		display: none;
	}

	#pageContent {
		left: 50%;
		transform: translateX(-50%);
		position: absolute;
		width: 100%;
		max-width: 1250px;
		background-color: #78c9e9;
		z-index: 9998;
		box-shadow: -10px 0 50px -5px #000, 10px 0 50px -5px #000;
		padding-top: 190px; /*if alert, then 230 */
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.mobileOnly {
		display: none;
	}

	.desktopOnly {
		display: inline-block;
	}
	
	#facebookGroup {
		max-width: 100%; 
		height: auto;
		margin-left: 0px;
		position: relative;
	}
	
	#top10box {
		background-color: #5a97af; 
		display: inline-block; 
		padding: 20px; 
		text-align: left; 
		-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75); 
		box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
		width: auto;
	}
	
	.bodyText {
		margin-top: 80px;
		font-family: 'Barlow';
		margin-bottom: 25px;
		padding: 0px 0px 25px 75px;
		font-size: 20px;
	}
	
	.bodyTextTop10 {
		margin-top: 80px;
		font-family: 'Barlow';
		margin-bottom: 25px;
		padding: 0px 0px 25px 75px;
		font-size: 20px;
		font-weight: 500;
	}
	
	.bodyTextTop10 li {
		font-size: 18px;
		padding-top: 5px;
		color: #ffffff;
		margin-left: 0px;
	}
	
	.bodyTitle {
		margin-left: 0px;
		margin-right: 0px;
		font-size: 22px;
		text-align: left;
		padding-left: 15px;
	}
	
	.bodyTitleTop10 {
		margin-left: 0px;
		margin-right: 0px;
		font-size: 22px;
		padding: 5px 15px;
	}
	
	.stationLogo {
		max-width: 100%; 
		height: auto;
		margin-left: 60px;
		transform: translateY(50%);
		position: relative;
		top: 0%;
		filter: drop-shadow(2px 2px 5px #000000);
	}
	
	.stationLogoContainer {
		padding: 0px;
		background-color: transparent;
	}

	#tapepoddiscplayer {
		display: block;
	}
	
	.headerPinkBar {
		height: 35px; 
		background-color: #cd288b;
	}
	
	#largeR {
		opacity: 1;
		max-width: 334px;
		transition: all 1s ease-in-out;
		height: auto;
		position: absolute;
		margin: 0px auto;
		left: 20px;
		filter: drop-shadow(5px 5px 10px #000000);
		z-index: 9999;
		top: -29px;
		transform: none;
		cursor: pointer;
	}
	
	.menuButton {
		border: 5px solid #cd288b;
		border-radius: 20px;
		font-family: 'Oswald';
		color: #ffffff;
		display: inline-block;
		font-size: 37px;
		background-color: #78c9e9;
		width: 250px;
		transition: all 1s ease-out;
		text-decoration: none;
		top: 0px;
		cursor: pointer !important;
	}
}