/* .box-lista::before */
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  15% {
    width: 50px;
    left: 100%;
  }

  15.5% {
    box-shadow: 0 0 20px 5px rgb(255, 255, 255);
  }

  100% {
    left: 150%;
  }
}


/* .add-video-lista-reproducao.show */
@keyframes opacityShow {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0);
  }

  100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
}

/* .add-video-lista-reproducao.hiden */
@keyframes opacityHiden {
  0% {
    display: block;
    opacity: 1;
    transform: translateY(0%) scale(1);
  }

  100% {
    transform: translateY(100%) scale(0);
    display: none;
    opacity: 0;
  }
}



/* .container-box-lista.animationTop */
@keyframes boxListaTop {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(74px);
  }
}


/* .container-box-lista.animationBottom */
@keyframes boxListaBottom {
  0% {
    transform: translateY(75px);
  }

  100% {
    transform: translateY(0px);
  }
}