/* Isolated account/cart styling. Does not target menu, home, product or listing pages. */
.mag-account {
  --as-red: #c91f32;
  --as-red-dark: #a71828;
  --as-green: #238557;
  --as-green-dark: #1d7049;
  --as-ink: #24282f;
  --as-muted: #68707b;
  --as-line: #e3e6ea;
  --as-soft: #f6f7f8;
  --as-panel: #fff;
  max-width: 1180px;
  margin: 0 auto 56px;
  color: var(--as-ink);
  font-size: 15px;
  line-height: 1.45;
}

.mag-account,
.mag-account * {
  box-sizing: border-box;
}

.mag-account h1,
.mag-account h2 {
  margin: 0;
  color: var(--as-ink);
  letter-spacing: 0;
  line-height: 1.18;
}

.mag-account a {
  color: var(--as-ink);
}

.mag-login {
  max-width: 980px;
}

.mag-login-window {
  background: var(--as-panel);
  border: 1px solid var(--as-line);
  border-radius: 2px;
  box-shadow: none;
  overflow: hidden;
}

.mag-login-window > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mag-login-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--as-soft);
  border-bottom: 1px solid var(--as-line);
}

.mag-login-tabs label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--as-ink);
  border-right: 1px solid var(--as-line);
  border-bottom: 3px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.mag-login-tabs label:last-child {
  border-right: 0;
}

#mag-login-tab-returning:checked ~ .mag-login-tabs label[for="mag-login-tab-returning"],
#mag-login-tab-account:checked ~ .mag-login-tabs label[for="mag-login-tab-account"],
#mag-login-tab-guest:checked ~ .mag-login-tabs label[for="mag-login-tab-guest"] {
  color: var(--as-ink);
  background: #fff;
  border-bottom-color: var(--as-red);
  box-shadow: inset 0 -3px 0 var(--as-red);
}

.mag-login-panels {
  padding: 30px;
}

.mag-login-panel {
  display: none;
}

#mag-login-tab-returning:checked ~ .mag-login-panels .mag-login-panel-returning,
#mag-login-tab-account:checked ~ .mag-login-panels .mag-login-panel-account,
#mag-login-tab-guest:checked ~ .mag-login-panels .mag-login-panel-guest {
  display: block;
}

.mag-login-panel-head {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--as-line);
}

.mag-login-panel-head h1 {
  margin: 0 0 7px;
  padding: 0;
  border: 0;
  font-size: 26px;
  font-weight: 700;
}

.mag-login-panel-head p {
  max-width: 680px;
  margin: 0;
  color: var(--as-muted);
}

.mag-login-form-compact {
  max-width: 520px;
}

.mag-login-grid {
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.mag-login-card,
.mag-customer-card,
.mag-register-login,
.mag-register-main,
.mag-logoff-panel {
  background: var(--as-panel);
  border: 1px solid var(--as-line);
  border-radius: 2px;
  box-shadow: none;
}

.mag-login-card,
.mag-customer-card {
  padding: 28px;
}

.mag-login-card h1,
.mag-customer-card h2,
.mag-register-main h1 {
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--as-line);
  font-size: 24px;
  font-weight: 700;
}

.mag-customer-card h2 {
  max-width: 520px;
  font-size: 22px;
}

.mag-card-intro {
  margin: 0 0 18px;
  color: var(--as-muted);
}

.mag-card-intro p {
  margin: 0 0 9px;
}

.mag-card-intro ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.mag-form,
.mag-register-grid {
  display: grid;
  gap: 12px 16px;
  align-items: start;
}

.mag-form label,
.mag-form-code,
.mag-register-grid label,
.mag-register-code {
  display: grid;
  grid-template-rows: 18px minmax(40px, auto);
  gap: 5px;
  margin: 0 !important;
  color: var(--as-ink);
  font-size: 13px;
  font-weight: 700;
}

.mag-form label > span,
.mag-register-grid label > span {
  min-height: 18px;
  line-height: 18px;
}

.mag-account input[type="text"],
.mag-account input[type="email"],
.mag-account input[type="password"],
.mag-account input[type="tel"],
.mag-account select {
  width: 100% !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 8px 10px !important;
  line-height: 22px !important;
  color: var(--as-ink) !important;
  background: #fff !important;
  border: 1px solid #cfd5dc !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  vertical-align: top !important;
}

