/*
    Document        : mep-feature-playlist.css
    Author          : Andrew Berezovsky <andrew.berezovsky@gmail.com>
    Original Author : Junaid Qadir Baloch <shekhanzai.baloch@gmail.com>
*/

/* Start: Show/Hide Playlist*/
.mejs-controls .mejs-show-playlist button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -16px -16px;
}
.mejs-controls .mejs-hide-playlist button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -16px 0;
}
/* End: Show/Hide Playlist */



/* Start: Next */
.mejs-controls .mejs-nexttrack button {
  background: transparent url(controls-playlist.png) no-repeat;
}
/* End: Next */

/* Start: Shuffle */
.mejs-controls .mejs-shuffle-on button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -32px 0;
}
.mejs-controls .mejs-shuffle-off button {
  background: transparent url(controls-playlist.png) no-repeat;
  background-position: -32px -16px;
}
/* End: Shuffle */

/*Start: Playlist*/
.mejs-playlist {
  position: absolute;
  left:70px;
  height: 15px !important;
  overflow-y: display;
  overflow-x: display;
  background: #002754;
  opacity: 1.0;
  width:950px; text-align:left; 
 
}
.mejs-playlist ul {
  margin: 0; margin-left:-200px; margin-top:8px;
  padding: 6px;width:950px; left:-140px; line-height:20px;
 
  
}
.mejs-playlist li {
  color: white;
  font-size: 9px;
  height: 16px;
  overflow: display;
  margin: 2px;
  cursor: pointer;display:inline;margin-top:10px; padding-right:6px; padding-left:8px;
}
.mejs-playlist li:hover {
  color: #a8a8a8;
}
.mejs-playlist li.current {
  color: red;
  font-weight: bold;
}
/*End: Playlist*/