#player {
	position: relative;
	z-index: 2;
	width: 600px;
	height: auto;
	background-color: #fff;
	border-radius: 6px;
	display: -webkit-box;
	display: block;
	justify-content: center;
	margin: 0 auto;
	overflow: hidden;
	background-color: #6b425f;
	background: -moz-linear-gradient(top, #6b425f 0%, #6b425f 60%, #462b3e 100%);
	background: -webkit-linear-gradient(top, #6b425f 0%, #6b425f 60%, #462b3e 100%);
	background: linear-gradient(to bottom, #6b425f 0%, #6b425f 60%, #462b3e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b425f', endColorstr='#462b3e', GradientType=0);
}

#player img {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}

#player .player-song {
	width: 100%;
	height: 100%;
	margin-left: 0;
	text-align: left;
	padding: 0 30px 30px;
}

#player .player-song .title {
	font-family: 'Helvetica Neue', Arial;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin-top: 20px;
}

#player .player-song .artist {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	font-family: 'Helvetica 62', Arial;
}

#player .player-song .timestamps {
	width: calc(100% - 15px);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	font-size: 12px;
	color: #fff;
	font-family: 'Helvetica 62', Arial;
}

#player .player-song .actions {
	width: 100%;
	height: 30px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

#player .player-song .actions .next,
#player .player-song .actions .prev {
	cursor: pointer;
}

#player .player-song .actions i:hover {
	color: #888888;
	-webkit-transition: .1s;
	transition: .1s;
}

progress[value] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: calc(100% - 15px);
	height: 6px;
	border-radius: 50px;
	margin-top: 20px;
}

progress[value]::-webkit-progress-bar {
	background-color: #eee;
	border-radius: 50px;
}

progress[value]::-webkit-progress-value {
	border-radius: 50px;
	background-color: #f89728;
}

.play-button {
	margin: 0 10px;
}

.play-button:hover .left,
.play-button:hover .right {
	background-color: #888888;
}

.actions i {
	width: 35px;
	height: 35px;
	border: 1px solid #fff;
	color: #fff;
	text-align: center;
	line-height: 33px;
	font-size: 15px;
	border-radius: 50%;
	font-weight: 400;
	opacity: 0.5;
	-webkit-transition: .3s;
	transition: .3s;
}

.actions i:hover {
	background: #fff;
	color: #794969 !important;
	opacity: 1;
}

.play-button.paused i:before {
	content: "\f04b";
}

.player-cover {
	max-height: 200px;
	overflow: hidden;
}