* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	transition: all .3s;
}
.featuredWorks .player {
	margin: 4px auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
.player {
	background-color: #F5F5F2;
	margin: 20px auto;
	color: #3296AF;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;	
}
.featuredWorks .btn__play {
	margin: 10px 30px 15px 30px;
}
.btn__play {
	width: 87px;
	height: 87px;
	display: block;
	margin: 0 21px 0;
	float: left;
	border-radius: 50%;
	border: 2px solid #3296AF;
	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 #3296AF;
	position: absolute;
	top: 20px;
	left: 30px;
}
.btn__play__pause {
	position: absolute;
	width: 30%;
	height: 50%;
	border-left: 8px solid #3296AF;
	border-right: 8px solid #3296AF;
	top: 20px;
	left: 30px;
	display: none;
}
.btn__play:hover {
	border-color: #1EC8AA;
}
.btn__play:hover>.btn__play__arrow {
	border-left-color: #1EC8AA;
}
.btn__play:hover>.btn__play__pause {
	border-left-color: #1EC8AA;
	border-right-color: #1EC8AA;
}
.player__footer {
	position: absolute;
	color: #fff;
	bottom: 10px;
	width: 100%;
	height: 4px;
}
.player h3 {
	font-size: 23px;
}
.player p {
	width: 98%;
	font-size: 14px;
	padding-left: 5%;
	padding-right: 2%;
}
.playerTime {
	padding-left: 5%;
}
.player__timeline {
	height: 2px;
	position: relative;
	background: #3296AF;
	display: inline-block;
}
.player__timeline {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}

.player__timeline__progress {
	background-color: #1EC8AA;
	height: 100%;
	display: block;
}

.player__timeline__progress:hover {
	background-color: #508C82;
}

.player__timeline__time--now, .audioLink {
	font-size: 12px;
	font-weight: bold;
	display:inline;
}

.player__timeline__time--end {
	display: none;
}

.audioLink {
	color: #3296AF;
	text-decoration: underline;
}

.audioLink:hover {
	color: #1EC8AA;
}