.cart-product__col--wrapper{
    display: flex;
    justify-content: left;
    width: 60%;
}
.cart-product__col--wrapper .cart-product__col_number{
    width: 10%;
    order: 1;
}

.cart-product__col_name--wrapper{
    order: 2;
    width: 90%;
    display: flex;
    justify-content: left;
}
.cart-product__col--wrapper .cart-product__col_name{
    width: 80%;
    order: 1;
}
.cart-product__col--wrapper .cart-product__col_articul{
    width: 20%;
    order: 2;
}

.cart-product__col--wrapper-price{
    display: flex;
    justify-content: left;
    width: 35%;
}
.cart-product__col--wrapper-price .cart-product__col_price{
    width: 30%;
}
.cart-product__col--wrapper-price .cart-product__col_quantity{
    width: 40%;
}
.cart-product__col--wrapper-price .cart-product__col_sum{
    width: 30%;
}

@media screen and (max-width: 992px) {
    .cart-product__col_number img{
        border-radius: 0 !important;
    }
    .cart-product__col--wrapper{
        width: 100%;
    }
    .cart-product__col_name--wrapper{
        flex-wrap: wrap;
        width: 100%;
    }
    .cart-product__col--wrapper .cart-product__col_articul{
        display: block;
        width: 100%;
        order: 1;
    }
    .cart-product__col--wrapper .cart-product__col_name{
        width: 100%;
        order: 2;
    }
    /*sum block mobile*/
    .cart-product__col--wrapper-price{
        justify-content: left;
        width: 100%;
    }
    .cart-product__col--wrapper-price .cart-product__col_quantity{
        position: absolute;
        right: 8px;
        bottom: 3px;
    }
    .cart-product__col--wrapper-price .cart-product__col_price{
        width: 80px;
        order: 1;
    }
    .cart-product__col--wrapper-price .cart-product__col_sum{
        width: 100px;
        order: 2;
    }

        /*picture fix for mobile*/
    .cart-product__col.cart-product__col_number {
      width: 80px;
      text-align: left;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
    }
    .cart-product__col_number .cart-product__number{
        margin-right: 0;
        margin-bottom: 10px;
    }
    .cart-product__col.cart-product__col_number img{
        margin-left: 0;
    }
}