.mag-account select {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.mag-account input:focus,
.mag-account select:focus {
  border-color: var(--as-ink) !important;
  outline: 0;
}

.mag-login-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.mag-login-footer a,
.mag-text-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.mag-account .cssButton {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 3px !important;
  clip-path: none !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mag-account-panel .cssButton,
.mag-form-actions .cssButton,
.mag-order-actions .cssButton,
.mag-address-actions .cssButton,
.mag-panel-actions .cssButton {
  color: #fff !important;
  background: var(--as-red) !important;
}

.mag-account-panel .cssButton:hover,
.mag-form-actions .cssButton:hover,
.mag-order-actions .cssButton:hover,
.mag-address-actions .cssButton:hover,
.mag-panel-actions .cssButton:hover {
  background: var(--as-red-dark) !important;
}

.mag-primary-action .cssButton,
.mag-register-submit .cssButton,
.mag-empty-action .cssButton,
.mag-logoff-action .cssButton {
  color: #fff !important;
  background: var(--as-red) !important;
}

.mag-primary-action .cssButton:hover,
.mag-register-submit .cssButton:hover,
.mag-empty-action .cssButton:hover,
.mag-logoff-action .cssButton:hover {
  background: var(--as-red-dark) !important;
}

.mag-customer-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mag-tab-nav,
.mag-register-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 10px 0 22px;
  border: 1px solid var(--as-line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--as-soft);
}

.mag-tab-nav label,
.mag-register-tabs a,
.mag-register-tabs span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 0;
  border-right: 1px solid var(--as-line);
  color: var(--as-ink);
  background: var(--as-soft);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.mag-tab-nav label:last-child,
.mag-register-tabs a:last-child,
.mag-register-tabs span:last-child {
  border-right: 0;
}

#mag-tab-account:checked ~ .mag-tab-nav label[for="mag-tab-account"],
#mag-tab-guest:checked ~ .mag-tab-nav label[for="mag-tab-guest"],
.mag-register-tabs .active {
  color: #fff;
  background: var(--as-ink);
}

.mag-tab-panel {
  display: none;
}

#mag-tab-account:checked ~ .mag-tab-panel-account,
#mag-tab-guest:checked ~ .mag-tab-panel-guest {
  display: block;
}

.mag-customer-option,
.mag-tab-panel form {
  display: grid;
  gap: 14px;
}

.mag-tab-action,
.mag-customer-option .cssButtonPos,
.mag-customer-option [class^="cssButtonPos"] {
  margin-top: 12px;
}

.mag-tab-action .cssButton,
.mag-customer-option .cssButton {
  color: #fff !important;
  background: var(--as-green) !important;
}

.mag-tab-action .cssButton:hover,
.mag-customer-option .cssButton:hover {
  background: var(--as-green-dark) !important;
}

.mag-register-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.mag-register-login {
  padding: 22px;
}

.mag-register-login h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.mag-register-login p,
.mag-register-help {
  margin: 0 0 14px;
  color: var(--as-muted);
}

.mag-register-main {
  padding: 26px;
}

.mag-register-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mag-register-grid .wide,
.mag-register-code.wide {
  grid-column: 1 / -1;
}

.mag-register-section {
  margin: 0 0 18px;
  padding: 16px 18px;
  background: var(--as-soft);
  border: 1px solid var(--as-line);
  border-radius: 2px;
}

.mag-register-section h2 {
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--as-line);
  font-size: 17px;
}

.mag-register-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0;
}

.mag-register-check label {
  margin: 0;
}

.mag-register-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.mag-cart {
  max-width: 1220px;
}

.mag-cart-head h1 {
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--as-line);
  font-size: 42px;
  font-weight: 700;
}

.mag-cart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.mag-cart-toolbar .cssButton {
  color: #fff !important;
  background: var(--as-red) !important;
}

.mag-cart-reload {
  display: none !important;
}

.mag-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
  padding-right: 48px;
}

.mag-cart-maincol {
  display: contents;
}

.mag-cart-lines {
  grid-column: 1;
  min-width: 0;
}

.mag-cart-line {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--as-line);
}

.mag-cart-image img {
  display: block;
  width: 66px !important;
  max-width: 66px !important;
  height: 66px !important;
  object-fit: contain;
  border: 1px solid var(--as-line);
  border-radius: 0;
}

.mag-cart-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 148px;
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.mag-cart-title {
  min-width: 0;
}

.mag-cart-title a {
  color: var(--as-ink);
  text-decoration: none;
}

.mag-cart-title small {
  display: block;
  margin-top: 6px;
  color: var(--as-muted);
}

.mag-cart-price {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 0;
  text-align: right;
  white-space: nowrap;
}

.mag-cart-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.mag-qty-control {
  display: inline-grid;
  grid-template-columns: 32px 48px 32px;
  height: 34px;
  border: 1px solid #d6dbe1;
}

.mag-qty-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--as-ink);
  background: #fff;
  border: 0;
  cursor: pointer;
}

.mag-cart-qty {
  width: 48px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid #d6dbe1 !important;
  border-right: 1px solid #d6dbe1 !important;
  border-radius: 0 !important;
  text-align: center;
}

