/**
* Audio Player
* ----------------------------------------------
*
*   Date: 2014-02-17
*
* Author: Hillsong Digital Team
*
*  Notes: HTML5 Audio Player with Fallbacks
*
*/



/*
//====================================================================
//
// MOBILE / SMALL SCREEN (0px - 480px)
//
//====================================================================
*/


.audiojs {
	width: 275px;
	background-image: none;
	
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px; 
	border-radius: 5px;
	
	-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.audiojs .play-pause {
	width: 37px;
}

.audiojs .scrubber {
	width: 112px;
}

.audiojs .loaded {
	background-image: none;
}

.audiojs .time {
	float: right;
	border-left: 1px solid #000;
	color: #ccc;
	font-weight: 700;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
	margin-right: 8px;
}

.audiojs .duration strong {
	font-weight: 700 !important;
}




/*
//====================================================================
//
// TABLET (Bigger than 767px )
//
//====================================================================
*/

@media only screen and (min-width: 767px) {
	
	.audiojs { width: 450px; }
	
	.audiojs .scrubber { width: 290px; }

}






/*
//====================================================================
//
// DESKTOP (Bigger than 979px )
//
//====================================================================
*/
@media only screen and (min-width: 979px) {
	
}



/*
//====================================================================
//
// LARGE SCREEN ( Bigger than 1199px )
//
//====================================================================
*/
@media only screen and (min-width:1199px) {

}