#check_form{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

#check_form .check_form_item:last-child{
    flex-basis: 100%;
}

#check_form .check_form_item .input_text{
    position:relative;
    display:block;
    width:200px;
    margin-right:24px;
    margin-bottom:12px;
}

#check_form .check_form_item .input_text span{
    position:absolute;
    left:7px;
    top:-7px;
    background:#fff;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    color: #124945;
    padding:0 4px;
}

#check_form .check_form_item .input_text span .required_star{
    font-size: 7px;
    color:#cc6d69;
}

#check_form .check_form_item .input_text input{
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    height: 48px;
    width:100%;
    padding:0 12px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 48px;
    color: #333;
}

#check_form .check_form_item .btn{
    display:block;
    height: 48px;
    width: 180px;
    text-align: center;
    background: #124945;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 48px;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    border:0;
    margin:0;
    padding:0;
    transition: all 0.3s;
}

#check_form .check_form_item .btn:hover{
    background: #0A2C29;
}

#check_form .check_form_item .note{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #777777;
}

#orders{
    min-height:30%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin:36px 0;
}

#orders .basket_empty{
    flex-shrink: 0;
    flex-basis: 100%;
    display:flex;
    justify-content: center;
    margin: 50px auto 150px;
    font-family: Montserrat;
    color: #acacac;
    font-size: 14px;
}

#orders .order_item{
    display:flex;
    flex-direction: column;
    flex-basis: calc(33% - 48px);
    flex-shrink: 0;
    margin:12px 0 48px;
    padding:24px;
}

#orders .order_item .header{
    display:flex;
    flex-wrap: wrap;
}

#orders .order_item .header .name{
    font-family: MontserratBold;
    font-size:18px;
    font-weight: bold;
    line-height: 20px;
    color: #333;
}

#orders .order_item .header .date{
    font-family: Montserrat;
    font-size:14px;
    font-weight: normal;
    line-height: 20px;
    color: #acacac;
    margin-left:10px;
}

#orders .order_item .header .order_states{
    flex-basis: 100%;
    display:flex;
    font-family: Montserrat;
    font-size:14px;
    font-weight: normal;
    line-height: 20px;
    color: #fff;
    margin:10px 0;
}

#orders .order_item .header .order_states .order_state{
    margin:0 5px 0 0;
    padding:0 5px;
}

#orders .order_item .header .order_states .none{
    background-color: grey;
}

#orders .order_item .header .order_states .post{
    background-color: cornflowerblue;
}

#orders .order_item .header .order_states .done{
    background-color: green;
}

#orders .order_item .header .order_states .new{
    background-color: slategray;
}

#orders .order_item .header .order_states .work{
    background-color: orange;
}

#orders .order_item .header .order_states .outofstock{
    background-color: #ff0030;
}

#orders .order_item .header .order_states .deleted{
    background-color: red;
}

#orders .order_item .body .good_item{
    display:flex;
    flex-wrap: nowrap;
    margin:15px 0;
}

#orders .order_item .body .good_item .img{
    width:66px;
    flex-shrink: 0;
}

#orders .order_item .body .good_item .img img{
    width:100%;
}

#orders .order_item .body .good_item .description{
    margin-left: 10px;
}

#orders .order_item .body .good_item .description .name{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #124945;
}

#orders .order_item .body .good_item .description .category,
#orders .order_item .body .good_item .description .details{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #999;
}

#orders .order_item .footer .title{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #124945;
}

#orders .order_item .footer .sd_item{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #124945;
}

#orders .order_item .footer .total_cost{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #124945;
    margin-top:16px;
}

#orders .order_item .footer .btn{
    display:block;
    height: 48px;
    width: 100%;
    text-align: center;
    background: #124945;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 48px;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    border:0;
    margin:16px 0 0;
    padding:0;
    transition: all 0.3s;
}

#orders .order_item .footer .btn:hover{
    background: #0A2C29;
}

#orders .order_item .footer .btn_disabled{
    background: #acacac;
    cursor:not-allowed;
}

#orders .order_item .footer .btn_disabled:hover{
    background: #acacac;
}

@media (max-width: 1199px) {

}

@media (max-width: 1080px) {

}

@media (max-width: 958px) {
    #orders .order_item{
        flex-basis: calc(50% - 24px);
        padding:0 12px;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 576px) {
    #orders .order_item{
        flex-basis: 100%;
        padding:0;
    }
}

@media (max-width: 480px) {
    #check_form .check_form_item{
        flex-basis: 100%;
    }

    #check_form .check_form_item .input_text{
        width:100%;
    }

    #check_form .check_form_item .btn{
        width:100%;
        margin-bottom:12px;
    }
}

@media (max-width: 379px) {

}