/**
*	MKH Player css
*
**/

.audioWrapper{
	background:#a4842378;;
	position: relative;
	min-height: 46px;
  	border-radius: 5px;
  	border: 1px solid #FFE07F;
	  margin-top: -10px;
}
.functionControl,.volumeControl,.main-content .functionControl, .main-content .volumeControl{
	color:#fff;
	text-decoration: none;
	text-indent: -1000px;
	display: block;
	overflow: hidden;
	float: left;
	width: 20px;
	height: 20px;
	margin-top: 11px;
	margin-left: 10px;
	background-image: url(controls.png);
	background-size: 80px 20px;
}

.playState{
	background-position: 0px 0px;
}
.pauseState{
	background-position: -20px 0px;
}
.loudState{
	background-position: -40px 0px;
}
.muteState{
	background-position: -60px 0px;
}
.volumeWrapper{
	float: right;
	min-height: 7px;
	min-width: 100px;
	background:rgba(0,0,0,.3);
	position: relative;
	margin-top: 1px;
	margin-right: 1px;
}

.currentTime,.durationTime{
	float: left;
	margin-top:15px;
	font-size:11px;
	margin-left: 10px;
	color: #fff;
}

.progressWrapper{
	position: relative;
	float: left;
	margin-left: 10px;
	min-height: 42px;
	top:1px;
	background-color:rgba(255,255,255,0);
	background-size:50% 100%;
	background-position: center;
	background-repeat: repeat;
	background-image: url('freq.png');
	z-index: 10;
	cursor: pointer;
	max-width:75%;
}

.progressBar{
	position: absolute;
	min-height: 100%;
	width:0%;
	background:rgba(77, 78, 1, 0.397);
	cursor: pointer;
	z-index: 11;
}

@media(max-width: 600px){
	.progressWrapper {	width: 15% !important;}
}