.layerPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1051;
    justify-content: center;
    align-items: center;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spinner 2s linear infinite;
    transform: translate(-50%, -50%);
}

.spinner_obj_wrap {
    position: relative;
    padding-top: 60px;
    top: 50%;
    transform: translateY(calc(-50% + 30px));
}

.spinner_cnt {
    display: none;
    /* position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%); */
}

@media screen and (max-width: 768px) {
    .spinner_cnt {
        margin-top: 10px;
    }
}

.spinner_cnt.active {
    display: block;
}

.spinner_cnt>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner_cnt>div>span,
.spinner_cnt>p {
    font-size: 14px;
    color: #fff;
}

.spinner_cnt>p {
    margin-top: 4px;
    word-break: keep-all;
    text-align: center;
}

.spinner_animate {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, 100%);
    font-size: 14px;
    color: #fff;
    word-break: keep-all;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    animation-duration: 2000ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
    /* width: calc(100vw - 100px); */
    width: 100%;
}

.spinner_animate.active {
    animation-name: _spinnerTxt;
}

@keyframes _spinnerTxt {
    0% {
        visibility: hidden;
        opacity: 0;
    }

    100% {
        visibility: visible;
        opacity: 1;
    }
}

/* (임시) 부트스트랩 spinner 충돌나는 css 안보이게 */
.layerPopup .spinner::before {
    display: none;
}

@keyframes spinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}