

/*----------------------------MODAL ALERT  2--------------------*/
.modal1{
    width: 100%;
    height: 100vh;
    background: rgba(102, 99, 99, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    animation: modal 10s ;
    visibility: hidden;
  }


  #alertpagos {
    font-family: 'Poppins', sans-serif;
    color: #041F54;
    font-size: 20px;
    animation: modal1 5s ; 
    visibility: hidden;
    box-align:center;
  }



.preload{
  animation: modal1 5s ; 
  visibility: hidden;
}

.contenido{
    background: rgb(255, 255, 255);;
    text-align: center;
    font-size: 15px;
  }

  #alertapago {
    color:#041F54;
    font-family: "Lucida Console", "Courier New", monospace;
    /*font-family: 'Poppins', sans-serif;*/
  }
  
  @keyframes modal1 {
    100%{
    visibility: visible;
    
    }
  }
 
/*---------------------PRRELOAD AZUL----------------------------------------*/
.lds-dual-ring {
  display: inline-block;
  width: 50px;
  height: 50px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #00ADED;
  border-color: #00ADED transparent #00ADED transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-----------------------------------------------------*/



/*RETRASO DE ANIMATE PARRAFO DE CONTACTO */
    
    /* para chrome, safari, Firefox*/
    .retraso-1{
      webkit-animation-delay: 5s; /*especifica el tiempo de retardo que debe transcurrir antes de comenzar la animación*/
      -moz-animation-delay: 5s;
      animation-delay: 5s;
    }


/* boton personalizado*/
    .boton_personalizado{
      text-decoration: none;
      padding: 10px;
      font-weight: 600;
      font-size: 15px;
      color: #ffffff;
      background-color: #041F54;;
      border-radius: 6px;
      border: 2px solid #00ADED;
      
    }
    .boton_personalizado:hover{
      color:#ffffff;
      background-color: #041F54;
    }

