/* #PRODUIRE{fond=tinyplayer.css}
   md5:ed96966b814cd8bdb204814371148600 */
:focus {
    outline: 0;
}

.tinyplayer {
	display: flex;
}

.tinyplayer .audio {
	position: relative;
	border-radius: 8px;
	position: relative;
	border: 2px solid #5c4e2b;
	margin:2.2em 0 0.6em 0;
	padding:0;
	font-family: helvetica, sans-serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5em;
}

.tinyplayer .progress_bar {
	position: relative;
	float: none;
	height: 100%;
	width: 100%;
	cursor: default;
}

.tinyplayer .progress_bar .position {
	position: absolute;
	background-color: rgba(145, 97, 5, 0.15); /* rgba(21, 29, 31, 0.15) ; */
	width: 0%;
	height: 100%;
	mix-blend-mode: difference;   /* overlay */
}

.tinyplayer .progress_bar .loading {
	background-color:transparent;
	position: absolute;
	width: 0%;
	height: 100%;
}

.tinyplayer .player_info {
	margin: 2ex 2ex;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
    color: #1AA58A;                     /* new */
}

.tinyplayer .icon {
	margin-right: 1ex;
	min-width: 1.5rem;
	flex-basis: 1.5rem;
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.tinyplayer button{
	background: transparent;
	width: auto;
	overflow: visible;
	margin: 0;
	padding: 0;
	border: none;
	width: 20px;
	height: 20px;
	background-size: 80%;
	margin-right: 1ex;
	min-width: 1.5rem;
	flex-basis: 1.5rem;
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.tinyplayer button svg {
	width: 20px;
	height: 20px;
}

.tinyplayer button.play #btn-play,
.tinyplayer button.play.playing #btn-pause {
	display: inline-block;
}

.tinyplayer button.play.playing #btn-play,
.tinyplayer button.play #btn-pause {
	display: none;
}

.tinyplayer button.play span{
	display: block;
	position: relative;
	text-indent: -99999px;
	top: auto;
	left: auto;
	height: 20px;
	width: 20px;
	background-size: 80%;
	overflow: hidden;
}

.tinyplayer .ui-icon-play, .ui-icon-pause{
	margin-right: 1ex;
	min-width: 1.5rem;
	flex-basis: 1.5rem;
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.tinyplayer .ui-icon-play {
	background: url('https://www.pasdnompasdmaison.fr/squelettes/skins/play.svg') no-repeat center center transparent;
	background-size: auto;
	height: 20px;
	width: 20px;
	background-size: 80%;
    filter: invert(48%) sepia(78%) saturate(420%) hue-rotate(118deg) brightness(94%) contrast(93%);
}

.tinyplayer .ui-icon-pause {
	background: url('https://www.pasdnompasdmaison.fr/squelettes/skins/pause.svg') no-repeat center center transparent;
	background-size: auto;
	height: 20px;
	width: 20px;
	background-size: 80%;
filter: invert(48%) sepia(78%) saturate(420%) hue-rotate(118deg) brightness(94%) contrast(93%);
}

.tinyplayer .ui-icon-stop {
	background: url('https://www.pasdnompasdmaison.fr/squelettes/skins/stop.svg') no-repeat center center transparent;
	background-size: auto;
	height: 20px;
	width: 20px;
	background-size: 80%;
filter: invert(48%) sepia(78%) saturate(420%) hue-rotate(118deg) brightness(94%) contrast(93%);
}

.tinyplayer .track {
	flex-grow: 1;
	white-space: nowrap;
	overflow: hidden;
	font-weight: 700;
	text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.75); /*  new */
}

.tinyplayer .track a {
	text-decoration: none;
	color: rgb(197, 197, 197);              /*  old black */
    font-size: smaller;     /*  new */
}

.tinyplayer .timer {
	margin: 0ex 1ex;
	white-space: nowrap;
    font-size: smaller;   /*  new */
}

.tinyplayer .play,
.tinyplayer .stop {
	cursor: pointer;
    z-index: 200;       /* loading bar à 100... */
}

