@import url("https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css");

.caret {
  opacity: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #202020;
  width: 0px;
  height: 0px;
  margin: 0 auto;
  bottom: 4px;
}

.sub-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 576px) {
  .sub-body {
    width: 100%;
  }
}

.hamburgerMenuCloseButton {
  font-family: fontAwesome;
  color: #646464;
  display: flex;
  font-size: 25px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

#playlist {
  display: flex;
  box-sizing: border-box;
}

.item .info {
  background-color: #000;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
  position: absolute;
  right: 7px;
  text-decoration: none;
  top: 55px;
}

#all-content {
  display: flex;
}

#details {
  display: flex;
  flex-direction: column;
}

.thumbnailsAndPagingControls {
  display: flex;
  margin: 0 auto;
}

.inline-player-container {
  width: 100vw;
  padding: 10px;
  background: #202020;
  display: none;
  margin-bottom: 25px;
}

@media (min-width: 576px) {
  .inline-player-container {
    width: 100%;
  }
}

#playlists {
  display: flex;
  flex-direction: row;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


#container {
  height: 200px;
  width: 100%;
}

@media (min-width: 576px) {
  #container {
    height: 300px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  #container {
    height: 400px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  #container {
    height: 500px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  #container {
    height: 600px;
    width: 100%;
  }
}

#playlists {
  display:none;
}

@media (min-width: 576px) {
  #playlists {
    display: flex;
  }
}

#mobilePlaylists {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}

@media (min-width: 768px) {
  #mobilePlaylists {
    display: none;
  }
}

.mobile-playlists-menu {
  display: none;
  height: 100%;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mobile-playlists-menu {
    display: none;
  }
}

#all-content {
  flex-direction: column;
  display: flex;
}

.playlistMobile {
  display: flex;
  flex-direction: row;
}

.playlistTitleMobile {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.topPlaylistTitleMobile {
  overflow: hidden;
  display: flex;
}