.mag-cart-delete a,
.mag-cart-delete .cssButton,
.mag-cart-delete button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  color: var(--as-ink) !important;
  background: var(--as-soft) !important;
  border: 1px solid var(--as-line) !important;
  border-radius: 2px !important;
  clip-path: none !important;
}

.mag-cart-delete .cssButtonText {
  display: none !important;
}

.mag-cart-totals {
  grid-column: 2;
  grid-row: 1;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 340px !important;
  margin: 0 !important;
  padding: 24px !important;
  float: none !important;
  background: var(--as-soft) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.mag-cart-summary-heading {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
}

.mag-cart-totals .ord_total_list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.mag-cart-totals .ord_total_list li {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  line-height: 1.35;
}

.mag-cart-totals .ord_total_list li.otl_row2,
.mag-cart-totals .ord_total_list li.otl_row3 {
  grid-template-columns: 1fr;
  gap: 5px;
}

.mag-cart-totals .otl_col1,
.mag-cart-totals .otl_col2,
.mag-cart-totals .otl_col3,
.mag-cart-totals .otl_col4 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mag-cart-totals select,
.mag-cart-totals .otl_col2 select,
.mag-cart-totals .otl_col4 select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.mag-cart-sidecol {
  grid-column: 2;
  grid-row: 2;
  width: 100% !important;
  max-width: 340px !important;
  min-width: 0 !important;
  justify-self: end;
}

.mag-cart-actions {
  display: grid;
  gap: 10px;
  width: 100% !important;
  max-width: 340px !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent;
  border: 0;
}

.mag-cart-checkout-action {
  order: 1;
  width: 100% !important;
  max-width: 340px !important;
}

.mag-cart-payment-actions {
  order: 2;
  display: grid;
  gap: 8px;
  width: 100% !important;
  max-width: 340px !important;
  overflow: visible !important;
}

.mag-paypal-action {
  display: block !important;
  width: 100% !important;
  max-width: 340px !important;
  margin: 0 !important;
  float: none !important;
  clear: both !important;
  position: relative !important;
  overflow: visible !important;
}

.mag-paypal-action iframe,
.mag-paypal-action button,
.mag-paypal-action a,
.mag-paypal-action > div {
  width: 100% !important;
  max-width: 340px !important;
  min-width: 0 !important;
  pointer-events: auto;
}

.mag-cart-checkout-action .cssButton {
  width: 100% !important;
  max-width: 340px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: var(--as-green) !important;
  border-radius: 3px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.mag-cart-checkout-action .cssButton:hover {
  background: var(--as-green-dark) !important;
}

.mag-cart-checkout-action .cssButtonIcon {
  margin-right: 8px;
}

.mag-empty,
.mag-logoff-panel {
  max-width: 760px;
  margin: 0 auto;
  min-height: 340px;
  padding: 64px 32px 76px;
  text-align: center;
}

.mag-logoff-panel {
  display: grid;
  align-content: center;
}

.mag-logoff-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--as-green);
  border-radius: 50%;
}

.mag-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--as-line);
}

.mag-page-head h1 {
  font-size: 42px;
  font-weight: 700;
}

.mag-page-head p,
.mag-muted {
  margin: 7px 0 0;
  color: var(--as-muted);
}

.mag-plain-link {
  color: var(--as-red) !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.mag-dashboard-grid,
.mag-form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.mag-account-panel {
  padding: 26px;
  background: var(--as-panel);
  border: 1px solid var(--as-line);
  border-radius: 2px;
}

.mag-account-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
}

.mag-account-panel p {
  margin: 0 0 8px;
}

.mag-narrow-panel {
  max-width: 680px;
}

.mag-section-space {
  margin-top: 24px;
}

.mag-section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mag-panel-actions,
.mag-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.mag-account-actions {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--as-line);
}

.mag-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0;
  color: var(--as-ink) !important;
  border-bottom: 1px solid var(--as-line);
  text-decoration: none;
  font-weight: 700;
}

.mag-action-row:hover {
  color: var(--as-red) !important;
}

.mag-danger-link {
  color: var(--as-red) !important;
}

.mag-order-cards,
.mag-viewed-products,
.mag-address-list {
  display: grid;
  gap: 14px;
}

.mag-order-card,
.mag-viewed-product,
.mag-address-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--as-line);
}

.mag-order-title {
  color: var(--as-ink) !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.mag-order-actions,
.mag-address-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mag-viewed-product {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
}

.mag-viewed-product img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  border: 1px solid var(--as-line);
}

.mag-address-card {
  align-items: start;
}

.mag-address-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.mag-address-card h3 span {
  color: var(--as-red);
  font-size: 13px;
}

.mag-address-card.selected {
  padding-left: 14px;
  border-left: 4px solid var(--as-red);
}

