.order{
    padding-top: 205px;
    padding: 105px 0px;
}

.order .content{
    padding-top: 30px;
}

.block-basket{
    float: left;
    width: 300px;
}

.basket-title{
    color: #171717;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.list-basket{
    max-height: 650px;
    overflow: auto;
}

.items-basket{
    margin-bottom: 20px;
}

.img-items-basket{
    width: 150px;
    height: 150px;
    background-color: rgb(85,175,50);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
}

.right-block-items-basket{
    float: left;
    padding-left: 10px;
    box-sizing: border-box;
    width: 140px;
}

.name-items-basket{
    font-weight: bold;
    margin-bottom: 10px;
}

.price-items-basket{
    margin-bottom: 5px;
}

    .price-items-basket:before{
        content: "Цена: ";
    }
    
    .price-items-basket:after{
        content: "";
        display: inline-block;
        width: 10px;
        height: 12px;
        margin-left: 2px;
        background-image: url(../img/icon_tenge.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

.count-items-basket{
    margin-bottom: 10px;
}

.count-items-basket:before{
    content: "Количество: ";
}

.nav-items-basket{
}

.bbn{
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: rgb(85,175,50);
}

.nib-plus{
    background-image: url(../img/plus.svg);
}

.nib-minus{
    background-image: url(../img/minus.svg);
}


.block-form{
    float: right;
    width: 800px;
    padding-left: 40px;
    box-sizing: border-box;
}

    .name-items-form{
        margin-bottom: 5px;
    }

    .block-form input{
        padding: 7px 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .block-form textarea{
        padding: 7px 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
        height: 100px;
        resize: none;
    }
    

.form-title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.button-submit{
    display: inline-block;
    text-transform: uppercase;
    background-color: rgb(85,175,50);
    color:#fff;
    padding: 13px 25px;
    cursor:pointer;
    font-weight: bold;
    font-size: 15px;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.9;
}

    .button-submit:hover{
        opacity: 1;
    }

    
.display-error{
    color: red;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    display: none;
}

.display-message{
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(85,175,50);
    display: none;
}


@media only screen and (max-width: 768px){
    
    .order .content{
        width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .block-basket{
        width: 100%;
    }
    
    .block-form{
        width: 100%;
        padding-left: 0px;
    }
    
    
    
    
    
    
    
}  