/* PLAYLIST */
#ms_avp .device-player-skin.emjs-playlist{
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	list-style-type: none;
	padding:0 0 10px 0;
	margin:0;
	counter-reset: css-counter 0;
}

#ms_avp .device-player-skin.emjs-playlist::before{
	display:block;
	position:relative;
	height:30px;
	content:' ';
	background: no-repeat center url('random.svg') rgba(0,0,0,.8);
	background-size: 15px 15px;
	cursor:pointer;
	/* border-bottom: 1px solid #AAA; */
}

#ms_avp .device-player-skin.emjs-playlist.random-active::before{
	background-image: url('random-active.svg');
}

#ms_avp .device-player-skin.emjs-playlist li{
	cursor: pointer;
	padding:1px 10px;
	color: #FFF;
	margin:0;
    list-style-type:none;
	counter-increment: css-counter 1;
	line-height:32px;
}
#ms_avp .device-player-skin.emjs-playlist li:before{
	content: counter(css-counter) ". ";
}

#ms_avp .device-player-skin.emjs-playlist li:nth-child(odd){
	background:rgba(0,0,0,.5);
}
#ms_avp .device-player-skin.emjs-playlist li:nth-child(even){
	background:rgba(0,0,0,.6);
}

#ms_avp .device-player-skin.emjs-playlist li:hover,
#ms_avp .device-player-skin.emjs-playlist li.current{
	background:rgba(0,0,0,.8);
}
#ms_avp .device-player-skin .cpmp-info:hover{font-weight:bold;}

#ms_avp .device-player-skin .cpmp-info{
	color:#FFF;
	text-decoration:none;
	font-size:18px;
	float:right;
	background:transparent !important;
}

#ms_avp  .device-player-skin .cpmp-playlist-download-link::before{color:white;border-color:white;line-height:18px;border-radius:0;}

/* END: device-player */

#ms_avp .mejs-offscreen{display:none;}