/* Estilos para el loader */
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader.ocultar {
    display: none;
}
.position-box{
    position: relative;
    width: 25%;
}
.stage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 32px 0;
    margin: 0 -5%;
    overflow: hidden;
}
.logo-loader {
    background: url(../images/logo.png) no-repeat center center;
    height: 58px;
    margin: 21px 0 21px 0;
    overflow: hidden;
    text-indent: -9999px;
    width: 150px;
    margin: auto;
}
@media screen and (max-width: 768px){
    .position-box{
        width: 35%;
    }
}
.d-none{
  display: none!important;
}
/**
 * ==============================================
 * Dot Floating
 * ==============================================
 */
 .dot-floating {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #390;
    color: #390;
    animation: dot-floating 3s infinite cubic-bezier(0.15, 0.6, 0.9, 0.1);
  }
  .dot-floating::before, .dot-floating::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
  }
  .dot-floating::before {
    left: -12px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #390;
    color: #390;
    animation: dot-floating-before 3s infinite ease-in-out;
  }
  .dot-floating::after {
    left: -24px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #390;
    color: #390;
    animation: dot-floating-after 3s infinite cubic-bezier(0.4, 0, 1, 1);
  }
  
  @keyframes dot-floating {
    0% {
      left: calc(-50% - 5px);
    }
    75% {
      left: calc(50% + 105px);
    }
    100% {
      left: calc(50% + 105px);
    }
  }
  @keyframes dot-floating-before {
    0% {
      left: -50px;
    }
    50% {
      left: -12px;
    }
    75% {
      left: -50px;
    }
    100% {
      left: -50px;
    }
  }
  @keyframes dot-floating-after {
    0% {
      left: -100px;
    }
    50% {
      left: -24px;
    }
    75% {
      left: -100px;
    }
    100% {
      left: -100px;
    }
  }