/* =========================================================
   TERM Publications - Shopping Cart Custom Overrides
   Purpose: Visually hide Shipping Info while keeping cart fields functional
   ========================================================= */

/*
  Do NOT use display:none here.
  iOS Safari / checkout validation may require the shipping option fields
  to remain rendered/focusable in the page.
*/

/* Shopping Cart: visually hide Shipping Info while keeping fields rendered */

.cart-shipping-info-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.cart-summary-full {
  width: 100% !important;
}