body {
    margin: 0;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

#loading-bg {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--initial-loader-bg, #fff);
    block-size: 100%;
    gap: 1rem 0;
    inline-size: 100%;
}

.loading-logo svg {
    animation: logo-pulse 1.8s ease-in-out infinite;
    color: var(--initial-loader-icon, #000000);
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.loading {
    position: relative;
    width: 45px;
    height: 45px;
}

.loading .effects {
    position: absolute;
    box-sizing: border-box;
    border: 3px solid transparent;
    border-radius: 50%;
    border-left: 3px solid var(--initial-loader-color, #E6B94D);
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

.loading .effect-2 {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.loading .effect-3 {
    animation-delay: 0.4s;
    opacity: 0.4;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

