body {
	margin: 0;
}
body * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}
.playing--component {
	font-family: sans-serif;
	position: relative;
	padding: 1rem;
	z-index: 1;
}
.playing--main-title {
	font-weight: 700;
	font-style: normal;
	color: inherit;
	margin-bottom: 1rem;
	font-size: 1.375rem;
	line-height: 1.25;
	margin-top: 1rem;
}
.playing--holder {

}
.playing--current {

}
.playing--current:before,
.playing--current:after {
	content: "";
	display: table;
}
.playing--current:after {
	clear: both;
}
.playing--time {
	font-size: 1.625rem;
	font-weight: 100;
	float: left;
	height: 2rem;
	line-height: 1;
	width: 64px;
	margin-right: 0.5rem;
	padding-top: 0.125rem;
	text-align: right;
}
.playing--artist {
	font-weight: bold;
	font-size: 0.85rem;
	line-height: 0.95rem;
	text-transform: uppercase;
	margin-left: 78px;
	margin-right: 0.75rem;
	word-wrap: break-word;
}
.playing--title {
	font-size: 0.85rem;
	line-height: 0.85rem;
	margin-left: 78px;
	margin-right: 0.75rem;
}
.playing--history {
	margin-top: 0.5rem;
	overflow: hidden;
	transition: 300ms;
}
.playing--history-item {
	margin-top: 0.25rem;
	opacity: 0.5;
}
.playing--history-item:before,
.playing--history-item:after {
	content: "";
	display: table;
}
.playing--history-item:after {
	clear: both;
}
.playing--history-item .playing--time {
	font-size: 1.5rem;
	padding-top: 0.125rem;
}
.playing--history-item .playing--artist {
	font-size: 0.75rem;
	line-height: 0.85rem;
}
.playing--history-item .playing--title {
	font-size: 0.75rem;
	line-height: 0.85rem;
	margin-right: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.playing--progress-holder {
	position: relative;
	height: 5px;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
	background-color: #dcdcdc;
}
.playing--progress {
	position: absolute;
	background-color: #D2347D;
	top: 0;
	left: 0;
	height: 5px;
}
.listen--component {
	position: relative;
	z-index: 2;
	height: 5rem;
	color: #fff;
	text-align: center;
	font-family: sans-serif;
	cursor: pointer;
	transition: 200ms;
}
.listen--audio {
	display: none;
}
.listen--icon {
	width: 21px;
	height: 21px;
	margin-right: 0.5rem;
	font-size: 1.25rem;
	position: relative;
	top: -3px;
}
.listen--icon--play {
	display: inline-block;
}
.listen--icon--pause {
	display: none;
}
.listen--icon--cog {
	display: none;
}
.listen--button--loading .listen--icon--play {
	display: none;
}
.listen--button--loading .listen--icon--pause {
	display: none;
}
.listen--button--loading .listen--icon--cog {
	display: inline-block;
}
.listen--button--playing .listen--icon--play {
	display: none;
}
.listen--button--playing .listen--icon--pause {
	display: inline-block;
}
.listen--button--playing .listen--icon--cog {
	display: none;
}
.listen--button {
	transition: 200ms;
	-webkit-align-items: flex-end;
	align-items: center;
	padding: 0.25rem 1rem 0;
	-webkit-justify-content: center;
	justify-content: center;
	height: 100%;
	display: none;
	text-transform: uppercase;
}
.listen--button-low {
	display: none;
}
.listen--component--high .listen--button {
	background: #673A96;
	background: linear-gradient(90deg, #673A96 0%, #D2347D 96.93%);
}
.listen--component--high .listen--button:hover {
}
.listen--component--high .listen--button-high {
	display: -webkit-flex;
	display: flex;
}
.listen--component--low .listen--button {
	background: linear-gradient(90deg, #d23930 0%, #f16d3e 96.93%);
}
.listen--component--low .listen--button:hover {
	''
}
.listen--component--low .listen--button-low {
	display: -webkit-flex;
	display: flex;
}
.listen--tabs {
	top: 100%;
	position: absolute;
	left: 0;
	right: 0;
	overflow: hidden;
	height: 0;
	transition: 200ms;
}
.listen--tabs .listen--tab {
	position: absolute;
	width: 50%;
	top: 0;
	padding: 0.5rem;
	transition: 200ms;
}
.listen--tabs .listen--tab--high {
	left: 0;
	background-color: #673A96;
}
.listen--tabs .listen--tab--high:hover {
	background-color: #8046bd;
}
.listen--tabs .listen--tab--low {
	right: 0;
	background-color: #d03930;
}
.listen--tabs .listen--tab--low:hover {
	background-color: #d24a41;
}
.listen--component:hover .listen--tabs {
	height: 40px;
}
