* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: inherit;
	/*transition: all .3s;*/
}
.player {
	background-color: #0b8dd9;
	width: 100%;
	height: 170px;
	margin: 20px auto;
	color: #fff;
	position: relative;
	padding-top: 30px;
}
.btn__play {
	width: 87px;
	height: 87px;
	display: block;
	margin: -10px 21px 0;
	float: left;
	border-radius: 50%;
	border: 2px solid #fff;
	position: relative;
	cursor: pointer;
}
.btn__play__arrow {
	width: 0; 
	height: 0; 
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 30px solid #fff;
	position: absolute;
	top: 20px;
	left: 30px;
}
.btn__play__pause {
	position: absolute;
	width: 30%;
	height: 50%;
	border-left: 8px solid #fff;
	border-right: 8px solid #fff;
	top: 20px;
	left: 30px;
	display: none;
}
.btn__play:hover {
	border-color: #efad01;
}
.btn__play:hover>.btn__play__arrow {
	border-left-color: #efad01;
}
.btn__play:hover>.btn__play__pause {
	border-left-color: #efad01;
	border-right-color: #efad01;
}
.player__footer {
	background: #462f12;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 45px;
	padding: 12px 20px;
	font-size: 15px;
}
.player h3 {
	font-size: 23px;
	color: rgb(255, 214, 88);
}
.player p {
	width: 90%;
	font-size: 14px;
	color: #fff;
}
.player__timeline,
.player__volume__bar {
	height: 10px;
	position: relative;
	background: rgba(255,255,255,.5);
	display: inline-block;
	cursor: pointer;
}
.player__timeline {
	width: 40%;
	margin-left: 10px;
	margin-right: 15px;
}

.btn__volume {
	width: 20px;
	height: 20px;
	font-size: 20px;
	display: block;
	position: absolute;
	top: 12px;
	left: 465px;
	cursor: pointer;
}
.player__volume__progress,
.player__timeline__progress {
	background-color: #0b8dd9;
	height: 100%;
	display: block;
}
.player__volume__progress {
	width: 70%;
}
.player__volume__progress:hover,
.player__timeline__progress:hover {
	background-color: #46a1d6;
}
.player__volume__bar {
	width: 80px;
	margin-left: 40px;
}