<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mfplayer .controls, .mfplayer.controls * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfplayer .controls {
	display: flex;
	justify-content:space-between;
	align-items: center;
	position: relative;
	background-color: transparent;
	height: 36px;
	padding: 3px 0px 0px 0px;
}

.controls.beschallung {
	height:70px;
}

.mfplayer .time{
	padding-right:5px;
	font-size:12px;
	width:40px;
	opacity:0.9;
}

.mfplayer .buttons {
	flex: 0 0 100px;
	position: relative;
	width: 100px;
	height: 36px;
	background-color:transparent;
}
.mfplayer .buttons * {
	position: absolute;
	top: 0;
	background-image: url(../images/musicfox_player_2_black.png);
	background-size: 270px 40px;
	cursor: pointer;
}
.mfplayer .buttons .prev {
	left: 0;
	top: 0;
	width: 12px;
	height: 36px;
	background-position: -11px -1px;
}

.mfplayer .buttons .play {
	left: 21px;
	width: 31px;
	height: 36px;
	background-position: -32px -1px;
}

.mfplayer .buttons .stop {
	display: none;
	left: 21px;
	width: 31px;
	height: 36px;
	background-position: -205px -1px;
}
.mfplayer.playing .buttons .stop {
	display: block;
}
.mfplayer.playing .buttons .play {
	display: none;
}
.mfplayer .buttons .next {
	left: 64px;
	top: 0;
	width: 13px;
	height: 36px;
	background-position: -107px -1px;
}
.mfplayer .waveform {
	flex: 1 0 0;
	position: relative;
	margin: -10px 0 -10px 0;
	overflow:auto;
	opacity:0.5;
	max-height:60px;
}
.mfplayer .playlist {
	margin: 0;
	padding: 0;
}
.mfplayer .playlist li {
	line-height: 2.5em;
	margin: 0;
	list-style-type: none;
	padding: 0;
    border-bottom: 1px solid rgba(167, 185, 186, 0.26);
}

.mfplayer .playlist li:last-child {
    border-bottom: none;
}
.mfplayer .playlist a {
	display: flex;
	color:#000000;
	font-weight:200;
	text-decoration: none;
	margin-left: 0;
}

.mfplayer .playlist .title {
	flex: 1 0;
}
.mfplayer .playlist .duration {
	flex: 0 0;
	font-size:14px;
}
.mfplayer .playlist .duration:before {
	content: "(";
}
.mfplayer .playlist .duration:after {
	content: ")";
}
.mfplayer .playlist .current a {
	color: #000000;
	font-weight:400;
}

.mfplayer.playing li.current a{
	color:#000000;
	font-weight:600;
}
</pre></body></html>