@charset "utf-8";

/* 공통 */
.arlet_modal,
.alert_modal,
.prd_cat_modal,
.opt_sch_modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 100000;
    /* -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
    justify-content: center; */
}
.adr_s_modal{
    display:none;
}
.prd_cat_modal{
    margin:0 20px;
}
.arlet_modal.show,
.alert_modal.show{
    display:block
}
.arlet_modal .ov_mask,
.alert_modal .ov_mask,
.prd_cat_modal .ov_mask,
.opt_sch_modal .ov_mask{
    max-width: 480px;
    margin: 0px auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14,12,15,.7);
    z-index: 10000;
    overflow: hidden;
    touch-action: none;
    -ms-overflow-style: none;
    overflow-y: hidden;
}
.arlet_modal .modal_box,
.alert_modal .modal_box,
.opt_sch_modal .modal_box{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
    justify-content: center;
    max-width:430px;
    max-height:300px;
    width:calc(100vw * (335/375));
    height:calc(100vw * (260/375));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    border-radius:10px;
    background:#fff;
    text-align:center;
}
.opt_sch_modal .modal_box{
    height: fit-content;
    max-height: fit-content;
    justify-content: inherit;
    padding:30px 20px;
    text-align:left;
}
.arlet_modal .modal_box .text,
.alert_modal .modal_box .text{
    padding: 0 50px;
    margin-bottom:30px;
    font-size:1.6rem;
    font-weight:400;
    line-height:1.4
}
.arlet_modal .modal_box .btn_wrap,
.alert_modal .modal_box .btn_wrap{
    padding:0 20px;
}
.arlet_modal .modal_box .btn_wrap button,
.alert_modal .modal_box .btn_wrap button{
    width:47%;
    height:44px;
    line-height:44px;   
    font-size:1.6rem;
    font-weight:500;
    border-radius:4px;
    border:1px solid #2BA5A5;
    color:#2BA5A5;
    cursor: pointer;
}
.arlet_modal .modal_box .btn_wrap button:first-child,
.alert_modal .modal_box .btn_wrap button:first-child{
    margin-right:3%;
}
.arlet_modal .modal_box .btn_wrap.odd button:first-child,
.alert_modal .modal_box .btn_wrap.odd button:first-child{
    margin-right:0
}
.arlet_modal .modal_box .btn_wrap button:last-child,
.alert_modal .modal_box .btn_wrap button:last-child{
    border:none;
    color:#fff;
    background:#2BA5A5
}
.prd_cat_modal .modal_box{
    width:100%;
    max-width:430px;
    height:600px;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index:10000;
    background:#fff
}
.prd_cat_modal .modal_box .head{
    height:50px;
    line-height:50px;
    padding:15px;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
    border-bottom:1px solid #EDEDED;
    font-size:1.6rem;
    font-weight:600
}
.prd_cat_modal .modal_box .head .btn_close{
    padding:5px 0 5px 5px
}
.prd_cat_modal .modal_box .contents{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    height:calc(100% - 51px)
}
.prd_cat_modal .modal_box .contents .cat_menu{
    flex:1
}
.prd_cat_modal .modal_box .contents .cat_menu .tile{
    padding: 0 15px;
    min-width: max-content;
    height:48px;
    line-height:48px;
    font-size:1.4rem;
    font-weight:400;
}
.prd_cat_modal .modal_box .contents .cat_menu .tile.active{
    background:#EDF0F2;
    color:#2BA5A5;
    font-weight:500
}
.prd_cat_modal .modal_box .contents .type_list_wrap{
    flex:2;
    overflow: hidden;
    overflow-y: scroll;
    background: #EDF0F2;
}
.prd_cat_modal .modal_box .contents .cat_type{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    flex-wrap: wrap;
    padding:20px 15px;
    background:#EDF0F2;
}
.prd_cat_modal .modal_box .contents .cat_type .tile{
    width:48%;
    margin-bottom:15px;
    position:relative;
}
.prd_cat_modal .modal_box .contents .cat_type .tile:nth-of-type(odd){
    margin-right:4%
}
.prd_cat_modal .modal_box .contents .cat_type .tile .thumbnail{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    background:#fff
}
.prd_cat_modal .modal_box .contents .cat_type .tile .thumbnail:after{
    content:'';
    display:block;
    padding-bottom:100%
}
.prd_cat_modal .modal_box .contents .cat_type .tile .thumbnail img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit: cover;
}
.prd_cat_modal .modal_box .contents .cat_type .tile .txt_type{
    margin-top:7px;
    font-size:1.3rem;
    font-weight:400;
    text-align:center
}
.opt_sch_modal .frm_input{
    padding:0;
}
.opt_sch_modal .modal_box .btn_close{
    position:absolute;
    top:15px;
    right:15px;
}
.opt_sch_modal .modal_box .modal_tit{
    margin-bottom:10px;
    font-size:1.6rem;
    font-weight:500
}
.opt_sch_modal .sch_date{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
}
.opt_sch_modal .sch_date .frm_input{
    height:34px;
    border-radius:2px;
    border:1px solid #CACACA;
    text-align:center;
    font-size: 1.4rem;
}
.opt_sch_modal .sch_date input[type="date"]{
    max-width:105px;
    min-width:105px;
    -webkit-appearance: none !important;
    background:#fff;
    text-align:center !important
}
.opt_sch_modal .sch_date input[type="date"]::placeholder{
    text-align:center;
}
.opt_sch_modal .frm_input:focus{
    border:1px solid #CACACA
}
.opt_sch_modal span.fr_line{
    margin:0 5px
}
.opt_sch_modal .sch_wrap .btn_wrap{
    margin:12px 0 14px;
}
.opt_sch_modal .sch_wrap .btn_wrap button{
    margin-right:3px;
    margin-bottom:10px;
    border:1px solid #2BA5A5;
    border-radius:32px;
    background:#fff;
    height: 26px;
    line-height: 25px;
    padding:0 10px;
    font-size:1.2rem;
    font-weight:500;
    color:#2BA5A5;
    font-family: 'Roboto', sans-serif;
}
.opt_sch_modal .sch_wrap .btn_wrap button:last-child{
    margin-right:0
}
.opt_sch_modal .sch_wrap .btn_wrap button.active{
    background:#2BA5A5;
    color:#fff
}
.opt_sch_modal .sch_wrap select{
    min-width:150px;
    max-width: fit-content;
    height: 34px;
    margin-bottom:12px;
    padding-left: 10px;
    border: 1px solid #CACACA;
    border-radius: 2px;
    appearance: none;
    background: url("/img/onair/opt_sch_sel.svg")no-repeat 94% 50%;
    color:#222
}
.opt_sch_modal .sch_wrap .frmorder_tile .frm_input{
    height:34px;
    border: 1px solid #CACACA;
    border-radius: 2px;
    background: url("/img/onair/opt_sch_sch.svg")no-repeat 97% 50%;
    padding: 0 30px 0 10px;
}
.opt_sch_modal .sch_wrap .frmorder_tile .btn_submit{
    display:block;
    width:145px;
    height:44px;
    margin:25px auto 0;
    border-radius:4px;
    background:#2BA5A5;
    font-size:1.6rem;
    font-weight: 500;
}
.alert_modal#s_block .text_box{
    margin:0 40px 30px;
}
.alert_modal#s_block .text_box .head{
    margin-bottom:20px;
    font-size:1.6em;
    font-weight:500;
}
.alert_modal#s_block .small_des{
    font-size:1.2em;
    color:#999
}
.alert_modal#s_block .btn_wrap button:nth-of-type(2){
    background:#999;
    color:#fff
}
.alert_modal#s_block .modal_box.finish{
    display:none;
}
.alert_modal#s_unblock .text_box{
    margin:0 40px 30px
}
.alert_modal#s_unblock .text_box .head{
    margin-bottom:20px;
    font-size:1.6em;
    font-weight:500;
}
.alert_modal#s_unblock .small_des{
    font-size:1.2em;
    color:#999
}
.alert_modal#s_unblock .confirm .btn_wrap button:nth-of-type(1){
    border:1px solid #999;
    color:#999
}
.alert_modal#s_unblock .btn_wrap button:last-child{
    background:#2BA5A5;
    color:#fff
}
.alert_modal#s_unblock .modal_box.finish{
    display:none;
}
.alert_modal#u_report .modal_box{
    padding:20px 0;
    height:fit-content;
    max-height:calc(100vw * (560/375));
    min-height:273.05px;
    justify-content: flex-start;
    text-align:left;
}
.alert_modal#u_report .modal_box .text_box{
    padding:0 20px;
}
.alert_modal#u_report .modal_box .text_box .head{
    font-size:1.8em;
}
.alert_modal#u_report .modal_box .text_box .small_des{
    margin:15px 0 15px;
    font-size:1.2em;
    color:#999;
}
.alert_modal#u_report .modal_box .sel_list{
    flex:1;
    padding:5px 20px;
    margin-bottom:10px;
    overflow-y:scroll;
    font-size:1.6em;
}
.alert_modal#u_report .modal_box .sel_list .tile{
    margin-bottom:20px;
}
.alert_modal#u_report .modal_box.confirm .btn_wrap button:last-child{
    background:#999;
    color:#fff;
}
.alert_modal#u_report .modal_box.finish{
    padding:50px 0;
    display:none;
    justify-content: center;
    text-align:center;
}
.alert_modal#u_report .modal_box.finish .text{
    margin-top:20px;
    padding:0 20px;
}

@media (min-width: 999px){
    .policy_modal .po_m_con .po_c_btn,
    .terms_modal .te_m_con .te_c_btn,
    .opt_sch_modal .modal_box .btn_close,
    .opt_sch_modal .sch_wrap .btn_wrap button,
    .opt_sch_modal .sch_wrap .frmorder_tile .btn_submit{
        cursor: pointer;
    }
    .prd_cat_modal .modal_box .contents .cat_type .tile .txt_type{
        font-size:1.6rem
    }
}

@media (max-width: 280px) {
    .arlet_modal .modal_box .text,
    .alert_modal .modal_box .text {
        padding: 0 15px;
        margin-bottom: 30px;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.4;
    }
    .arlet_modal .modal_box .btn_wrap,
    .alert_modal .modal_box .btn_wrap {
        padding: 0 10px;
    }
}