@charset "UTF-8";
/* CSS Document */


/* ********** Audio Styles ********** */


.audioWrapper {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	/*background-color: #0F0;*/
}
audio {
	-webkit-transition: all .5s linear 0s;
	-moz-transition: all .5s linear 0s;
	-o-transition: all .5s linear 0s;
	transition: all .5s linear 0s;
	-moz-box-shadow: 2px 2px 4px 0px #000;
	-webkit-box-shadow: 2px 2px 4px 0px #000;
	box-shadow: 2px 2px 4px 0px #000;
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	border-radius: 7px 7px 7px 7px;
	margin-top: 30px;
	height: 50px;
	background-color: #666;
	padding: 6px;
	-ms-transition: all .5s linear 0s;
	margin-right: auto;
	margin-left: auto;
	margin-top: 4px; /* *** WBO *** I added the top margin size for better spacing of the song description box *** */
}
control {
	width: 200px;
}
.centerAudioOne {
	text-align: center;
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	z-index: 999999;
	/*background-color: #FFF;*/
	padding-top: 10px;
	padding-bottom: 0px;
	/*border-radius: 30px;*/
	margin-bottom: 10px;
	border-top: 2px dotted #AD3030;
}
.musicWrapper {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 5px;
}

/*  Below found at: http://stackoverflow.com/questions/3794682/custom-css-for-audio-tag */
audio:hover, audio:focus, audio:active {
-webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
-moz-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
transform: scale(1.05);
}

/* **** I also found this way to change the color of the actual player at StackOverflow: http://stackoverflow.com/questions/4126708/is-it-possible-to-style-html5-audio-tag **** */
audio {
	background-color: #F50404;
}

/* ***** The following #player___ properties are to change the backgroud color of the player. This will overwrite the audio tag [see above] background-color ***** */

.playerGradientSweeteeOne {
	background-color: #E80202;
	background-image: -webkit-linear-gradient(270deg,rgba(149,51,51,1.00) 0%,rgba(167,110,65,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(149,51,51,1.00) 0%,rgba(167,110,65,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(149,51,51,1.00) 0%,rgba(167,110,65,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(149,51,51,1.00) 0%,rgba(167,110,65,1.00) 100%);
}
#playerSolidColor {
	background-color: #ED932A;
}
.songTitlePlain {
}


/* •••••••••••••• Video Styles •••••••••••••• */

/* ********* Centers the video in its div ********* */
.videoWrapper {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border-top: 2px solid #F60408;
	padding-top: 15px;
	margin-top: 15px;
}
video {
	-webkit-transition: all .5s linear 0s;
	-moz-transition: all .5s linear 0s;
	-o-transition: all .5s linear 0s;
	transition: all .5s linear 0s;
	-moz-box-shadow: 2px 2px 4px 0px #000;
	-webkit-box-shadow: 2px 2px 4px 0px #000;
	box-shadow: 2px 2px 4px 0px #000;
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	border-radius: 7px 7px 7px 7px;
	margin-top: 30px;
	height: 240px;
	background-color: #b1650c; /* ***WBO*** give a color behind the video and the padding in the next line reveals the color ***** */
	padding: 6px;
	-ms-transition: all .5s linear 0s;
	margin-right: auto;
	margin-left: auto;
	margin-top: 4px; /* *** WBO *** I added the top margin size for better spacing of the title description box *** */
}
/*  Below found at: http://stackoverflow.com/questions/3794682/custom-css-for-audio-tag */
video:hover, audio:focus, audio:active {
	-webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
	-moz-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
	box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}


/* ********** Google Video Embed Flex *** https://www.youtube.com/watch?v=9YffrCViTVk************ */
 
 .iframe-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	margin-top: 20px;
	-webkit-box-shadow: 4px 4px 6px 2px rgba(0,0,0,0.47);
	box-shadow: 4px 4px 6px 2px rgba(0,0,0,0.47);
} 
.iframe-container iframe { 
	position: absolute; 
	top:0; left: 0; 
	width: 100%; 
	height: 100%; }

