.song-position-indicator {
	display: flex;
}

.position-indicator-slider {
	flex-grow: 1;
	position: relative;
	height: 40px;
}

.position-indicator-slider:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	right: 10px;
	background: #000;
	transform: translateY(-50%);
	height: 5px;
}

.position-indicator-slider-knob {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 20px;
	width: 20px;
	border-radius: 50%;
	border: 0;
	background: #88cc88;
	cursor: ew-resize;
}

.position-indicator-slider-knob:focus {
	outline: none;
}

.position-times {
	display: flex;
	height: 40px;
	margin-left: 10px;
	margin-right: 20px;
	align-items: center;
}