/*--------------------------------------------------------------
# Full Loading
--------------------------------------------------------------*/
#dbl-full-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* 반투명 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/*
#dbl-full-loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#dbl-full-loading:before,
#dbl-full-loading:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-dbl-full-loading 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#dbl-full-loading:after {
    animation-delay: -0.5s;
}

@keyframes animate-dbl-full-loading {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}
 */