/* ---------- light box ----- */

@media all {
	.lightbox {
		display: none;
	}
}

/*------- player ---- */
span #nblis  {
	line-height: 15px;
    font-size: 10px;
}
	#playtable {
	font-size: 14px;
}
.player-container {
	position: fixed;
	bottom: 0;
	width: 100%;

}
.player {
	z-index: 10;
	background: lightyellow;
	color: #000;
	min-height: 80px;
	max-height: 80px;
	display: flex;
	flex-direction: row;
	position: fixed;
	bottom: 0px;
	width: 100%;
	border-top: 1px solid #cecece;
}
.player .plyr__controls {
	margin-top: -7px;
}
.player .plyr--audio {
	width: 100%;
	--plyr-audio-controls-background: lightyellow;
}
.player .plyr--audio{
	--plyr-tooltip-background: lightblue;
}
 button[data-plyr="settings"] {
	display:none;
}
#hide-player {
	position: fixed;
	left: 70%;
	bottom: 80px;
}
.player      .left {
	width: 90px;
	background-image: url("/images/thumbnails/mod_grilleprogrammes/default_1.jpg");
	background-size: 100% 100% ;
	max-width: 90px;
	max-height: 90px;
	overflow: hidden;
	margin-top: -10px;
	border-radius: 5px;
	border: 1px solid #eee;
	margin-left: 10px;
	z-index: 100;
}
.player      .left:hover {
	transform: scale(1.5);
	transform-origin: left bottom;

}
.player      .right {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	margin-right: 10px;
}

.player      .bottom-right {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	margin-right: 10px;
}
.player         .top {
	flex-grow: 1;
	display: flex;
	flex-direction: row;

	justify-content: space-between;
	padding-left: 10px;
	height: 25px;
}
.player .top-left {
	/*	            display:flex;
	flex-direction:column;
	*/
}
.player .top-right {
	/*display:none;*/
	display: flex;
	flex-direction: row;
	cursor: pointer;

}
.player .top-right i {
	padding: 10px;
}

.player .bottom .bottom-right   span {
	padding-right: 10px;
}
.player .bottom .bottom-right  i:hover {
	background-color: #00b3ff;
	border-radius: 3px;
}
.player           .song {
	font-size: 1.2em;
	font-weight: 600;
}

.player        .bottom {
	flex-grow: 1;
	display: flex;
	flex-direction: row;

	justify-content: space-between;
	display: flex;
}

audio {
	flex-grow: 1;
	height: 32px;
}
@keyframes pop-in {
	0%, 95%{
		transform: translateY(100%);
	}
	100%{
		transform: translateY(0%);
	}
}

.player span.artist	 {
	font-size: 12px;
	line-height: 12px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}
/*   ------------  css mobile ---------------*/
@media (max-width: 420px) {
	.player .left {
		display: none;
	}
	.player .bottom-right .bottom-right-fb {
		display: none;
	}
	.player .bottom-right .bottom-right-tw {
		display: none;
	}
	.player .bottom-right .bottom-right-list {
		display: none;
	}
	.player .bottom-right .bottom-right-download {
		display: none;
	}
	.player .bottom-right .bottom-right-ext-open {
		display: none;
	}
	.player span.artist	 {
		font-size: 10px;
		max-width: 50ch;
	}
	button[data-plyr="restart"] {
		display: none;
	}
	.plyr__volume {
		display: none !important;
	}
	#hide-player {
		left: 55%;
	}
	#playtable {
		font-size: 10px;
	}
}
@media (min-width: 420px)  and (max-width:700px) {
	.player      .left {
		width: 90px;
		background-size: 100% 100%;
		overflow: hidden;
		margin-top: 0px;
	}
	.player span.artist	 {
		font-size: 11px;
		max-width: 50ch;
	}
	#playtable {
		font-size: 12px;
	}
}

