/* 모달 */
.layer-modal { display: none; width:100%; height:100%; position:fixed; top:0; left:0; z-index:2; }
.layer-modal .layer-background-span {
    position:fixed;
    width:100%;
    height:100%;
    z-index:99999;
    overflow-x: hidden;
    border:0; left:0; top:0; background-color:#000; opacity:.7; filter:alpha(opacity:100);
}

.layer-modal .layer-modal-content {
    display:block;
    margin: auto;
    position:relative;
    z-index:99999;
    background-color:#fff;
    overflow:hidden;
    opacity:0;
}

.layer-modal .layer-modal-close {
    position:absolute;
    width:15px;
    top:15px;
    right:10px;
    z-index:99999;
}

.layer-modal .layer-modal-close .layer-btn-modal-close img { width:100%; cursor: pointer; }

.wrap-layer .layer-title { padding:15px 0; margin:0 auto; text-align: center; background:#4F5D75; color:#fff; font-weight:bold; font-size:14px; }
.wrap-layer .layer-content { width:95%; padding:10px 0 0 0; margin:auto; }

#super-modal{
    position: fixed;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.75);
}

/* 로딩 css */
#super-modal .modal-load-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
#super-modal .modal-load-spinner div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
#super-modal .modal-load-spinner div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
#super-modal .modal-load-spinner div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}
#super-modal .modal-load-spinner div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}
#super-modal .modal-load-spinner div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}
#super-modal .modal-load-spinner div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}
#super-modal .modal-load-spinner div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}
#super-modal .modal-load-spinner div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}
#super-modal .modal-load-spinner div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}
#super-modal .modal-load-spinner div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}
#super-modal .modal-load-spinner div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}
#super-modal .modal-load-spinner div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}
#super-modal .modal-load-spinner div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}
@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
        opacity: .4;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}
