.inline-block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#player-wrapper {
  width: 100%;
  max-width: 640px;
  min-width: 240px;
  margin: 0px auto 0 auto;
  position: relative;
}
#audio-poster {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
#audio-poster img {
  max-width: 100%;
}
#player {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  max-width: 640px;
  max-height: 360px;
}
#player video {
  width: 100%;
  height: 100%;
}
#player audio {
  width: 100%;
}
#player.audio {
  margin-top: -30px;
}
#player iframe {
  width: 100%;
}
#player.vimeo .mejs-controls {
  display: none;
}
#playlist {
  list-style-position: inside;
  margin: 0px auto 0 auto;
  width: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
	height:280px;
}

#playlist ol {
	list-style-type: decimal !important;
}

#playlist li {
  /* height: 20px; */
  padding: 8px 15px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  font: 14px/20px 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  position: relative;
}
#playlist li:first-child {
  border-top: none;
}
#playlist li:last-child {
  border-bottom: none;
}
#playlist li:hover {
  background: #eee;
}
#playlist li.current {
  background-color:#00bff3; /******* yank change playlist active color ******/
  color:#333;
  z-index: 2;
}
#playlist .title {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 30px;
}
#playlist .title:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 16px;
  top: 0;
  left: 0;
}
#playlist li[data-type="video"] .title:before,
#playlist li[data-type="youtube"] .title:before,
#playlist li[data-type="vimeo"] .title:before {
  background: url(../images/video.png) left center no-repeat;
}
#playlist li[data-type="audio"] .title:before {
  background: url(../images/audio.png) left center no-repeat;
}
#playlist .free-media {
  float: right;
  height: 100%;
  position: relative;
}
#playlist .free-media:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  left: -20px;
  background: url(../images/download.png) left center no-repeat;
}
#playlist .free-media.youtube:before,
#playlist .free-media.vimeo:before {
  display: none;
}
#playlist .free-media a {
  color: #333;
  font-size: 12px;
  text-decoration: none;
}
#playlist .free-media a:hover {
  color: #666;
}
#playlist .db-check {
  display: none;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: -1px 0 0 rgba(0, 0, 0, 0.6);
  -moz-box-shadow: -1px 0 0 rgba(0, 0, 0, 0.6);
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.6);
}
#playlist[data-show-checkbox="true"] .db-check {
  display: inline-block;
}
