body {
	margin: 0;
}
/* Contenedor del loader */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #343a40; /* Fondo blanco */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #loader {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .loader-logo {
    width: 300px; /* Ajusta el tamaño del logo */
    height: auto;
    opacity: 0;
    animation: fadeInOut 1.5s infinite ease-in-out;

    margin-bottom: 16px; /* Espacio entre la imagen y el texto */
  }
  
  /* Texto de carga */
  #loader-text {
    margin-top: 10px;

    font-family: Arial, sans-serif; /* Establece la familia de la fuente a Arial */
    font-size: 0.8em; /* Establece el tamaño de la fuente a un tamaño pequeño (ajusta según necesites) */
    font-weight: normal; /* Asegura que el texto no esté en negrita */

    color: #ffffff;
    font-weight: bold;
    margin-bottom: 8px; /* Espacio entre el texto y la barra de progreso */
  }
  
  /* Contenedor de la barra de progreso */
  #loader-bar {
    width: 80%;
    max-width: 300px;
    height: 5px;
    background-color: #343a40;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 3px;
  }
  
  /* Barra de progreso animada */
  #loader-progress {
    width: 0%;
    height: 100%;
    background-color: #E2E8F0;
    animation: progressAnimation 3s infinite;
  }
  
  /* Animación de la barra de carga */
  @keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
  }
  
  /* Animación de desvanecimiento */
  @keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  