.loading_pop_box {
    position: fixed;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    display: none;
    width: 59vw;
    background: rgb(0 0 0 / 49%);
    border-radius: 5vw;
    padding: 6vw 0;
    z-index: 3;
}

.loading_pop_box_after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: '';
    z-index: 9;
    background: transparent;
    pointer-events: none;
    touch-action: none;
}

.loading_pop {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}

.loading_pop_img {
    width: 13vw;
    height: 13vw;
}

.loading_pop_text {
    margin-top: 3vw;
}