/* ============================================
   DUNJ Loading Screen
   dunj-theme/assets/css/dunj-loader.css
   ============================================ */

#dunj-loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #1a3d4f;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.7s ease;
}

#dunj-loading-screen.dunj-loader-hidden {
    opacity: 0;
    pointer-events: none;
}

#dunj-loader-logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    background-color: #1a3d4f;
}

#dunj-loader-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.dunj-loading {
    overflow: hidden;
}

#dunj-site-wrapper {
    opacity: 0;
    transition: opacity 0.6s ease;
}

#dunj-site-wrapper.dunj-site-visible {
    opacity: 1;
}

@media (max-width: 480px) {
    #dunj-loader-logo-wrap {
        width: 100px;
        height: 100px;
    }
}