/* #menu-playlist {
  position: absolute;
  top: 0%;
  width: 135px;
  height: auto;
  border-radius: 5px 0px 5px 5px;
  margin-right: 170px;
  padding: 0;
  margin-right: 170px;
  padding: 0;
  background-color: rgba(255, 0, 0, 0);
  display: none;
  } */






/* From Uiverse.io by reglobby */
#menu-playlist {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0%;
  margin-right: 200px;
  padding: 0;
  width: 150px;
  background-color: #0D1117;
  justify-content: center;
  border-radius: 5px
}

.value {
  background-color: transparent;
  border: none;
  padding: 10px;
  color: white;
  display: flex;
  position: relative;
  gap: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.value:not(:active):hover,
.value:focus {
  background-color: #21262C;
}

.value:focus,
.value:active {
  background-color: #1A1F24;
  outline: none;
}

.value::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 3px;
  height: 80%;
  background-color: #2F81F7;
  border-radius: 5px;
  opacity: 0;
}

.value:focus::before,
.value:active::before {
  opacity: 1;
}

.value svg {
  width: 15px
}

















#menu-playlist.show,
.box-menu-opcao-excluir.show {
  display: flex;
  animation: scaleShow 0.4s ease;
  will-change: transform;
}


@keyframes scaleShow {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

#menu-playlist.hidden,
.box-menu-opcao-excluir.hidden {
  animation: scaleHidden 0.4s ease-in-out;
  will-change: transform;
  display: none;
}

@keyframes scaleHidden {
  0% {
    opacity: 1;
    display: flex;
  }

  5% {
    display: flex;
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    transform: scale(0);
    opacity: 0;
    background-color: rgba(255, 0, 0, 0);
  }
}


#btn-back {
  display: none;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 0, 0, 0);
  border: none;
  box-shadow: 0 0 200px 50px rgb(0, 0, 75);
  z-index: 99999999999;
  position: absolute;
  bottom: 0px;
}



#btn-menu-playlist {
  height: 100%;
  width: 35px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}




.btn-excluir-video-playlist {
  display: block;
  border: none;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgb(0, 100, 255);
  background-image: linear-gradient(to top, #1032caa4 30%, rgb(0, 100, 255) 70%);
}


#total-excluir {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: 0.75em;
}



.box-menu-opcao-excluir {
  position: sticky;
  display: none;
  align-items: center;
  gap: 6px;
  border: none;
  width: 100%;
  font-size: 0.7em;
  height: auto;
  color: rgba(255, 255, 255, 0.9);
}


#checkbox-selecionarTudo {
  font-size: 0.6em;
  --bg-checked: rgb(0, 100, 255);
  appearance: none;
  border-radius: 50%;
  background-color: #00173A;
  width: 15.4px;
  height: 15.4px;
  border: 1px solid rgba(255, 255, 255, 0.164);
  position: relative;
}

#checkbox-selecionarTudo:checked {
  background-color: var(--bg-checked);
  animation: pulse 500ms ease-in-out;
}

#checkbox-selecionarTudo:checked::before {
  opacity: 1;
}

#checkbox-selecionarTudo::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 #0b2e6e90;
    rotate: 20deg;
  }

  50% {
    rotate: -20deg;
  }

  75% {
    box-shadow: 0 0 0 10px #0b2e6e60;
  }

  100% {
    box-shadow: 0 0 0 13px #0b2e6e30;
    rotate: 0;
  }
}