#loading {
    position: fixed;
    /*top: 90px;
    right: 5px;*/
    top:         0;
    left:        0;
    height:      100%;
    width:       100%;
    /*background:#fff;*/
    color:     #000;
    font-weight: bold;
    /*padding:     5px;*/
    /*border: #22313F 1px solid;*/
    display:    none;
    z-index:    1000;
    background: rgba(252, 249, 249, 0.568)      
    50% 50% 
    no-repeat;
}
.loader {

  position: fixed;
    /*top: 90px;
    right: 5px;*/
    top:         0;
    left:        0;
    height:      100%;
    width:       100%;
    /*background:#fff;*/
    color:     #000;
    font-weight: bold;
    /*padding:     5px;*/
    /*border: #22313F 1px solid;*/
    z-index:    1000;
    background: rgba(252, 249, 249, 0.568)      
    50% 50% 
    no-repeat;

}

.mi-loader {
    background-color:#FFF;
    height: 50px;
    border: 0px;
    padding: 15px;
}


  .loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
    top: 35%;
    left: 42%;
  }
  .loader--dot:first-child {
    background-color: #B1DC71;
    animation-delay: 0.5s;
  }
  .loader--dot:nth-child(2) {
    background-color: #74BD73;
    animation-delay: 0.4s;
  }
  .loader--dot:nth-child(3) {
    background-color: #409B72;
    animation-delay: 0.3s;
  }
  .loader--dot:nth-child(4) {
    background-color: #157969;
    animation-delay: 0.2s;
  }
  .loader--dot:nth-child(5) {
    background-color: #045757;
    animation-delay: 0.1s;
  }
  .loader--dot:nth-child(6) {
    background-color: #1D3E53;
    animation-delay: 0s;
  }
  .loader--text {
    position: absolute;
    top: 40%;
    left: 45%;
  }
  .loader--text:after {
    content: "Cargando";
    font-weight: bold;
    font-size: 22pt;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    color: rgb(0, 142, 155);
  }
  
  @keyframes loader {
    15% {
      transform: translateX(0);
    }
    45% {
      transform: translateX(230px);
    }
    65% {
      transform: translateX(230px);
    }
    95% {
      transform: translateX(0);
    }
  }
  @keyframes loading-text {
    0% {
      content: "Cargando";
    }
    25% {
      content: "Cargando.";
    }
    50% {
      content: "Cargando..";
    }
    75% {
      content: "Cargando...";
    }
  }




  
  .log{
    width: 60px;
    height: 60px;
    margin-left: 20px;
    margin-bottom: 15px;
  }

  @keyframes logo-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @media (prefers-reduced-motion: no-preference) {
   .log {
      animation: logo-spin infinite 20s linear;
    }
  }

 