:root {
    /* loading */
    --loading-box:104px;

    /* Grayscale */
    --gray-900: #1B1D1F;
    --gray-800: #26282B;
    --gray-600: #454C53;
    --gray-500: #72787F;
    --gray-400: #9EA4AA;
    --gray-200: #C9CDD2;
    --gray-100: #E8EBED;
    --gray-50: #F7F8F9;
}

/* loading */
.loading_wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loading_wrap .loading_box {
    width: 100%;
    max-width: 520px;
    height: 360px;
    background: #fff;
    position: fixed;
    z-index: 9999;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: load_view1 1s 0s forwards cubic-bezier(0.19, 1, 0.22, 1);
    margin-top:-20px;
    opacity: 0;
    overflow: hidden;
}

#animation-container {
    width:100%;
    max-width:180px;
}
.loading_wrap .loading_box .load_txt_box {
    display:flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}
.loading_wrap .loading_box .load_txt_box p {
    font-size:24px;
    color: var(--gray-600);
    font-weight:700;
    margin-top:40px;
    margin-bottom: 0;
}
.loading_wrap .loading_box .load_txt_box span {
    color: var(--gray-400);
}
.loading_wrap .loading_dim_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #64758d6b;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    animation: load_view3 0.3s 0s forwards cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes load_view1 {
    0% {
        margin-top:-20px;
        opacity: 0;
    }
    100% {
        margin-top:0px;
        opacity: 1;
    }
}
@keyframes load_view2 {
    0% {
        margin-top:20px;
        opacity: 0;
    }
    100% {
        margin-top:40px;
        opacity: 1;
    }
}
@keyframes load_view3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width:564px) {
    .loading_wrap .loading_box {
        max-width:320px;
        height:320px;
    }
}