.mag-address-card .address,
.mag-address-card p {
  color: var(--as-muted);
}

.mag-pagination {
  margin-top: 20px;
}

.mag-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mag-payment-info {
  width: 100%;
  border-collapse: collapse;
}

.mag-payment-info td {
  padding: 6px 0;
  border-bottom: 1px solid var(--as-line);
}

.mag-detail-products {
  display: grid;
  gap: 0;
}

.mag-detail-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 130px 130px auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--as-line);
}

.mag-detail-product-head {
  color: var(--as-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mag-detail-name {
  min-width: 0;
}

.mag-detail-name small {
  display: block;
  margin-top: 5px;
  color: var(--as-muted);
}

.mag-detail-price {
  text-align: right;
  white-space: nowrap;
}

.mag-detail-totals {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.mag-detail-totals .ord_total_list {
  width: min(100%, 360px);
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.mag-detail-totals .ord_total_list li {
  display: flex !important;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--as-line);
}

.mag-empty p,
.mag-logoff-panel p {
  margin: 0 0 18px;
  color: var(--as-muted);
}

@media (max-width: 1199px) {
  .mag-cart-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    padding-right: 54px;
  }

  .mag-cart-main {
    grid-template-columns: minmax(0, 1fr) 110px 136px;
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .mag-customer-card {
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .mag-login-grid,
  .mag-register-layout,
  .mag-dashboard-grid,
  .mag-form-two,
  .mag-detail-grid,
  .mag-cart-layout {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .mag-cart-maincol {
    display: block;
  }

  .mag-cart-lines,
  .mag-cart-totals,
  .mag-cart-sidecol {
    grid-column: auto;
    grid-row: auto;
    max-width: none !important;
  }

  .mag-cart-actions,
  .mag-cart-payment-actions,
  .mag-cart-checkout-action,
  .mag-paypal-action,
  .mag-paypal-action iframe,
  .mag-paypal-action button,
  .mag-paypal-action a,
  .mag-paypal-action > div,
  .mag-cart-checkout-action .cssButton {
    max-width: none !important;
  }
}

@media (max-width: 767px) {
  .mag-account {
    margin-bottom: 34px;
  }

  .mag-login-card,
  .mag-customer-card,
  .mag-register-main,
  .mag-register-login {
    padding: 18px;
  }

  .mag-login-grid,
  .mag-register-layout {
    gap: 22px;
  }

  .mag-login-footer,
  .mag-register-submit {
    display: grid;
    justify-content: stretch;
  }

  .mag-primary-action .cssButton,
  .mag-register-submit .cssButton {
    width: 100% !important;
  }

  .mag-register-grid,
  .mag-cart-main,
  .mag-detail-product {
    grid-template-columns: 1fr;
  }

  .mag-detail-product-head {
    display: none;
  }

  .mag-detail-price {
    text-align: left;
  }

  .mag-page-head {
    display: grid;
    align-items: start;
  }

  .mag-page-head h1 {
    font-size: 32px;
  }

  .mag-cart-head h1 {
    font-size: 32px;
  }

  .mag-cart-layout {
    display: block;
    width: 100%;
    padding-right: 0 !important;
  }

  .mag-cart-maincol,
  .mag-cart-lines,
  .mag-cart-totals,
  .mag-cart-sidecol {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box;
  }

  .mag-cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .mag-cart-image img {
    width: 56px !important;
    max-width: 56px !important;
    height: 56px !important;
  }

  .mag-cart-price,
  .mag-cart-controls {
    justify-items: start;
    justify-content: flex-start;
    text-align: left;
  }

  .mag-cart-totals {
    margin-top: 22px !important;
    padding: 20px 16px !important;
    text-align: left !important;
  }

  .mag-cart-summary-heading {
    font-size: 26px;
    line-height: 1.15;
  }

  .mag-cart-totals .ord_total_list li,
  .mag-cart-totals .ord_total_list li.otl_row2,
  .mag-cart-totals .ord_total_list li.otl_row3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    text-align: left;
  }

  .mag-cart-totals .otl_col1,
  .mag-cart-totals .otl_col2,
  .mag-cart-totals .otl_col3,
  .mag-cart-totals .otl_col4 {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .mag-cart-totals .otl_col2,
  .mag-cart-totals .otl_col4 {
    justify-self: stretch;
  }

  .mag-cart-totals select,
  .mag-cart-totals .otl_col2 select,
  .mag-cart-totals .otl_col4 select {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .mag-cart-sidecol {
    margin-top: 14px !important;
  }

  .mag-cart-actions,
  .mag-cart-payment-actions,
  .mag-cart-checkout-action,
  .mag-paypal-action,
  .mag-cart-checkout-action .cssButton {
    width: 100% !important;
    max-width: 100% !important;
  }
}
