/*-------- popup ---------*/
.wrap_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #333;
    transition: .5s;
    z-index: -1;
    background: transparent;
}
.wrap_popup.show {
    z-index: 10;
    background: rgba(0,0,0,.5);
}
.popup_box.show {
    transform: translateY(calc(50vh - 125px));
}
.popup_box {
    transition: .5s;
    position: absolute;
    width: 500px;
    height: 250px;
    background: #e2e1e0;
    transform: translateY(1500px);
    left: calc(50vw - 250px);
    border-radius: 20px;
    box-shadow: 2px 2px 4px 1px rgba(0,0,0,.3);
}
.popup_cancel {
    position: relative;
    width: 50px;
    height: 50px;
    background: #f2bc67;
    clip-path: inset(0px 0px 0px 0px round 0 0 20% 20%);
    -webkit-clip-path: inset(0px 0px 0px 0px round 0 0 20% 20%);
    margin-left: 420px;
}
.popup_cancel span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.popup_title {
    margin: 15px 0;
    text-align: center;
}
.input-column {
    display: flex;
    margin: 10px 30px;
}
.wrap_select_other {
    width: 40% !important;
    padding: 10px;
    background: white;
}
.wrap_select_other .es-input {
    background: none !important;
    width: 100% !important;
    padding-right: 0 !important;
}
.wrap_select_other .es-list {
    width: 200px !important;
    min-height: 200px;
}
#userPhone {
    width: 60%;
    padding: 10px;
    background: white;
}
.remark {
    margin: 0 6px;
    text-align: center;
    font-size: 12px;
}
.btn_submit {
    text-align: center;
    margin: 10px 0 15px 0;
}
.btn_submit span {
    background: #f2bc67;
    padding: 5px 80px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
.btn_submit span:hover {
    box-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
@media screen and (max-width: 575px){
    .popup_box {
        width: 320px;
        height: 250px;
        transform: translateY(1000px);
        left: calc(50vw - 160px);
    }
    .popup_box.show {
        transform: translateY(calc(50vh - 110px));
    }
    .popup_cancel {
        margin-left: 220px;
    }
    .input-column {
        margin: 10px ;
    }
}
@media screen and (max-width: 320px){
    .popup_box {
        width: 250px;
        height: 200px;
        left: calc(50vw - 125px);
    }
    .popup_box.show {
        transform: translateY(calc(50vh - 100px));
    }
    .popup_cancel {
        position: relative;
        width: 50px;
        height: 30px;
        background: #f2bc67;
        clip-path: inset(0px 0px 0px 0px round 0 0 20% 20%);
        margin-left: 180px;
    }
    .popup_title {
        margin: 10px 0;
        font-size: 14px;
    }
    #userPhone {
        width: 55%;
        padding: 5px 10px;
    }
    .wrap_select_other {
        width: 45% !important;
        padding: 5px 10px;
    }
    .input-column {
        margin: 10px ;
        font-size: 14px;
    }
    .btn_submit span {
        font-size: 14px;
    }
}