@charset "UTF-8";

/* 로딩 */
#layerLoading {
    min-width: 72px;
    min-height: 72px;
}
@keyframes loadingSpin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.loading_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.loading_wrap .loading {
    overflow: hidden;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 6px solid #f8af00;
    border-top: 6px solid transparent;
    border-right: 6px solid transparent;
    animation: 0.6s loadingSpin linear infinite;
    background-color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}