<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.koros-audioplayer {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.koros-audioplayer .pochette {
	width: 100%;
	max-width: 410px;
}
	
.koros-audioplayer .bandeau {
	position: absolute;
	box-sizing: border-box;
	top: -100px;
	width: 100%;
	background-color: white;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.koros-audioplayer .bandeau .first-line,
.koros-audioplayer .bandeau .second-line,
.koros-audioplayer .bandeau .third-line {
	display: flex;
	width: 100%;
	padding-top: 10px;
	margin: 0;
}
.koros-audioplayer .bandeau .third-line {
	padding-bottom: 15px;
}
.koros-audioplayer .bandeau .first-line .name-album {
	font-weight: 600;
	padding: 0 20px;
	margin: 0;
}
.koros-audioplayer .bandeau .second-line .name-song {
	float: left;
	padding: 0 20px;
	width: 75%;
}
.koros-audioplayer .bandeau .second-line .time-song {
	text-align: center;
	width: 25%;
	padding: 0 20px;
}

.koros-audioplayer .bandeau .third-line progress {
	align-self: center;
	width: 75%;
	margin: 0 20px;
	height: 20px;
	box-sizing: border-box;
}
.koros-audioplayer .bandeau .third-line progress[value] {
	-webkit-appearance: none;
	background-color: white;
	border-radius: 2px;
	border: 1px solid lighten(#acacac, 20%);
	color: blue;
}
.koros-audioplayer .bandeau .third-line progress[value]::-webkit-progress-bar {
	background-color: white;
	border-radius: 2px;
	border: 1px solid lighten(#acacac, 20%);
	color: blue;
}

.koros-audioplayer .third-line .prevnext {
	display: inline-flex;
	justify-content: space-evenly;
	align-self: center;
	width: 25%;
	padding: 0 20px;
}
.koros-audioplayer .third-line .prevnext img {
	height: 20px;
	width: 25%;
	opacity: 0.5;
	cursor: pointer;
}
.koros-audioplayer .third-line .prevnext img:hover {
	opacity: 1;
}
.koros-audioplayer .playpause {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0.65em 0.65em;
	border: 0px;
   	background-color: rgba(0, 0, 0, 0.25);
   	height: 75px;
	line-height: 75px;
   	width: 75px;
   	cursor: pointer;
	outline: none;
	display: flex;
	justify-content: center;
}
.koros-audioplayer .playpause:hover {
   	background-color: rgba(0, 0, 0, 0.5);
}
.koros-audioplayer .playpause img {
	align-self: center;
	height: auto;
	width: 60%;
	filter: invert(1);
	
}
</pre></body></html>