/* ===================================================================
 * Preloader
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-fade {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-fade div {
    width: 1.2rem;
    height: 1.2rem;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 0.6rem;
    animation: dots-fade 1.4s infinite ease-in-out both;
}

.dots-fade div:nth-child(1) {
    animation-delay: -0.32s;
}

.dots-fade div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dots-fade {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}