
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-overlay.hidden {
    display: none;
}

#lottie-container {
    width: 35vw;
    height: 30vw;
    min-width: 150px;
    min-height: 150px;
}


@media (max-width: 768px) {
    #lottie-container {
        width: 55vw;
        height: 50vw;     
        min-width: 150px; 
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    #lottie-container {
        width: 75vw;
        height: 70vw;
        min-width: 180px;
        min-height: 180px;
    }
}
