#loading {
    position: absolute;
    top:0;
    left: 0;
    height: 100vh;
    width: 100%;    
    z-index: 9999;
    background-color: #261f2d;
    
}
.interiorLoading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 450px;
    height: 100%;
    margin: 0 auto;
}
.loading-bar {    
    width: 100%;
    max-width: 450px;
    height: 20px;
    background-color: #cfe0ff;
    overflow: hidden;
    margin: 0 auto;
}
.interiorLoading span{
    width: 100%;
    text-align: left;
    font-family: sans-serif;
}
.loading-bar::before {
    content: '';
    display: block;
    width: 0%; 
    height: 100%;
    background-color: #8E8E8E;
    animation: loading 7s linear infinite;
}
#loading.slide-out { /* Clase para activar la animación */
    animation: slideUp 0.5s ease-out forwards; /* Animación de deslizamiento */
}

@keyframes slideUp {
    to {
        transform: translateY(-100%); /* Desliza hacia arriba fuera de la pantalla */
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}