.preorder_modal {
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index:10001;
}.preorder_modal.open {
   display: flex;
   flex-direction: column;
}.preorder_modal_header,
.preorder_modal_footer {
    height: 60px;
}.preorder_modal_content {
    height: 100%;
    overflow-y: auto;
}
.preorder_offer {
    display: flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-start;
    margin-left: 0px;
    margin-top: 20px;
}
.preorder_area_qty {
    font-size:14px;
    margin-top:20px;
}
.preorder_area_total {
    font-size:14px;
    margin-top: 5px;
}
.preorder_buy
{
    border:none;
    height:44px;
    border-radius:5px;
    background:#FFB821;
    transition:all .3s ease;
    color:#212121;
    font-size:15px;
    font-family:'NotoSans';
    font-weight:400;
    box-shadow:0 3px 6px rgba(118,118,118,.42);
    width:46%;
    margin-right: 10px;
}

.preorder_buy:hover
{
    background:#FFEDAC;
    box-shadow:0 9px 18px rgba(118,118,118,.42)
}
.preorder_chose-color
{
    border:none;
    height:44px;
    border-radius:5px;
    transition:all .3s ease;
    color:#fff;
    font-size:15px;
    font-family:'NotoSans';
    font-weight:400;
    background:-webkit-linear-gradient(#45BCB4,#43A8C7);
    background:-o-linear-gradient(#45BCB4,#43A8C7);
    background:linear-gradient(#45BCB4,#43A8C7);
    box-shadow:0 3px 6px rgba(118,118,118,.42);
    width:46%;
}
.preorder_head_title {
    margin: 10px 0 0 10px;
}
.preorder_close {
    position: absolute;
    right: 7px;
    top: 7px;
    border: 0;
    font-size: 25px;
    background: none;
}
.preorder_total_value {
    margin-top: 15px;
    border-top: 1px solid #d9d9d9;
    padding-top: 15px;
}
