/* Custom code goes here - paste your css code below in line 3 */


/* Hide the promo code block on the shopping cart overview page */
#main .cart-grid .block-promo,
#js-checkout-summary .block-promo {
    display: none !important;
}
/* remove the lables "no taxes" */
.price_tax_label {
    display: none !important;
}
/* remove the prices of delivery */
#cart-subtotal-shipping {
    display: none !important;
}
/* Target the delivery option row with ID 30 and hide its carrier-price */
.delivery-option:has(#delivery_option_32) .carrier-price {
  display: none !important;
}
/* Hide Best Sellers block on screens smaller than 768px */
@media (max-width: 767.98px) {
  #angarbest-column {
    display: none !important;
  }
}
