@charset "UTF-8";


/** 플로팅 버튼 **/
#btnApply {
    position: fixed;
    bottom: 23px;
    width:100%;
    text-align: center;
}
#btnApply .apply-btn {
    display: inline-block;
    width:325px;
    height:66px;
    margin:0 auto;
    line-height:66px;
    text-align: center;
    background: #FFD600;
    color:#000;
    font-size: 20px;
    font-weight: 700;
    border-radius: 25px;
}

/** 팝업 **/
.popups {
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top:0; right:0; bottom:0; left:0; z-index:999;
    transition: all 0.4s;
}
.popups.on {
    /*display: block;*/
    visibility: visible;
    opacity: 1;
}
.popups .dimmed {
    position: absolute;
    width:100%; height:100%;
    background:#000;
    opacity: 0.6;
}
.popups .modal-table {
    display: table;
    width:100%; height:100%;
    table-layout: fixed;
}
.popups .modal-cell {
    display: table-cell;
    width: 100%; height:100%;
    vertical-align: middle;
    text-align: center;
}
.popups .modal-content {
    position:relative;
    max-width:330px;
    margin:0 auto;
    padding:30px;
    background: #fff;
    box-sizing: border-box;
}
.popups .copy {
    text-align: center;
}

.popups .modal-content {
    padding:12px;
    border-radius: 20px;
}
.popups .copy {
    line-height: 30px;
    text-align: center;
    margin: 28px auto 34px;
    font-weight: 800;
    font-size: 23px;
    color: #000000;
}

.popups .okay-btn {
    width: 100%;
}
.popups .okay-btn .btn-ok {
    display: inline-block;
    padding: 22px 0 22px;
    width: 100%;
    text-align: center;
    line-height: 24px;
    background: #799FAD; /* custom */
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    box-sizing: border-box;
}
.popups .okay-btn.cnt-2 .btn-ok {
    float: left;
    width: calc( (100%/2) - 12px);
    margin: 0 6px;
}
.popups .okay-btn.cnt-2 .btn-ok  +.btn-ok {
    float:none;
}

@media screen and (max-width:350px) {
    #btnApply .apply-btn {
        width: calc(100% - 36px);
        min-width:240px;
    }
}