@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap');


.container-lista-reproducao {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 16px;
  padding-top: 25px;
  position: relative;
  z-index: 100;
}


.container-lista-reproducao::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  background: linear-gradient(to top, #000a0e, black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}






/*********************************/
/* caixa playlist */
/*********************************/
.container-box-lista {
  display: inline-flex;
  flex-direction: column;
  overflow-y: auto;
  min-height: 0;
  position: relative;
  max-height: 174px;
  background-color: transparent;
  border-radius: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.container-box-lista::-webkit-scrollbar {
  display: none;
}

.container-box-lista.animationTop {
  animation: boxListaTop 0.5s ease forwards;
}

.container-box-lista.animationBottom {
  animation: boxListaBottom 0.5s ease forwards;
}

.assistindo-agora.animationTop {
  animation: boxListaTop 0.5s ease forwards;
}

.assistindo-agora.animationBottom {
  animation: boxListaBottom 0.5s ease forwards;
}


.box-lista {
  position: relative;
  width: 100%;
  height: 174px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-shrink: 0;
  margin-bottom: 7px;
  z-index: 9999;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(2, 9, 49, 0.06);
  background-color: #09090b94;
  box-shadow:
    inset -10px -20px 130px rgba(1, 11, 34, 0.158),
    0 10px 20px rgba(1, 11, 34, 0.158);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.box-lista::before {
  content: "";
  position: absolute;
  top: -0.5%;
  left: 0%;
  height: 0%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  width: 10px;
  box-shadow: 0 0 10px 1px rgba(255, 255, 255);
  animation: shine 9s linear infinite;
  z-index: 1;
}


.box-lista.selecionado::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(0, 100, 255, 0.26);
  box-shadow: inset 0 0 20px rgb(0, 100, 255);
  z-index: 10;
}


.fundo-card-lista {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background-image: url(/img/image.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 100% 110%;
  box-shadow:
    10px 0 20px 5px rgb(0, 0, 0),
    inset -15px 0 20px rgb(0, 0, 0),
    inset 10px 0 20px rgb(0, 0, 0);
  filter: blur(0.5px) saturate(1.3);
  opacity: 0.5;
}


.titulo-lista-reproducao {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7em;
  font-size: 10.5px;
  max-width: 209px;
  height: 100%;
  margin-top: 25px;
  overflow-y: auto;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-overflow: ellipsis;
  text-align: left;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.titulo-lista-reproducao::-webkit-scrollbar {
  display: none;
}


.thumbnail-lista-reproducao {
  width: 125px;
  height: 100%;
  border-radius: 7px;
  box-shadow: 15px 0 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.150);
}



.box-info-video {
  width: 100%;
  height: 100%;
  display: flex;
  padding-left: 10px;
  flex-direction: column;
  align-items: flex-start;
}


.info-video-duracao {
  color: rgba(255, 255, 255, 0.670);
  font-size: 0.65em;
  background-color: #00000090;
  border-radius: 20px;
  font-weight: 500;
  padding: 4px 5px 4px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  opacity: 0.95;
  position: relative;
}

.info-video-duracao span {
  color: rgb(143, 152, 167);
  padding-left: 3px;
}


.carregar-proximo-video {
  width: 46px;
  height: 46px;
  position: absolute;
  top: calc(100% - 10px);
  left: calc(100% - 10px);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.850);
  transform: translate(-100%, -100%);
  /* margin-right: 5px; */
}

.carregar-proximo-video i {
  font-size: 2.2em;
}

.agrupar-items {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0;
  width: calc(100% - 50px);
  margin-left: 2px;
  height: 148px;
  box-sizing: border-box;
  background-color: rgba(255, 102, 0, 0);
}

.added-by {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 90px;
  height: 25px;
  gap: 3px;
  position: absolute;
  top: 18%;
  background-color: rgba(0, 0, 255, 0);
  left: calc(100% - 8px);
  transform: translate(-100%, -100%);
  flex-wrap: nowrap;
}

.added-by p {
  color: #a7aeb6;
  font-size: 0.65em;
}


.added-by .profile-picture {
  background-color: rgba(255, 255, 255, 0.116);
  padding: 2px;
  width: 24px;
  height: 24px;
}



.btn-exibir-info-video {
  position: absolute;
  left: 100%;
  top: -3%;
  margin-left: -53px;
  transform: translateX(0%);
  background-color: rgba(0, 0, 0, 0.4);
  height: 20px;
  width: 20px;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}




.btn-exibir-info-video.hiden {
  margin-left: 0% !important;
  left: 100%;
  top: auto !important;
  transform: translateX(80%);
}

/* @media (max-width: 600px) { */
.box-info-video.hiden {
  height: 50%;
}

.titulo-lista-reproducao.hiden {
  margin-top: 20px;
  height: 50%;
}

.thumbnail-lista-reproducao.hiden {
  height: 63px !important;
  width: 150px !important;
  margin-left: -12px !important;
}


.box-lista.hiden {
  border-radius: 7px;
  height: 65px !important;
}

.info-video-duracao.hiden,
.added-by.hiden,
.carregar-proximo-video.hiden {
  display: none;
}







.btn-excluir-video-playlist {
  position: absolute;
  top: 0;
  width: 100px;
  height: 40px;
  z-index: 10000;
}