/* ---------------------------------
  Woocommerce Overrides
--------------------------------- */

/* hide the "Free" shipping label in checkout for AIS Store */
.wc-block-checkout__shipping-option--free {
  display: none;
}

/* hide the "Free" shipping label in checkout sidebar for AIS Store */
.wc-block-components-totals-shipping .wc-block-components-totals-item__value {
  display: none;
}
.wc-block-components-checkout-place-order-button.wc-block-components-button:not(
    .is-link
  ) {
  cursor: pointer;
  background: #ffc240;
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}
.wc-block-components-checkout-place-order-button.wc-block-components-button:not(
    .is-link
  ):hover {
  color: #fff;
  background-color: #302d27;
}
