.fade-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: 2000;
}
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2001;
    position: fixed;
    height: 90px;
    width: 90px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}

.pace.pace-inactive .pace-activity {
    display: none;
}

.pace .pace-activity {
    position: fixed;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pace .pace-activity::after {
    content: 'Gestionando archivos';
    font-weight: bold;
    color: white;
    font-size: 20px;
    margin-top: 5px;
}

.pace .pace-activity::before {
    content: '';
    width: 50%;
    height: 7px;
    border-radius: 20%;
    background-color: white;
    position: absolute;
    bottom: -10px; 
    animation: moveLine 2s linear infinite; /* Animación de derecha a izquierda */
}

@keyframes moveLine {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.pace .pace-activity::before.move-right {
    animation-direction: alternate; /* Dirección alternativa de la animación */
}