#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    opacity: 1;
    img {
        width: 300px;
        height: auto;
    }
}

#loading-overlay.fade-out {
    pointer-events: none;
    opacity: 0;
}


#loadimg {
    transition: all 0.3s ease;
}
#loadimg.fade-out-img {
    opacity: 0;
    pointer-events: none;
}
/**/
.lmode {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    color: #ff3b72;
    gap: 20px;
    img {
        width: 30px !important;
        height: auto;
    }
}