.audioPlayer {
	height: 50px;
	width: 100%;
	background: var(--audioBackground);
	color: var(--highlight);
	font-size: var(--tinyText);
	font-weight: 300;
	border-radius: var(--radius);
	font-style: italic;
	margin-top: 25px;
}

.playContainer {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	border-right: solid 1px var(--highlight);
	border-radius: var(--radius) 0 0 var(--radius);
	z-index: 2;
}

.playContainer:hover{
	background-color: var(--audioHighlight);
	cursor: pointer;
}

.play {
	position: absolute;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-user-select: none;      
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
}

.timeline {
	display: inline-block;
	position: relative;
	width: calc(100% - 50px);
	height: 50px;
	vertical-align: top;
	left: 0;
}

.progress {
	position: absolute;
	width: 0;
	height: 100%;
	background-color: var(--audioHighlight);
	z-index: 1;
	border-right: solid 1px var(--highlight);
	transition: width 0.25s;
	border-radius: 0 var(--radius) var(--radius) 0;
	opacity: 0;
}

.time,
.name {
	display: inline-block;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	-webkit-user-select: none;      
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.name {
	left: 25px;
}

.time {
	right: 25px;
}

.time:hover,
.name:hover {
	cursor: default;
}

.current,
.divider,
.length {
	display: inline-block;
}

.divider {
	margin: 0 2px 0 2px;
}