.loading-overlay img {
    position: absolute;
    display: flex;
    justify-content: center;
    object-fit: cover;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.loading-overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Agregamos un fondo semitransparente */
    z-index: 9999; /* Ajustamos el z-index para que se superponga sobre el contenido de la pÃ¡gina */
}

.mz_loading {
    pointer-events: none;
}