
/* #### class 참고 사항 ####
.cfm-alert-1 : 확인버튼 only
.cfm-alert-2 : 확인버튼, 취소버튼 둘 다 있음
.cfm-alert-bg-on : 상위요소에 부여해서 반투명 배경 생성
.cfm-alert-on : 활성화
*/

.cfm-alert {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    color: #fff;
    /* background-image: linear-gradient(to bottom, #000, #0F0F1A 10%, #1e1e32 40%, #0F0F1A 70%, #000); */
    width: 350px;
    padding: 30px 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #1e1e32ee;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    display: none;
}

.cfm-alert-bg-on {
    z-index: 50;
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
    position: fixed;
    left: 0;
    top: 0;
}

.cfm-alert-on {
    z-index: 10000;
    display: block !important;
    position: fixed;
}

.cfm-alert .title {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.cfm-alert .content {
    word-break: break-word;
    /*font-size: 1.08rem;*/
    color: #fff;
    margin-bottom: 30px;
}

.cfm-alert .alert-btn-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.cfm-alert .alert-btn-wrapper .btn {
    width: 40%;
    height: 40px;
    /*font-size: 1.08rem;*/
    border-radius: 6px;
    color: #fff;
}

.cfm-alert .alert-btn-wrapper .btn-cfm {
    background-color: #467DD9;
}

.cfm-alert .alert-btn-wrapper .btn-cfm:active {
    background-color: #3b6bbe;
}

.cfm-alert .alert-btn-wrapper .btn-cxl {
    background-color: #666666aa;
    color: #bbb;
    margin-right: 10px;
}

.cfm-alert .alert-btn-wrapper .btn-cxl:active {
    background-color: #777777aa;
    color: #ccc;
}

.loading-img{
    width: 80px;
    margin: 0 auto 20px;
}

#icon-loading {
    animation: rotate linear 2s infinite ;
}

.st0{fill:#467DD9;}
.st1{opacity:0.87;fill:#467DD9;}
.st2{opacity:0.8;fill:#467DD9;}
.st3{opacity:0.7;fill:#467DD9;}
.st4{opacity:0.65;fill:#467DD9;}
.st5{opacity:0.6;fill:#467DD9;}
.st6{opacity:0.5;fill:#467DD9;}
.st7{opacity:0.4;fill:#467DD9;}
.st8{opacity:0.3;fill:#467DD9;}
.st9{opacity:0.2;fill:#467DD9;}

@media screen and (max-width: 500px) {
    .cfm-alert .title {
        /*font-size: 1.8rem;*/
    }

    .cfm-alert .content {
        /*font-size: 1.4rem;*/
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}