The default color for the playlist menu background, almost black
/* The color used to emphasize the currently playing video and for
hover effects */
/* The primary foreground color */
/* The alternate foreground color */
/* Rules common to mouse and touch devices */
.vjs-playlist {
  list-style-type: none;
  overflow: auto;
  position: relative;
}
.vjs-playlist .vjs-playlist-item {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.vjs-playlist .vjs-playlist-thumbnail {
  background-color: #a6a6a6;
  display: block;
  float: left;
}
.vjs-playlist .vjs-playlist-thumbnail:before {
  display: block;
  position: absolute;
  background-color: rgba(26, 26, 26, 0.5);
  text-align: center;
}
.vjs-playlist img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.vjs-playlist .vjs-playlist-duration {
  background-color: rgba(26, 26, 26, 0.8);
  left: 0;
  padding: 2px 8px;
  position: absolute;
  top: 0;
}
.vjs-playlist .vjs-selected .vjs-playlist-duration {
  display: none;
}
.vjs-playlist cite {
  display: block;
  font-style: normal;
  overflow: hidden;
  word-break: break-all;
  font-size: 16px;
}
.vjs-playlist .vjs-playlist-description {
  color: #a6a6a6;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
}
/* Prevent interaction with the playlist menu while ads are playing */
/* on browsers that don't support pointer-events (IE<11), prevent
scrolling past the ad overlay */
.vjs-playlist.vjs-ad-playing {
  overflow: hidden;
}
/* prevent clicks and scrolling from affecting the playlist during ads */
.vjs-playlist.vjs-ad-playing.vjs-csspointerevents {
  pointer-events: none;
  overflow: auto;
}
/* darken the playlist menu display to indicate it's not interactive
during ads and capture click events on IE<11 */
.vjs-playlist.vjs-ad-playing .vjs-playlist-ad-overlay {
  display: none;
}
.vjs-playlist.vjs-ad-playing .vjs-playlist-ad-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* IE8 fallback */
  background-color: #1a1a1a;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* modern browsers */
  background-color: rgba(0, 0, 0, 0.5);
}

.vjs-playlist {
  font-size: 17px;
  min-width: 289px;
  background-color: none;
  color: #fff;
  padding: none;
}

.vjs-playlist .vjs-playlist-item {
  height: 85px;
  margin-bottom: 5px;
  border-radius: 5px;
}

@media screen and (max-width: 991px){
  .vjs-playlist .vjs-playlist-item {
    margin-bottom: 15px;
  }
}
.vjs-playlist .vjs-playlist-thumbnail {
  height: 85px;
  font-size: 13px;
  margin-right: 17px;
  width: 186px;
  position: relative;
  border-radius: 5px;
}
@media screen and (max-width: 1199px){
  .vjs-playlist .vjs-playlist-thumbnail {
    width: 120px;
  }
}
.vjs-playlist .vjs-selected .vjs-playlist-thumbnail:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.vjs-playlist time {
  font-size: 13px;
}
.vjs-playlist cite {
  position: relative;
  top: 5px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 1199px){
  .vjs-playlist cite {
    font-size: 12px;
    line-height: 16px;
  }
}
.vjs-playlist .vjs-playlist-description {
  height: 30px;
  position: relative;
  top: 18px;
  color: #fff;
  font-size: 14px;
  display: flex;
}
.vjs-playlist .vjs-playlist-description::before {
  content: 'Event  Type:';
  color: #989898;
  margin-right: 5px;
}
@media screen and (max-width: 767px){
  .vjs-playlist .vjs-playlist-description {
    top: 27px;
  }
}
.vjs-playlist .vjs-playlist-item:hover .vjs-playlist-thumbnail:before,
.vjs-playlist .vjs-playlist-item:focus .vjs-playlist-thumbnail:before {
  border-radius: 5px;
  font-family: 'VideoJS';
  height: 34px;
  line-height: 34px;
  width: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.vjs-playlist-now-playing:before {
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px){
  .vjs-playlist .vjs-playlist-item {
    height: 10rem;
    margin-bottom: 6px;
  }
  .vjs-playlist .vjs-playlist-thumbnail {
    height: 10rem;
    width: 120px;
    position: relative;
  }
}