.overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #0000008f;
    z-index: 999;
    display: none;
}
.overlay.active{
    display: block;
}
.ajaxquick{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #00000078;
    display: none;
}
.ajaxquick.active{
    display: block;
}

.add_mo{
    width: 560px;
    height: fit-content;
    max-height: 85vh;
    background-color: white;
    padding: 30px 22px 40px 30px;
    box-sizing: border-box;
    overflow-y: scroll;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    box-shadow: 4px 6px 24px 0 rgb(0,0,0,0.2);
    overscroll-behavior: contain;
}
.add_mo::-webkit-scrollbar{
    visibility: hidden;
    width: 8px;
    background-color: #F8F9FA;
}
.mo_top{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #5E636B;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.mo_top h2{
    font-size: 22px;
    color: #17191D;
}
.mo_top .icon{
    width: 48px;
    height: 48px;
    position: absolute;
    right: 12px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    border-radius: 50%;
}
.mo_top .icon:hover{
    background-color: #00000012;
}
.mo_top img{
    width: 30px;
}
.mo_bot{
    width: 100%;
    padding-bottom: 20px;
}
.mo_bot h4 {
    margin-bottom: 24px;
}
.mo_bot input[type="text"],
.mo_bot input[type="password"],
.mo_bot input[type="number"]{
    width: 100%;
    padding: 15px;
}
.mo_bot .row{
    gap: 16px;
}
.mo_bot .mo_con{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 14px;
}
.mo_bot .mo_con:last-child{
    margin-bottom: 0;
}
.mo_bot .line_tt{
    width: 100%;
    font-size: 14px;
    color: #17191D;
    margin-bottom: 2px;
    font-weight: bold;
}
.mo_bot .highlight{
    font-weight: bold;
    color: #17191D;
    font-size: 1.2em;
}
.mo_bot .search {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}
.mo_bot select{
    width: 100%;
    height: 48px;
    padding: 15px 20px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
}
.mo_bot .otp_radio_wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.mo_bot .otp_radio_wrap label{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #5E636B;
    margin-right: 30px;
}
.mo_bot .otp_radio_wrap label:last-child{
    margin-right: 0;
}
.mo_bot .otp_radio_wrap input[type="radio"]{
    display: none;
    appearance: none;
}
.mo_bot .otp_radio_wrap input[type="radio"] + span{
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid #C8C8C8;
    border-radius: 50%;
    position: relative;
    margin-right: 6px;
}
.mo_bot .otp_radio_wrap input[type="radio"]:checked + span::after{
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background: #10D0A2 85% center;
    border-radius: 50%;
}
.mo_bot .msg_dsc{
    color: #A1A3A7;
    font-size: 0.9em;
    margin-left: 6px; 
    font-weight: lighter;
}

.mo_bot .add_mo input::placeholder{
    font-size: 14px;
}
.add_mo .msg_caut{
    display: inline-block;
    font-size: 13px;
    color: #17191D;
    margin-top: 40px;
}
.mo_send_bt{
    width: 100%;
    height: 48px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 30px;
    border-radius: 10px;
    cursor: pointer;
}
.mo_close_bt {
    margin-top: 10px;
}

.coupon__box {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #F8F9FA;
    padding: 26px;
}
.coupon__inner {
    display: flex;
    align-items: stretch;
}
.coupon__info {
    width: 88%;
}
.coupon__info_price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}
.coupon__info_title {
    font-size: 16px;
    margin-bottom: 7px;
    /* font-weight: bold; */
}
.coupon__info_date {
    font-size: 13px;
    color: #A1A3A7;
}
.coupon__logo {
    writing-mode: vertical-lr;
    font-size: 11px;
    color: #CECECD;
    border-left: 1px solid #CECECD;
    padding-left: 12px;
    text-align: center;
}
@media (max-width: 860px) {
    .add_mo{
        width: 500px;
        max-height: 80vh;
        padding: 24px 20px 30px;
        /* margin-top: -35px; */
    }
    .add_mo input[type="text"],
    .add_mo input[type="number"],
    .add_mo input[type="passworld"]{
        height: 48px;
    }
    .mo_top{
        padding-bottom: 16px;
        margin-bottom: 20px;
    }
    .mo_top .icon{
        width: 40px;
        height: 40px;
        top: 16px;
    }
    .mo_top h2{
        font-size: 18px;
    }
    .mo_bot .line_tt{
        font-size: 13px;
        margin-top: 0;
    }
}
@media (max-width: 600px){
    .add_mo{
        width: 90%;
    }
}