.checkout-cart {
  background: #FFFFFF;
  margin-bottom: 30px;
}
.checkout-cart__heading {
  display: flex;
  list-style: none;
  padding: 15px 30px;
  margin: 0;
}
.checkout-cart__heading li {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.8);
}
.checkout-cart__image {
  text-align: center;
  width: 92px;
}
.checkout-cart__name {
  width: 336px;
  padding: 0 40px 0 20px;
}
.checkout-cart__cost {
  width: 154px;
  text-align: center;
}
.checkout-cart__quantity {
  width: 80px;
}
.checkout-cart__total {
  width: 157px;
  text-align: center;
}
.checkout-cart .cart-item {
  padding-left: 30px;
  padding-right: 30px;
}
.checkout-cart .checkout-cart__image, .checkout-cart .cart-item__image {
  order: 1;
}
.checkout-cart .checkout-cart__name, .checkout-cart .cart-item__title {
  order: 2;
}
.checkout-cart .checkout-cart__quantity, .checkout-cart .cart-item__quantity {
  order: 4;
}
.checkout-cart .checkout-cart__cost, .checkout-cart .cart-item__price {
  order: 3;
}
.checkout-cart .checkout-cart__total, .checkout-cart .cart-item__total {
  order: 5;
}
.checkout-cart .cart-item__remove {
  order: 6;
}