.page {
    padding-bottom: 40px;
}
.basket-item{
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(170, 141, 122, 0.7);
    box-shadow: 0px 0px 10px rgba(92, 77, 72, 0.2);
    border-radius: 7px;
    padding: 15px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.item{
    display: flex;
    align-items: center;
}
.bx_ordercart_itemtitle{
    max-width: 400px;
    margin-right: 40px;
}
.bx_ordercart_itemart{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #73675E;
    max-width: 240px;
}
.bx_ordercart_itemtitle a{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: baseline;
    color: #981C0E;
    flex-direction: column;
}
.bx_ordercart_photo img{
    border-radius: 5px;
}
.current_price{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #981C0E;
}
.custom.sum{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #981C0E;
}
.basket_quantity_control.items_counter{
    filter: drop-shadow(0px 0px 10px rgba(92, 77, 72, 0.5));
    background: #FFFFFF;
    border-radius: 7px;
    width: 100px;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    position: relative;
}
.items_count{
    outline: none;
    border: none;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #5C4D48;
}
a.minus.items_count_minus{
    text-decoration: none;
    color: #E3DDD5;
    width: 16px;
    height: 2px;
    font-size: 34px;
    position: absolute;
    left: 9px;
    top: -10px;
}
a.plus.items_count_plus{
    text-decoration: none;
    color: #E3DDD5;
    width: 16px;
    height: 2px;
    font-size: 20px;
    position: absolute;
    right: 9px;
    top: 2px;
}
.bx_ordercart_order_pay {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 10px;
    max-width: max-content;
    margin-left: auto;
}
.bx_ordercart_order_sum .fwb:nth-of-type(1){
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    color: #5C4D48;
    display: block;
    margin-right: 20px;
}
#allSum_FORMATED{
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #981C0E;
}
.bx_ordercart_order_pay_center{
    margin-top: 20px;
    width: 100%;
}
.bx_ordercart_order_pay_center a{
    background: linear-gradient(19.36deg, #A71505 11.04%, #BF2309 85.16%);
    box-shadow: 4px 4px 10px rgba(200, 173, 155, 0.25);
    border-radius: 32px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.bx_ordercart_order_pay_center a:hover{
	color:#fff;
}
.basket-titles{
    display: flex;
    margin-bottom: 10px;
}
.basket-header{
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #5C4D48;
}
.basket-titles .basket-header:nth-of-type(1){
    width: 70%;
}
.basket-titles .basket-header:nth-of-type(2){
    width: 18%;
}
.basket-titles .basket-header:nth-of-type(3){
    width: 16%;
}
.basket-titles .basket-header:nth-of-type(4){
    width: 23%;
}
.subtitle_cart{
    font-size: 13px;
    margin-top: 10px;
}
@media(max-width:1420px){
    .bx_ordercart_itemtitle {
        max-width: 350px;
        margin-right: 40px;
    }
    .bx_ordercart_itemtitle a {
        font-size: 15px;
    }
}
@media(max-width: 1290px){
    .item {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .bx_ordercart_itemtitle {
        margin-right: 0;
    }
    .basket-titles .basket-header:nth-of-type(2) {
        width: 29%;
    }
    .basket-titles .basket-header:nth-of-type(3) {
        width: 28%;
    }
    .basket-titles .basket-header:nth-of-type(4) {
        width: 38%;
    }
}
@media(max-width:950px){
    .basket-item{
        flex-wrap: wrap;
    }
    .item{
        width: 100%;
        margin-bottom: 20px;
    }
    .itemphoto {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    .basket-titles{
        display: none;
    }
    .price{
        margin-left: auto;
    }
    .control{
        margin-right: auto;
    }
    .custom.quantity{
        margin: 0 20px;
    }
    .custom.sum{
        margin-right: 20px;
    }
}
@media(max-width: 520px){
    .basket-item{
        position: relative;
    }
    .control{
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .custom.sum {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    .custom.quantity {
        margin: 10px auto;
    }
    .price {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}