/* ===============================
   LOADER PANTALLA COMPLETA
================================ */

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
  }

  /* ===============================
     video
  ================================ */
  #videoLoader{
    width: 25%;
    height: auto;
  }
  
  /* ===============================
     ANIMACIONES
  ================================ */
  .fade-out{
    animation: fadeOut 1s ease forwards;
  }
  
  @keyframes fadeOut{
    to{ 
      opacity: 0;
    }
  }