.player_box{
	height:auto;
	left:0;
	right:0;
	position:absolute;
	bottom:10px;
	padding-left:10px;
	padding-right:10px;
	z-index:10;
	transition:all 0.2s;
}
.player_box_div{
	background: rgba(255,255,255, 0.1);
	box-shadow: 0px 7px 18px 0px rgba(50, 50, 50, 0.82);
    border-radius: 10px;	
}
.player_audio{
	height:50px;
	width:100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px;
}
.player_controls{
	height: 40px;
    width: 40px;
	border-radius: 6px;
	border: none;
    background: rgba(0,0,0,0.4);

}
.player_controls:focus{
	outline:none;
}
.player_volume {
	overflow: hidden;
	width: 120px;
	height: 30px;
	border-radius: 15px;
	-webkit-appearance: none;
	background-color: rgba(0,0,0,0.2);
}

.player_volume::-webkit-slider-runnable-track {
	height: 10px;
	-webkit-appearance: none;
	color: #13bba4;
	margin-top: -1px;
}

.player_volume::-webkit-slider-thumb {
	width: 10px;
	-webkit-appearance: none;
	height: 10px;
	cursor: pointer;
	background: rgba(0,0,0,0.4) ;
	box-shadow: -80px 0 0 80px rgba(0,0,0,0.4) ;
}

.player_volume::-moz-range-progress {
	background-color: #43e5f7; 
}
.player_volume::-moz-range-track {  
	background-color: #9a905d;
}
.player_volume::-ms-fill-lower {
	background-color: #43e5f7; 
}
.player_volume::-ms-fill-upper {  
	background-color: #9a905d;
}
.player_volume:focus{
	outline:none;
	cursor: pointer;
}

.player_volume_button{
	height: 40px;
    width: 40px;
    border-radius: 6px;
    border: none;
    background: rgba(0,0,0,0.4);
	float:right;
}
.player_volume_button:focus{
	outline:none;
}
.player_volume_slider{
	height: 40px;
    width: auto;
    border-radius: 5px;
    border: none;
    background: rgba(0,0,0,0.4);
	float:right;
	padding-top: 6px;
}
.player_volume_slider:focus{
	outline:none;
}
.player_audio_info{
	width: auto;
    position: absolute;
    bottom: 5px;
    left: 65px;
}
.vis_box{
	width: 100%;
    bottom: 0;
	padding:10px;
    position: absolute;
}	
@media screen and (max-width:700px){
.player_audio_info{
	position:initial;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.vis_box{
    bottom: 100px;
}	
}
.player_line{
	height: 5px;
    background: rgb(0,0,0, 0.2);
    margin-bottom: 5px;
    border-radius: 50px;
	position: relative;
}
.player_progress{
	background: #000;
    height: 100%;
	border-radius: 50px;
	width:0;
}