.popup_wrap {    
    display:none;
    justify-content: center;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,.5);
    z-index: 9999;    
}
.popup_area {
    position: relative;
    width:100%;
    max-width:650px;
    border-radius:8px;
    overflow:hidden;
    background-color:#F5F6F8;
}
.popup_area .btn_close { 
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    background: url(../img/popup_close.png) no-repeat center / 20px 20px;
}
.popup_area .popup_hd {    
    display: flex;
    align-items: center;
    height:65px;
    background-color:#F5F6F8;    
}
.popup_area .hd_title {        
    margin-left: 2.5rem;
    color: #111;    
    font-size:20px;
    font-weight:600;
}
.popup_area .popup_bd {
    background-color:#fff;
}
.popup_area .popup_inner {    
    padding:0 36px;        
    overflow-y: auto;    
    height: 100%;    
    max-height:400px;        
}
.popup_area .popup_bd .cont_wrap {
    margin-bottom:36px;
    line-height: 1.4;
}
.popup_area .popup_bd .cont_tit {
    font-size:18px;
    font-weight:500;    
    margin-top: 2rem;
}
.popup_area .txt_p {
    font-size:16px;
    color:#7a7c85;
    margin-top:16px;
    margin-bottom:0;
}
.popup_area .txt_p:last-child {
    margin-top:0;
}
.popup_area .list_1depth {
    list-style:none;
    padding:0;
    margin-bottom:0;
    margin-top:16px;
    padding-left:20px;
}
.popup_area .list_1depth.hyphen {
    padding-left:14px;
}
.popup_area .list_1depth.hyphen li {
    position:relative;
}
.popup_area .list_1depth.hyphen li .txt_num {
    position:absolute;
    margin:0 4px 0 -14px;
}
.popup_area .list_1depth li {
    margin-top:12px;
    font-size:16px;
    line-height:24px;
    word-wrap:break-word;
    word-break:keep-all;
}
.popup_area .list_1depth li .txt_num {
    display:inline-block;
    margin:0 6px 0 -20px;
}
.popup_area .list_2depth {
    display:block;
    padding:0 0 0 20px;
}
.popup_area .list_2depth li {
    list-style:none;
}

/* mobile */
@media (max-width: 767px) {    
    .popup_cont { 
        height: 100%;
    }
    .popup_area { 
        width: 94%;
        height: 94%;
    }    
    .popup_area .popup_bd { 
        height: calc(100% - 65px);
    }
    .popup_area .popup_inner { 
        max-height: unset;
        height: 100%;
        padding: 0 2.2rem;
    }
    .popup_area .popup_bd .cont_tit { 
        font-size: 17px;
    }
    .popup_area .txt_p { 
        font-size: 15px;
    }
}

#loadingSpinner{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}