@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: 14px;
    border-radius: 20px;
}

.popups .copy {
    text-align: center;
    margin: 26px auto 35px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.popups .okay-btn {
    width: 100%;
}

.popups .okay-btn .btn-ok {
    display: inline-block;
    padding: 18px 0 18px;
    width: 100%;
    text-align: center;
    background: #FFD600;
    /* custom */
    border-radius: 10px;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    box-sizing: border-box;
}

.popups .okay-btn.cnt-2 {
    display: flex;
}

.popups .okay-btn.cnt-2 .btn-ok {
    padding: 20px 0 19px;
    float: left;
    flex: 0 80px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    background: #E2E2E2;

}

.popups .okay-btn.cnt-2 .btn-ok+.btn-ok {
    float: none;
    background: #FFD600;
    margin-left: 10px;
    flex: 1;
}
.popups .title .sub,
.popups .copy .desc{
  display: block;
font-weight: 400;
font-size: 15px;
line-height: 18px;
letter-spacing: -1px;
margin: 20px auto 0;

color: #333333;
}