/* Scope to the standard cart wrapper to avoid breaking other pages */
#order-standard_cart .products.row div.col-md-6,
#order-standard_cart .products.row div.col-md-4,
#order-standard_cart .products.row div.col-sm-6 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Tablet */
@media (max-width: 991.98px) {
  #order-standard_cart .row.products .col-md-6,
  #order-standard_cart .row.products .col-md-4,
  #order-standard_cart .row.products .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  #order-standard_cart .row.products .col-md-6,
  #order-standard_cart .row.products .col-md-4,
  #order-standard_cart .row.products .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
