/* ============================================
   PRELOADER STYLES
   Organized by components with CSS variables
   ============================================ */

/* ===========================================
   PRELOADER OVERLAY
   =========================================== */
#preloader {
    background-color: var(--color-background-dark);
    transition: var(--transition-slow);
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    z-index: 9999;
    height: 100%;
    width: 100%;
    opacity: 1;
    left: 0;
    top: 0;
}

/* ===========================================
   PRELOADER HIDDEN STATE
   =========================================== */
#preloader.hidden {
    visibility: hidden;
    opacity: 0;
}

/* ===========================================
   PRELOADER LOGO
   =========================================== */
#preloader img {
    height: 100px;
    width: auto;
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    #preloader img {
        height: 50px;
    }
}
