/* Ocultar el loader inicialmente */
.as-loader-container {
  display: none; /* Oculto por defecto */
  position: fixed; /* Fijo para estar sobre todos los elementos */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  z-index: 9999; /* Asegura que esté al frente */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo del loader circular */
.as-loader {
  border: 8px solid #f3f3f3; /* Gris claro */
  border-top: 8px solid #3498db; /* Azul */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite; /* Animación de giro */
}

/* Animación para el giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilo del texto */
.as-loader-text {
  margin-top: 15px;
  margin-left: 15px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}




/* Ocultar el loader inicialmente */
.as-loader-containerNuevo {
  display: none; /* Oculto por defecto */
  position: fixed; /* Fijo para estar sobre todos los elementos */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  z-index: 9999; /* Asegura que esté al frente */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo del loader circular */
.as-loaderNuevo {
  border: 8px solid #f3f3f3; /* Gris claro */
  border-top: 8px solid #3498db; /* Azul */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite; /* Animación de giro */
}

/* Animación para el giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilo del texto */
.as-loader-textNuevo {
  margin-top: 15px;
  margin-left: 15px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}