.main-preview-player {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video-js,
.playlist-container {
  position: relative;
  min-width: 300px;
  min-height: 150px;
  height: 0;
}

.video-js {
  flex: 3 1 70%;
}

.playlist-container {
  flex: 1 1 30%;
}

.vjs-playlist {
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.vjs-playlist-item.vjs-selected .vjs-playlist-now-playing-text,
.vjs-playlist-item .vjs-playlist-duration {
  background-color: rgb(40, 40, 40);
  color: rgb(255, 255, 255);
  border-radius: 0.5em;
  font-size: 13px;
  font-weight: bold;
  top: 1em;
  left: 1em;
  margin: 0px;
  padding: 0.2em 0.8em;
}

.vjs-playlist-item.vjs-selected,
.vjs-playlist-item {
  background-color: rgb(0, 0, 0);
}

.vjs-playlist-item:hover {
  opacity: 0.6;
}

.vjs-playlist .vjs-playlist-name {
  white-space: inherit;
  max-height: none;
}

.vjs-playlist .vjs-playlist-title-container {
  position: relative;
  font-size: smaller;
  line-height: normal;
  text-shadow: none;
  /*background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 0.5em;*/
  width: 94%;
  margin: 5px 3%;
  padding: 2px 4px;
}

@media (max-width: 1200px) {
  .vjs-playlist-item {
    background-color: rgb(0, 0, 0);
  }
  .vjs-playlist-vertical img {
    width: 40%;
  }
}