/* Audiostreamen Cart v3: small scoped layer over WHMCS standard_cart. */
body.as-cart-page {
  --as-cart-page-gutter: clamp(16px, 2.2vw, 40px);
  --as-cart-page-max: 1760px;
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.as-cart-page *,
body.as-cart-page *::before,
body.as-cart-page *::after {
  box-sizing: border-box;
}

body.as-cart-page .as-cart-shell,
body.as-cart-page .as-cart-main,
body.as-cart-page #main-body {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

body.as-cart-page #main-body > .container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, calc(var(--as-cart-page-max) + (var(--as-cart-page-gutter) * 2)));
  padding-left: var(--as-cart-page-gutter);
  padding-right: var(--as-cart-page-gutter);
  width: auto;
}

body.as-cart-page #main-body > .container > .row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

body.as-cart-page #main-body .primary-content {
  box-sizing: border-box;
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/html/assets/fonts/inter-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700 900;
  src: url("/html/assets/fonts/inter-700.woff2") format("woff2");
}

.as-checkout-header-wrap {
  background: #fff;
  border-bottom: 1px solid #dfe8e3;
  position: relative;
  z-index: 20;
}

.as-checkout-header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--as-cart-page-max);
  min-height: 76px;
  padding: 14px 22px;
}

.as-checkout-logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.as-checkout-logo img {
  display: block;
  height: auto;
  max-height: 42px;
  max-width: 210px;
  width: auto;
}

.as-checkout-nav,
.as-checkout-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.as-checkout-nav a,
.as-checkout-actions a {
  align-items: center;
  border-radius: 8px;
  color: #171918;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  min-height: 38px;
  padding: 8px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.as-checkout-nav a:hover,
.as-checkout-actions a:hover {
  color: #087568;
  text-decoration: none;
}

.as-checkout-phone {
  color: #5f6b66 !important;
}

.as-checkout-link {
  border: 1px solid #cfdad4;
}

.as-checkout-cart {
  background: #bd3f32;
  color: #fff !important;
}

.as-checkout-cart:hover {
  background: #9f3329;
  color: #fff !important;
}

.as-checkout-cart span {
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
  margin-left: 6px;
  min-width: 22px;
  padding: 1px 7px;
  text-align: center;
}

.as-checkout-footer {
  background: #171918;
  color: #d8e4df;
  margin-top: 30px;
}

.as-checkout-footer-inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--as-cart-page-max);
  padding: 24px 22px;
}

.as-checkout-footer strong {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 4px;
}

.as-checkout-footer p {
  color: #d8e4df;
  font-size: 14px;
  margin: 0;
}

.as-checkout-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.as-checkout-footer a {
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  padding: 7px 9px;
  text-decoration: none;
}

.as-checkout-footer a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  text-decoration: none;
}

#order-standard_cart {
  --as-bg: #f6faf8;
  --as-surface: #ffffff;
  --as-ink: #171918;
  --as-muted: #5f6b66;
  --as-line: #dfe8e3;
  --as-line-strong: #c8d7d0;
  --as-teal: #087568;
  --as-teal-dark: #06594f;
  --as-red: #bd3f32;
  --as-yellow: #f3bd36;
  --as-shadow: 0 18px 46px rgba(23, 25, 24, 0.11);
  color: var(--as-ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

#order-standard_cart *,
#order-standard_cart *::before,
#order-standard_cart *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

#order-standard_cart {
  background: var(--as-bg);
  border-radius: 8px;
  padding: 24px;
}

#order-standard_cart.as-store-listing,
#order-standard_cart.is-fullwidth {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--as-cart-page-max);
  margin: 0 auto 34px;
}

#order-standard_cart > .row {
  display: flex;
  gap: 24px;
  margin-left: 0;
  margin-right: 0;
}

#order-standard_cart .cart-sidebar {
  flex: 0 0 245px;
  max-width: 245px;
  padding-left: 0;
  padding-right: 0;
}

#order-standard_cart.as-store-listing .cart-sidebar,
#order-standard_cart.is-fullwidth > .row > .cart-sidebar {
  display: none;
}

#order-standard_cart.as-store-listing .sidebar-collapsed,
#order-standard_cart.is-fullwidth .sidebar-collapsed {
  display: none;
}

#order-standard_cart.as-store-listing .cart-body,
#order-standard_cart.is-fullwidth > .row > .cart-body {
  flex-basis: 100%;
  width: 100%;
}

#order-standard_cart .cart-body {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

#order-standard_cart .secondary-cart-body {
  width: calc(100% - 380px);
  padding-left: 0;
}

#order-standard_cart .secondary-cart-sidebar {
  width: 380px;
  padding-right: 0;
}

@media (min-width: 992px) {
  #order-standard_cart #frmConfigureProduct > .row,
  #order-standard_cart .cart-body > .row {
    align-items: flex-start;
  }

  #order-standard_cart .secondary-cart-sidebar {
    align-self: flex-start;
    max-height: calc(100vh - 96px);
    overflow: auto;
    position: sticky;
    top: 18px;
  }

  #order-standard_cart #scrollingPanelContainer,
  #order-standard_cart #orderSummary {
    margin-top: 0 !important;
  }
}

#order-standard_cart #frmConfigureProduct > .row {
  display: flex;
  gap: 22px;
  margin-left: 0;
  margin-right: 0;
}

#order-standard_cart #frmConfigureProduct .secondary-cart-body,
#order-standard_cart #frmConfigureProduct .secondary-cart-sidebar {
  padding-left: 0;
  padding-right: 0;
}

#order-standard_cart .as-cart-intro,
#order-standard_cart .header-lined {
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 25, 24, 0.07);
  margin-bottom: 18px;
  padding: 22px;
}

#order-standard_cart .as-cart-intro {
  border-top: 4px solid var(--as-teal);
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#order-standard_cart .as-cart-intro > * {
  margin: 0;
}

#order-standard_cart .as-checkout-steps {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 18px;
  overflow: hidden;
  padding: 0;
}

#order-standard_cart .as-checkout-steps li {
  align-items: center;
  border-left: 1px solid var(--as-line);
  color: var(--as-muted);
  display: flex;
  font-weight: 800;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
}

#order-standard_cart .as-checkout-steps li:first-child {
  border-left: 0;
}

#order-standard_cart .as-checkout-steps span {
  align-items: center;
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 999px;
  color: var(--as-teal-dark);
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 13px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

#order-standard_cart .as-checkout-steps .is-active {
  background: #f6faf8;
  color: var(--as-ink);
}

#order-standard_cart .as-checkout-steps .is-active span {
  background: var(--as-teal);
  border-color: var(--as-teal);
  color: #fff;
}

#order-standard_cart .as-checkout-steps .is-complete {
  color: var(--as-ink);
}

#order-standard_cart .as-checkout-steps .is-complete span {
  background: #171918;
  border-color: #171918;
  color: #fff;
}

#order-standard_cart .header-lined h1,
#order-standard_cart .as-cart-title {
  border: 0;
  color: var(--as-ink);
  font-size: clamp(1.25rem, 5vw, 2.125rem) !important;
  font-weight: 850;
  line-height: 1.5 !important;
  margin: 0 0 12px !important;
  padding: 0;
}

#order-standard_cart .as-cart-review-intro h1,
#order-standard_cart #as-cart-review-title {
  font-size: clamp(1.375rem, 1.6vw, 1.75rem) !important;
  line-height: 1.25 !important;
  margin: 0 0 8px !important;
}

#order-standard_cart .as-cart-intro .as-cart-title {
  margin-block-end: 12px !important;
}

#order-standard_cart .header-lined p,
#order-standard_cart .as-cart-lead {
  color: rgb(70, 79, 75) !important;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 !important;
  max-width: 820px;
}

#order-standard_cart .as-cart-intro .as-cart-lead {
  margin-top: 0 !important;
}

@container (max-width: 520px) {
  #order-standard_cart .as-cart-intro {
    gap: 10px;
    padding: 18px;
  }

  #order-standard_cart .as-cart-intro .as-cart-title {
    line-height: 1.45 !important;
  }
}

@container (max-width: 400px) {
  #order-standard_cart .as-cart-intro .as-cart-title {
    line-height: 1.4 !important;
  }
}

#order-standard_cart .as-cart-review-intro {
  align-items: center;
  background: #fbfdfc;
  border-bottom: 1px solid var(--as-line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  margin-block-end: 18px;
  padding-block: 20px;
  padding-inline: 22px;
}

#order-standard_cart .as-cart-review-intro .btn {
  align-items: center;
  align-self: center;
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  color: var(--as-teal-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 850;
  justify-content: center;
  min-height: 40px;
  padding-block: 8px;
  padding-inline: 12px;
  text-align: center;
  text-decoration: none;
}

#order-standard_cart .as-cart-review-intro .btn:hover {
  background: #dff0eb;
  color: var(--as-teal-dark);
  text-decoration: none;
}

#order-standard_cart .as-cart-review-intro .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(8, 117, 104, 0.22);
  outline: 2px solid var(--as-teal);
  outline-offset: 2px;
}

#order-standard_cart .as-cart-review-copy {
  flex: 1 1 420px;
  max-width: 820px;
  min-width: 0;
}

#order-standard_cart .as-cart-review-intro .as-eyebrow {
  font-size: 13px;
  font-weight: 850;
}

#order-standard_cart .as-eyebrow {
  color: rgb(6, 89, 79) !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

#order-standard_cart .as-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

#order-standard_cart .as-trust-row span {
  align-items: center;
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  color: var(--as-teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  min-height: 34px;
  padding: 7px 10px;
}

#order-standard_cart .card-sidebar,
#order-standard_cart .panel-sidebar {
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

#order-standard_cart .cart-sidebar .panel-heading,
#order-standard_cart .card-sidebar .card-header {
  background: #171918;
  border: 0;
  color: #fff;
  padding: 14px 16px;
}

#order-standard_cart .cart-sidebar .panel-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

#order-standard_cart .cart-sidebar .list-group-item {
  border-color: var(--as-line);
  color: var(--as-ink);
  font-weight: 700;
  padding: 12px 16px;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover,
#order-standard_cart .cart-sidebar .list-group-item.active:focus {
  background: var(--as-teal);
  border-color: var(--as-teal);
  color: #fff;
}

#order-standard_cart .products {
  margin-top: 20px;
}

#order-standard_cart .products .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

#order-standard_cart .products .as-product-column {
  display: flex;
  padding-left: 8px;
  padding-right: 8px;
}

#order-standard_cart .products .product {
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 25, 24, 0.08);
  display: flex;
  flex-direction: column;
  height: auto;
  margin-bottom: 16px;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

#order-standard_cart .products .product:hover,
#order-standard_cart .products .product:focus-within {
  border-color: #b8d9d1;
  box-shadow: 0 20px 42px rgba(8, 117, 104, 0.18);
  transform: translateY(-3px);
}

#order-standard_cart .products .product.as-product-card-featured {
  border-color: var(--as-teal);
  box-shadow: 0 16px 34px rgba(8, 117, 104, 0.16);
}

#order-standard_cart .products .product.as-product-card-featured:hover,
#order-standard_cart .products .product.as-product-card-featured:focus-within {
  box-shadow: 0 22px 46px rgba(8, 117, 104, 0.24);
}

#order-standard_cart .products .product header {
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--as-line);
  color: var(--as-ink);
  min-height: 86px;
  padding: 20px 20px 14px;
}

#order-standard_cart .products .product .as-product-name {
  color: var(--as-ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.18;
  margin: 0;
}

#order-standard_cart .products .product header span {
  color: var(--as-ink);
}

#order-standard_cart .as-product-title-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

#order-standard_cart .as-product-title-row em {
  background: #fff6da;
  border: 1px solid #f1cf6b;
  border-radius: 8px;
  color: #6d4b00;
  flex: 0 0 auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
  padding: 5px 8px;
}

#order-standard_cart .products .product .qty {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 12px;
  padding: 5px 8px;
}

#order-standard_cart .products .product div.product-desc {
  color: #4f5b56;
  flex: 1 1 auto;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  padding: 18px 20px 10px;
}

#order-standard_cart .products .product div.product-desc p,
#order-standard_cart .products .product .as-product-description {
  color: #4f5b56;
  margin: 0;
}

#order-standard_cart .products .product .as-product-description br {
  display: none;
}

#order-standard_cart .products .product .as-product-description ul {
  margin: 0;
  padding: 0;
}

#order-standard_cart .products .product .as-product-description li {
  align-items: flex-start;
  border-top: 1px solid var(--as-line);
  color: var(--as-ink);
  display: flex;
  gap: 9px;
  justify-content: flex-start;
  line-height: 1.45;
  list-style: none;
  padding: 10px 0;
}

#order-standard_cart .products .product .as-product-description li:first-child {
  border-top: 0;
  padding-top: 0;
}

#order-standard_cart .products .product .as-product-description li i {
  color: var(--as-teal);
  flex: 0 0 auto;
  margin-top: 3px;
}

#order-standard_cart .products .product div.product-desc ul {
  margin: 0;
  padding-left: 0;
}

#order-standard_cart .products .product div.product-desc > ul:empty {
  display: none;
}

#order-standard_cart .products .product div.product-desc li {
  border-top: 1px solid var(--as-line);
  color: var(--as-ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  padding: 9px 0;
}

#order-standard_cart .products .product .feature-value {
  color: var(--as-teal);
  font-weight: 850;
}

#order-standard_cart .products .product footer {
  align-items: stretch;
  background: #fbfdfc;
  border-top: 1px solid var(--as-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding: 18px 20px;
}

#order-standard_cart .products .product div.product-pricing {
  color: var(--as-muted);
  margin: 0;
  padding: 0;
  text-align: left;
}

#order-standard_cart .products .product div.product-pricing span.price {
  color: var(--as-ink);
  display: block;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.1;
}

#order-standard_cart .products .product .btn-order-now {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

#order-standard_cart .products .product .btn-order-now:focus-visible {
  box-shadow: 0 0 0 3px rgba(189, 63, 50, 0.22);
  outline: 2px solid var(--as-red);
  outline-offset: 2px;
}

#order-standard_cart .btn,
#order-standard_cart button,
#order-standard_cart input,
#order-standard_cart select,
#order-standard_cart textarea {
  border-radius: 8px;
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-success,
#order-standard_cart .btn-order-now,
#order-standard_cart .btn-checkout,
#order-standard_cart #btnCompleteProductConfig {
  background: var(--as-red);
  border-color: var(--as-red);
  color: #fff;
  font-weight: 850;
  min-height: 42px;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-order-now:hover,
#order-standard_cart .btn-checkout:hover,
#order-standard_cart #btnCompleteProductConfig:hover {
  background: #9f3329;
  border-color: #9f3329;
  color: #fff;
}

#order-standard_cart .btn-link {
  color: var(--as-teal);
}

#order-standard_cart .field-container,
#order-standard_cart .billing-cycle-card,
#order-standard_cart .option-card,
#order-standard_cart .product-info,
#order-standard_cart .order-summary,
#order-standard_cart .view-cart-items,
#order-standard_cart .view-cart-items-header,
#order-standard_cart .panel,
#order-standard_cart .alert {
  border-radius: 8px;
}

#order-standard_cart .as-config-intro {
  margin-bottom: 20px;
}

#order-standard_cart .as-config-intro p:not(.as-eyebrow) {
  color: var(--as-muted);
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin: 10px 0 0;
}

#order-standard_cart .uitleg-banner {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-left: 4px solid var(--as-teal);
  border-radius: 8px;
  color: var(--as-muted);
  margin-bottom: 16px;
  padding: 16px;
}

#order-standard_cart .uitleg-banner ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
}

#order-standard_cart .uitleg-banner li {
  list-style: none;
}

#order-standard_cart .product-info {
  margin-bottom: 16px;
  overflow: hidden;
}

#order-standard_cart .as-config-product-note {
  border-left: 4px solid var(--as-teal);
  padding: 16px 18px;
}

#order-standard_cart .as-config-product-note strong {
  color: var(--as-ink);
  display: block;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  margin-bottom: 6px;
}

#order-standard_cart .as-config-product-note p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

#order-standard_cart .product-info .collapsible-toggle {
  align-items: center;
  background: #ffffff;
  border: 0;
  color: var(--as-ink);
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 14px 16px;
  width: 100%;
}

#order-standard_cart .product-info .product-title {
  font-size: 18px;
  font-weight: 850;
}

#order-standard_cart .product-info .collapsible-content {
  border-top: 1px solid var(--as-line);
  color: var(--as-muted);
  padding: 14px 16px;
}

#order-standard_cart .product-info .collapsible-content br {
  display: none;
}

#order-standard_cart .product-info .collapsible-content p {
  margin: 0;
}

#order-standard_cart .product-info .collapsible-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

#order-standard_cart .product-info .collapsible-content li {
  color: var(--as-ink);
  list-style: none;
}

#order-standard_cart .field-container,
#order-standard_cart .billing-cycle-card,
#order-standard_cart .option-card,
#order-standard_cart .product-info,
#order-standard_cart .view-cart-items,
#order-standard_cart .panel {
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  box-shadow: none;
}

#order-standard_cart #frmConfigureProduct .field-container,
#order-standard_cart #frmConfigureProduct .billing-cycle-card,
#order-standard_cart #frmConfigureProduct .option-card {
  background: #f9fbfb;
  border-color: #e0e6e3;
  box-shadow: 0 4px 12px rgba(23, 25, 24, 0.03);
}

#order-standard_cart #frmConfigureProduct .field-container {
  padding: 24px;
}

#order-standard_cart .option-card {
  margin-bottom: 14px;
  padding: 18px;
}

#order-standard_cart #frmConfigureProduct .option-card {
  margin-bottom: 16px;
  padding: 20px;
}

#order-standard_cart .billing-cycle-card {
  padding: 18px;
}

#order-standard_cart #frmConfigureProduct .billing-cycle-card {
  padding: 24px;
}

#order-standard_cart .as-option-section {
  margin-bottom: 18px;
}

#order-standard_cart #frmConfigureProduct .as-option-section {
  margin-bottom: 22px;
}

#order-standard_cart .as-option-section-heading {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin: 0 0 10px;
}

#order-standard_cart .as-option-section-heading > span {
  align-items: center;
  background: #171918;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 32px;
  font-size: 13px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  margin-top: 0;
  width: 32px;
}

#order-standard_cart .as-option-section-heading h2 {
  color: var(--as-ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
  margin: 0;
}

#order-standard_cart .as-option-section-heading p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 2px 0 0;
}

#order-standard_cart .billing-cycle-row {
  align-items: flex-end;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, auto);
}

#order-standard_cart .billing-cycle-row .form-group {
  margin-bottom: 0;
}

#order-standard_cart .billing-cycle-selected {
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  color: var(--as-teal-dark);
  min-height: 42px;
  padding: 10px 12px;
}

#order-standard_cart .billing-cycle-selected .label {
  background: transparent;
  color: var(--as-teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 750;
  padding: 0;
}

#order-standard_cart .billing-cycle-selected .price {
  color: var(--as-ink);
  display: block;
  font-size: 15px;
  font-weight: 850;
}

#order-standard_cart .option-card label,
#order-standard_cart .billing-cycle-label,
#order-standard_cart label {
  color: var(--as-ink);
  font-weight: 800;
}

#order-standard_cart .billing-cycle-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 7px;
}

#order-standard_cart .select-inline.custom-select,
#order-standard_cart select.custom-select {
  min-height: 46px;
  padding: 10px 12px;
}

#order-standard_cart .as-option-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 4px;
}

#order-standard_cart .as-option-title-row label,
#order-standard_cart .as-option-title-row .as-option-label {
  color: var(--as-ink);
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

#order-standard_cart .as-option-kicker {
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 999px;
  color: var(--as-teal-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 5px 8px;
}

#order-standard_cart .option-help,
#order-standard_cart .field-help-text {
  color: var(--as-muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin: 5px 0 8px;
}

#order-standard_cart .option-choice {
  align-items: flex-start;
  background: #fbfdfc;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  margin: 8px 0;
  padding: 11px 12px;
}

#order-standard_cart .as-choice-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

#order-standard_cart .as-choice-list .option-choice {
  margin: 0;
}

#order-standard_cart .as-choice-copy {
  color: var(--as-ink);
  display: block;
  min-width: 0;
}

#order-standard_cart .option-choice:hover,
#order-standard_cart .option-choice:focus-within {
  border-color: var(--as-teal);
}

#order-standard_cart .option-choice input {
  margin-top: 3px;
}

#order-standard_cart .option-price {
  color: var(--as-teal);
  display: inline-block;
  font-weight: 850;
  margin-left: 4px;
}

#order-standard_cart .form-control,
#order-standard_cart .field,
#order-standard_cart select {
  border: 1px solid #cfdad4;
  box-shadow: none;
  min-height: 42px;
}

#order-standard_cart .form-control:focus,
#order-standard_cart .field:focus,
#order-standard_cart select:focus {
  border-color: var(--as-teal);
  box-shadow: 0 0 0 3px rgba(8, 117, 104, 0.16);
  outline: 0;
}

#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
  background: transparent;
  color: var(--as-ink);
  font-size: 18px;
  font-weight: 850;
  padding: 0;
}

#order-standard_cart .sub-heading,
#order-standard_cart .sub-heading-borderless {
  border-bottom: 2px solid var(--as-line);
  margin: 14px 0 12px;
  padding-bottom: 8px;
}

#order-standard_cart #frmConfigureProduct .as-option-section .sub-heading.pb-1 {
  border-bottom: 0;
  margin: 0 0 12px;
  padding-bottom: 0 !important;
}

#order-standard_cart #frmConfigureProduct .as-option-section .sub-heading.pb-1 span {
  color: #5f6b66;
  font-size: 13px;
  font-weight: 700;
}

#order-standard_cart .order-summary {
  background: #fff;
  border: 1px solid var(--as-line);
  box-shadow: 0 14px 32px rgba(23, 25, 24, 0.09);
  color: #111827;
  padding: 18px;
  position: static;
}

#order-standard_cart .order-summary h2,
#order-standard_cart .order-summary .product-name,
#order-standard_cart .order-summary .total-due-today .amt {
  color: #111827;
}

#order-standard_cart .order-summary .product-group,
#order-standard_cart .summary-container,
#order-standard_cart .order-summary .summary-totals {
  color: #111827;
}

#order-standard_cart .order-summary .summary-container .clearfix,
#order-standard_cart .order-summary .summary-totals .clearfix {
  color: #111827;
}

#order-standard_cart .order-summary .total-due-today {
  border-top: 1px solid var(--as-line);
  color: #111827;
  margin-top: 14px;
  padding-top: 14px;
}

#order-standard_cart .as-summary-actions {
  border-top: 1px solid var(--as-line);
  margin-top: 14px;
  padding-top: 14px;
}

#order-standard_cart .as-summary-actions .btn {
  width: 100%;
}

#order-standard_cart .as-summary-actions p {
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
  text-align: center;
}

#order-standard_cart .view-cart-items-header {
  display: none;
}

#order-standard_cart .view-cart-items {
  border: 0;
  display: grid;
  gap: 12px;
  overflow: visible;
}

#order-standard_cart .view-cart-items .item {
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.05);
  padding: 18px;
}

#order-standard_cart .view-cart-items .item:first-child {
  border-top: 1px solid var(--as-line);
}

#order-standard_cart .view-cart-items .item-title {
  color: var(--as-ink);
  display: block;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

#order-standard_cart .view-cart-items .item-group,
#order-standard_cart .view-cart-items .item-domain,
#order-standard_cart .view-cart-items .cycle {
  color: var(--as-muted);
}

#order-standard_cart .view-cart-items .item-config {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

#order-standard_cart .view-cart-items .item-config-row {
  align-items: center;
  background: #f8fbfa;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  color: var(--as-ink);
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(180px, 1fr) minmax(190px, auto);
  padding: 9px 12px;
}

#order-standard_cart .view-cart-items .cfg-bullet,
#order-standard_cart .view-cart-items .cfg-sep {
  color: var(--as-muted);
}

#order-standard_cart .view-cart-items .cfg-name {
  min-width: 0;
  font-weight: 800;
}

#order-standard_cart .view-cart-items .cfg-value {
  min-width: 0;
  text-align: right;
}

#order-standard_cart .item-price {
  color: var(--as-ink);
  font-weight: 850;
  text-align: right;
}

#order-standard_cart .item-price .price-wrap {
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  display: inline-block;
  min-width: 124px;
  padding: 9px 10px;
  text-align: right;
}

#order-standard_cart .item-price .cycle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

#order-standard_cart .empty-cart {
  margin-top: 12px;
  text-align: right;
}

#order-standard_cart .view-cart-tabs {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  margin-top: 18px;
  padding: 16px;
}

#order-standard_cart .as-promo-card h2 {
  color: var(--as-ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  margin: 0 0 12px;
}

#order-standard_cart .view-cart-tabs .nav-tabs {
  border-bottom: 1px solid var(--as-line);
  margin-bottom: 16px;
}

#order-standard_cart.is-cart-view .cart-body > .row {
  gap: 28px;
}

#order-standard_cart.is-cart-view .secondary-cart-body {
  width: calc(100% - 410px);
}

#order-standard_cart.is-cart-view .secondary-cart-sidebar {
  width: 410px;
}

#order-standard_cart .as-cart-section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
}

#order-standard_cart .as-cart-section-heading h2 {
  color: var(--as-ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.2;
  margin: 0;
}

#order-standard_cart .as-cart-section-heading p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 0 0;
}

#order-standard_cart.is-cart-view .as-cart-review-intro {
  border-top: 4px solid var(--as-teal);
}

#order-standard_cart.is-cart-view .view-cart-items {
  background: transparent;
  border: 0;
  box-shadow: none;
}

#order-standard_cart.is-cart-view .view-cart-items .item {
  border-color: #d5e3dd;
  box-shadow: 0 14px 34px rgba(23, 25, 24, 0.07);
  overflow: hidden;
  padding: 0;
}

#order-standard_cart.is-cart-view .view-cart-items .item > .row {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
  min-height: 142px;
}

#order-standard_cart.is-cart-view .view-cart-items .item > .row > [class*="col-"] {
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
  padding: 22px;
}

#order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-price {
  align-items: flex-end;
  background: #f8fbfa;
  border-left: 1px solid var(--as-line);
  display: flex;
  flex: 0 0 190px;
  flex-direction: column;
  justify-content: space-between;
  max-width: 190px;
  text-align: right;
}

#order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-qty {
  align-items: center;
  background: #f8fbfa;
  border-left: 1px solid var(--as-line);
  display: grid;
  flex: 0 0 136px;
  gap: 8px;
  justify-items: center;
  max-width: 136px;
  padding-left: 14px;
  padding-right: 14px;
}

#order-standard_cart.is-cart-view .view-cart-items .item-qty .form-control {
  background: #fff;
  border: 1px solid #cddcd8;
  border-radius: 6px;
  color: var(--as-ink);
  font-size: 16px;
  font-weight: 800;
  height: 42px;
  margin: 0;
  max-width: 74px;
  padding: 8px 6px;
  width: 74px;
}

#order-standard_cart.is-cart-view .view-cart-items .item-qty .btn {
  align-items: center;
  background: #f0f4f3;
  border: 1px solid #cddcd8;
  border-radius: 6px;
  color: #06594f;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  min-height: 34px;
  padding: 7px 8px;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  width: 100%;
}

#order-standard_cart.is-cart-view .view-cart-items .item > .row > .col-sm-1:not(.item-qty) {
  align-items: center;
  background: #f8fbfa;
  border-left: 1px solid var(--as-line);
  display: flex;
  flex: 0 0 54px;
  justify-content: center;
  max-width: 54px;
  padding: 18px 10px;
}

#order-standard_cart.is-cart-view .view-cart-items .item-title {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap;
  font-size: 22px;
  gap: 10px !important;
  width: 100%;
}

#order-standard_cart.is-cart-view .view-cart-items .item-title > a:first-of-type {
  margin-left: auto;
}

#order-standard_cart.is-cart-view .view-cart-items .item-title .visible-xs-inline {
  flex: 0 0 auto;
  min-width: 0;
}

#order-standard_cart.is-cart-view .view-cart-items .item-title .btn {
  align-items: center;
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  color: var(--as-teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 5px;
  line-height: 1;
  min-height: 32px;
  padding: 7px 9px;
  text-decoration: none;
}

#order-standard_cart.is-cart-view .view-cart-items .item-config-row {
  align-items: start !important;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eee !important;
  border-radius: 0;
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: 24px minmax(0, 1fr) auto !important;
  padding: 8px 0 !important;
}

#order-standard_cart.is-cart-view .view-cart-items .cfg-sep {
  display: none !important;
}

#order-standard_cart.is-cart-view .view-cart-items .cfg-name {
  color: #333 !important;
  display: flex !important;
  flex-direction: column !important;
  font-weight: 400 !important;
  line-height: 1.35;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

#order-standard_cart.is-cart-view .view-cart-items .cfg-value {
  color: #000 !important;
  font-weight: 700 !important;
  justify-self: end;
  max-width: 520px;
  text-align: right !important;
}

#order-standard_cart.is-cart-view .view-cart-items .item-group,
#order-standard_cart.is-cart-view .view-cart-items .item-domain {
  align-items: center;
  background: #f3f7f5;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  min-height: 30px;
  padding: 6px 9px;
}

#order-standard_cart.is-cart-view .item-price .price-wrap {
  background: #fff;
  border-color: #cae5de;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.05);
  min-width: 138px;
  padding: 11px 12px;
}

#order-standard_cart.is-cart-view .item-price .price-wrap > span:first-child,
#order-standard_cart.is-cart-view .item-price > span:first-child {
  color: var(--as-ink);
  display: block;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.1;
}

#order-standard_cart.is-cart-view .btn-remove-from-cart {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--as-muted);
  display: inline-flex;
  justify-content: center;
  min-height: 32px;
  min-width: 32px;
  padding: 6px;
}

#order-standard_cart.is-cart-view .btn-remove-from-cart:hover {
  background: #fff1ef;
  border-color: #f0c9c4;
  color: var(--as-red);
}

#order-standard_cart.is-cart-view .empty-cart {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

#order-standard_cart.is-cart-view .empty-cart .btn {
  align-items: center;
  background: #fff7f6;
  border: 1px solid #f0c9c4;
  border-radius: 6px;
  color: var(--as-red);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  line-height: 1.15;
  min-height: 36px;
  padding: 8px 12px;
  text-decoration: none;
}

#order-standard_cart.is-cart-view .empty-cart .btn:hover,
#order-standard_cart.is-cart-view .empty-cart .btn:focus {
  background: #fff1ef;
  border-color: #e5aaa3;
  color: var(--as-red);
  text-decoration: none;
}

#order-standard_cart.is-cart-view .empty-cart .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(196, 66, 50, 0.18);
  outline: 2px solid var(--as-red);
  outline-offset: 2px;
}

#order-standard_cart.is-cart-view .as-promo-card {
  background: #fff;
  border-color: #d5e3dd;
  box-shadow: 0 10px 24px rgba(23, 25, 24, 0.05);
  margin-top: 20px;
  padding: 18px;
}

#order-standard_cart.is-cart-view .as-promo-card h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

#order-standard_cart.is-cart-view .as-promo-card form {
  align-items: flex-end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(min(100%, 420px), 1fr) max-content;
}

#order-standard_cart.is-cart-view .as-promo-card .form-group {
  margin: 0;
  min-width: 0;
  width: 100%;
}

#order-standard_cart.is-cart-view .as-promo-card #inputPromotionCode {
  min-height: 46px;
  min-width: 0;
  width: 100%;
}

#order-standard_cart.is-cart-view .as-promo-card .btn {
  background: #171918;
  border-color: #171918;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  min-height: 42px;
  padding-left: 18px;
  padding-right: 18px;
  white-space: nowrap;
}

#order-standard_cart.is-cart-view .as-promo-card .btn:hover {
  background: var(--as-teal);
  border-color: var(--as-teal);
}

#order-standard_cart.is-cart-view .order-summary {
  border-color: #d5e3dd;
  box-shadow: 0 18px 44px rgba(23, 25, 24, 0.11);
  padding: 22px;
}

#order-standard_cart.is-cart-view .order-summary h2 {
  border-bottom: 1px solid var(--as-line);
  font-size: 24px;
  font-weight: 850;
  margin: 0 0 16px;
  padding-bottom: 14px;
}

#order-standard_cart.is-cart-view .order-summary .summary-container .clearfix {
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
}

#order-standard_cart.is-cart-view .order-summary .bordered-totals {
  border-bottom: 1px solid var(--as-line);
  border-top: 1px solid var(--as-line);
  margin: 8px 0;
  padding: 6px 0;
}

#order-standard_cart.is-cart-view .order-summary .recurring-totals {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

#order-standard_cart.is-cart-view .order-summary .recurring-charges {
  color: var(--as-ink);
  font-weight: 800;
  text-align: right;
}

#order-standard_cart.is-cart-view .total-due-today {
  background: #edf7f4;
  border: 1px solid #cae5de;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin: 16px 0;
  padding: 16px;
}

#order-standard_cart.is-cart-view #totalDueToday {
  font-size: 34px;
  line-height: 1;
}

#order-standard_cart.is-cart-view .btn-checkout {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  width: 100%;
}

#order-standard_cart.is-cart-view #continueShopping {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 8px;
  min-height: 38px;
  width: 100%;
}

#order-standard_cart.is-cart-view .as-summary-note {
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 12px 0 0;
  text-align: center;
}

body.as-cart-page .as-checkout-header,
body.as-cart-page .as-checkout-footer-inner {
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

body.as-cart-page .as-checkout-nav {
  max-width: none;
}

#order-standard_cart.is-cart-view {
  max-width: none;
  width: 100%;
}

#order-standard_cart.is-cart-view .cart-body,
#order-standard_cart.is-cart-view .as-checkout-steps,
#order-standard_cart.is-cart-view .as-cart-review-intro {
  box-sizing: border-box;
  max-width: none;
  width: 100%;
}

#order-standard_cart.is-cart-view .cart-body {
  font-size: 16px;
}

#order-standard_cart.is-cart-view .cart-body > .row {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

#order-standard_cart.is-cart-view .secondary-cart-body {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
  width: auto;
}

#order-standard_cart.is-cart-view .secondary-cart-sidebar {
  flex: 0 0 410px;
  max-width: 410px;
  min-width: 0;
  width: 410px;
}

#order-standard_cart.is-cart-view .as-cart-review-intro {
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

#order-standard_cart.is-cart-view .as-cart-review-copy {
  font-size: 18px;
  line-height: 1.5;
}

#order-standard_cart.is-cart-view .as-cart-review-intro .btn {
  background-color: #f0f4f3;
  border-color: #cddcd8;
  border-radius: 6px;
  color: #06594f;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
}

#order-standard_cart.is-cart-view .as-checkout-steps li {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 10px;
}

#order-standard_cart.is-cart-view .view-cart-items {
  gap: 32px;
}

#order-standard_cart.is-cart-view .view-cart-items .item {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

#order-standard_cart.is-cart-view .item-price .price-wrap > span:first-child,
#order-standard_cart.is-cart-view .item-price > span:first-child,
#order-standard_cart.is-cart-view .order-summary .recurring-charges .cost {
  color: #000;
  font-size: 20px;
  font-weight: 800;
}

#order-standard_cart.is-cart-view .order-summary .recurring-totals,
#order-standard_cart.is-cart-view .total-due-today {
  font-size: 24px;
  font-weight: 900;
}

#order-standard_cart.is-cart-view .total-due-today {
  border-top: 2px solid #333;
  margin-top: 40px;
  padding-top: 24px;
}

#order-standard_cart.is-cart-view .btn-checkout {
  font-size: 18px;
  font-weight: 800;
  height: auto;
  letter-spacing: 0;
  padding: 12px 30px;
  text-transform: uppercase;
}

#order-standard_cart .as-empty-cart-state {
  background: #fff;
  border: 1px solid var(--as-line);
  border-left: 4px solid var(--as-teal);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.05);
  padding: 24px;
}

#order-standard_cart .as-empty-cart-state h2 {
  color: var(--as-ink);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.2;
  margin: 0;
}

#order-standard_cart .as-empty-cart-state p:not(.as-eyebrow) {
  color: var(--as-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0 18px;
}

#order-standard_cart .already-registered,
#order-standard_cart .as-checkout-panel,
#order-standard_cart .as-checkout-final,
#order-standard_cart .checkout-security-msg {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.05);
  margin-bottom: 16px;
  padding: 18px;
}

#order-standard_cart .already-registered {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

#order-standard_cart .already-registered p {
  color: var(--as-muted);
  margin: 0;
}

#order-standard_cart .already-registered .pull-right {
  order: 2;
}

#order-standard_cart .as-checkout-panel > .sub-heading:first-child,
#order-standard_cart .as-payment-panel > .sub-heading:first-child {
  margin-top: 0;
}

#order-standard_cart .is-checkout-view .sub-heading span {
  font-size: 19px;
}

#order-standard_cart .is-checkout-view .prepend-icon {
  margin-bottom: 14px;
}

#order-standard_cart .is-checkout-view .field,
#order-standard_cart .is-checkout-view .form-control {
  border-radius: 8px;
}

#order-standard_cart.is-checkout-view {
  --as-checkout-content-max: 1180px;
}

#order-standard_cart.is-checkout-view .as-checkout-steps,
#order-standard_cart.is-checkout-view .as-cart-review-intro,
#order-standard_cart.is-checkout-view .already-registered,
#order-standard_cart.is-checkout-view #frmCheckout,
#order-standard_cart.is-checkout-view .checkout-security-msg {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--as-checkout-content-max);
  width: 100%;
}

#order-standard_cart.is-checkout-view .as-checkout-panel {
  padding: 28px;
}

#order-standard_cart.is-checkout-view #containerNewUserSecurity .sub-heading,
#order-standard_cart.is-checkout-view .as-payment-panel > .sub-heading,
#order-standard_cart.is-checkout-view #frmCheckout > .sub-heading {
  border-bottom: 0;
  border-top: 0;
  height: auto;
  margin: 0 0 16px;
  padding-bottom: 0;
  text-align: left;
}

#order-standard_cart.is-checkout-view #frmCheckout > .sub-heading {
  margin-top: 24px;
}

#order-standard_cart.is-checkout-view #containerNewUserSecurity .sub-heading span,
#order-standard_cart.is-checkout-view .as-payment-panel > .sub-heading span,
#order-standard_cart.is-checkout-view #frmCheckout > .sub-heading span {
  display: block;
  font-size: 19px;
  top: auto;
}

#order-standard_cart.is-checkout-view #frmCheckout > .row:has(textarea[name="notes"]) {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.05);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
  padding: 28px;
}

#order-standard_cart.is-checkout-view #frmCheckout > .row:has(textarea[name="notes"]) > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

#order-standard_cart.is-checkout-view #containerExistingUserSignin > .row,
#order-standard_cart.is-checkout-view #containerNewUserSignup > .row,
#order-standard_cart.is-checkout-view #containerNewUserSecurity > .row,
#order-standard_cart.is-checkout-view #domainRegistrantInputFields {
  display: grid;
  gap: 16px 18px;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  margin-left: 0;
  margin-right: 0;
}

#order-standard_cart.is-checkout-view #containerExistingUserSignin > .row > [class*="col-"],
#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > [class*="col-"],
#order-standard_cart.is-checkout-view #containerNewUserSecurity > .row > [class*="col-"],
#order-standard_cart.is-checkout-view #domainRegistrantInputFields > [class*="col-"] {
  flex: 0 1 auto;
  max-width: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-12,
#order-standard_cart.is-checkout-view #domainRegistrantInputFields > .col-sm-12 {
  grid-column: 1 / -1;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup {
  max-width: none;
  width: 100%;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup .sub-heading {
  border-bottom: 0;
  border-top: 0;
  height: auto;
  margin: 32px 0 8px;
  padding-bottom: 0;
  text-align: left;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup .sub-heading:first-child {
  margin-top: 0;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup .sub-heading span {
  display: block;
  top: auto;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-12 {
  grid-column: span 12;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-6 {
  grid-column: span 6;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-5 {
  grid-column: span 5;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-4 {
  grid-column: span 4;
}

#order-standard_cart.is-checkout-view #containerNewUserSignup > .row > .col-sm-3 {
  grid-column: span 3;
}

#order-standard_cart.is-checkout-view .prepend-icon,
#order-standard_cart.is-checkout-view .form-group {
  margin-bottom: 0;
  width: 100%;
}

#order-standard_cart.is-checkout-view .field,
#order-standard_cart.is-checkout-view .form-control,
#order-standard_cart.is-checkout-view select.form-control {
  border-radius: 8px;
  font-size: 15px;
  min-height: 46px;
  width: 100%;
}

#order-standard_cart.is-checkout-view .prepend-icon .field {
  padding-left: 42px;
}

#order-standard_cart.is-checkout-view .prepend-icon .field-icon {
  height: 46px;
  line-height: 46px;
  width: 42px;
}

#order-standard_cart #paymentGatewaysContainer {
  background: #f8fbfa;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  padding: 14px;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer {
  padding: 18px;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .text-center {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  text-align: left !important;
}

#order-standard_cart #paymentGatewaysContainer .radio-inline {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  display: inline-flex;
  margin: 6px;
  min-height: 40px;
  padding: 9px 12px;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline {
  align-items: center;
  border: 1px solid #d7e3df;
  box-shadow: 0 8px 18px rgba(23, 25, 24, 0.04);
  color: var(--as-ink);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  line-height: 1.25;
  margin: 0;
  min-height: 68px;
  padding: 14px 16px 14px 92px;
  position: relative;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  width: 100%;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:hover {
  border-color: #9fc9bf;
  box-shadow: 0 10px 24px rgba(8, 117, 104, 0.1);
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input:checked) {
  background: #eef7ff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline input,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline .iradio_square-blue {
  left: 16px;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline::before {
  align-items: center;
  background: #f4f8f7;
  border: 1px solid #d7e3df;
  border-radius: 6px;
  color: #24312e;
  content: "";
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  left: 46px;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paynl_ideal"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="mollieideal"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="mollieideal_devapp"])::before {
  background: #fff;
  color: #cc0066;
  content: "iDEAL";
  font-size: 10px;
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paynl_paypal"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paypal"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paypalcheckout"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paypal_ppcpv"])::before {
  background: #fff url("/modules/gateways/paypal_ppcpv/logo.png") no-repeat center;
  background-size: 34px auto;
  content: "";
}

#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="paynl_overboeking"])::before,
#order-standard_cart.is-checkout-view #paymentGatewaysContainer .radio-inline:has(input[value="banktransfer"])::before {
  color: #06594f;
  content: "\f19c";
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 900;
}

#order-standard_cart #totalDueToday {
  background: #edf7f4;
  border-color: #cae5de;
  color: var(--as-teal-dark);
}

#order-standard_cart .as-checkout-final {
  text-align: center;
}

#order-standard_cart .as-checkout-final .checkbox-inline {
  color: var(--as-ink);
}

#order-standard_cart #btnCompleteOrder {
  min-width: min(100%, 280px);
}

#order-standard_cart .as-summary-note {
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
  text-align: right;
}

#order-standard_cart .alert-info {
  background: #edf7f4;
  border-color: #cae5de;
  color: var(--as-teal-dark);
}

#order-standard_cart .alert-warning {
  background: #fff7df;
  border-color: #f5d886;
  color: #6d4b00;
}

#order-standard_cart .alert-danger {
  background: #fff0ee;
  border-color: #f0bbb5;
  color: #84251d;
}

body.as-cart-modal-active {
  overflow: hidden;
}

#order-standard_cart .modal-remove-item {
  align-items: center;
  background: rgba(23, 25, 24, 0.54);
  display: none !important;
  inset: 0;
  justify-content: center;
  opacity: 1;
  overflow-y: auto;
  padding: 18px;
  position: fixed;
  z-index: 1050;
}

#order-standard_cart .modal-remove-item.as-cart-modal-open {
  display: flex !important;
}

#order-standard_cart .modal-remove-item .modal-dialog {
  margin: 0;
  max-width: 460px;
  pointer-events: auto;
  transform: none;
  width: min(100%, 460px);
}

#order-standard_cart .modal-remove-item .modal-content {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 25, 24, 0.25);
  overflow: hidden;
}

#order-standard_cart .modal-remove-item .modal-body {
  color: var(--as-muted);
  font-size: 15px;
  line-height: 1.55;
  padding: 24px;
}

#order-standard_cart .modal-remove-item .modal-title {
  align-items: center;
  color: var(--as-ink);
  display: flex;
  font-size: 21px;
  font-weight: 850;
  gap: 10px;
  line-height: 1.2;
  margin: 0 0 12px;
}

#order-standard_cart .modal-remove-item .modal-title .fas {
  color: var(--as-red);
  font-size: 22px;
}

#order-standard_cart .modal-remove-item .close {
  align-items: center;
  background: #f6faf8;
  border: 1px solid var(--as-line);
  border-radius: 8px;
  color: var(--as-muted);
  display: inline-flex;
  font-size: 22px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  width: 34px;
}

#order-standard_cart .modal-remove-item .modal-footer {
  background: #f8fbfa;
  border-top: 1px solid var(--as-line);
  display: flex;
  gap: 10px;
  justify-content: flex-end !important;
  padding: 14px 24px;
}

#order-standard_cart .modal-remove-item .modal-footer .btn {
  min-height: 40px;
  min-width: 82px;
}

@media (max-width: 991px) {
  .as-checkout-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .as-checkout-nav,
  .as-checkout-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .as-checkout-phone {
    display: none !important;
  }

  #order-standard_cart {
    padding: 16px;
  }

  #order-standard_cart .as-checkout-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #order-standard_cart .as-checkout-steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--as-line);
  }

  #order-standard_cart .as-checkout-steps li:nth-child(4) {
    border-top: 1px solid var(--as-line);
  }

  #order-standard_cart > .row,
  #order-standard_cart .products .row,
  #order-standard_cart #frmConfigureProduct > .row {
    display: block;
  }

  #order-standard_cart .cart-sidebar,
  #order-standard_cart .cart-body,
  #order-standard_cart .secondary-cart-body,
  #order-standard_cart .secondary-cart-sidebar {
    max-width: none;
    width: 100%;
  }

  #order-standard_cart .cart-sidebar {
    margin-bottom: 16px;
  }

  #order-standard_cart .products .product {
    height: auto;
  }

  #order-standard_cart .billing-cycle-row {
    grid-template-columns: 1fr;
  }

  #order-standard_cart .as-choice-list {
    grid-template-columns: 1fr;
  }

  #order-standard_cart .order-summary {
    position: static;
  }

  #order-standard_cart.is-cart-view .secondary-cart-body,
  #order-standard_cart.is-cart-view .secondary-cart-sidebar {
    width: 100%;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item > .row {
    flex-wrap: wrap;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-price {
    align-items: flex-start;
    border-left: 0;
    border-top: 1px solid var(--as-line);
    flex: 1 1 100%;
    max-width: none;
    text-align: left;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-qty,
  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .col-sm-1:not(.item-qty) {
    border-left: 0;
    border-top: 1px solid var(--as-line);
  }

  #order-standard_cart.is-cart-view .view-cart-items .item-title .visible-xs-inline {
    display: inline-flex !important;
  }

  #order-standard_cart .as-cart-review-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  #order-standard_cart .already-registered {
    align-items: flex-start;
    flex-direction: column;
  }

  #order-standard_cart .already-registered .pull-right {
    order: 0;
  }

  #order-standard_cart.is-checkout-view #containerExistingUserSignin > .row,
  #order-standard_cart.is-checkout-view #containerNewUserSignup > .row,
  #order-standard_cart.is-checkout-view #containerNewUserSecurity > .row,
  #order-standard_cart.is-checkout-view #domainRegistrantInputFields {
    grid-template-columns: 1fr;
  }

  #order-standard_cart.is-checkout-view #containerExistingUserSignin > .row > [class*="col-"],
  #order-standard_cart.is-checkout-view #containerNewUserSignup > .row > [class*="col-"],
  #order-standard_cart.is-checkout-view #containerNewUserSecurity > .row > [class*="col-"],
  #order-standard_cart.is-checkout-view #domainRegistrantInputFields > [class*="col-"] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .as-checkout-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .as-checkout-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .as-checkout-header {
    padding: 12px 14px;
  }

  .as-checkout-logo img {
    max-width: 180px;
  }

  .as-checkout-nav,
  .as-checkout-actions {
    gap: 8px;
  }

  .as-checkout-nav a,
  .as-checkout-actions a {
    font-size: 13px;
    min-height: 36px;
    padding: 7px 9px;
  }

  #order-standard_cart {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 12px;
  }

  #order-standard_cart .as-checkout-steps {
    grid-template-columns: 1fr;
  }

  #order-standard_cart .as-checkout-steps li,
  #order-standard_cart .as-checkout-steps li:nth-child(3),
  #order-standard_cart .as-checkout-steps li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--as-line);
  }

  #order-standard_cart .as-checkout-steps li:first-child {
    border-top: 0;
  }

  #order-standard_cart .as-cart-intro,
  #order-standard_cart .header-lined {
    padding: 16px;
  }

  #order-standard_cart .header-lined h1,
  #order-standard_cart .as-cart-title {
    font-size: 25px;
  }

  #order-standard_cart .products .product footer {
    align-items: stretch;
    flex-direction: column;
  }

  #order-standard_cart .products .product footer .btn {
    width: 100%;
  }

  #order-standard_cart .view-cart-items .item-config-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #order-standard_cart .view-cart-items .cfg-sep {
    display: none;
  }

  #order-standard_cart .view-cart-items .cfg-value {
    grid-column: 2;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item-title > a:first-of-type {
    margin-left: 0;
  }

  #order-standard_cart.is-cart-view .view-cart-items .cfg-name {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  #order-standard_cart.is-cart-view .view-cart-items .cfg-value {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  #order-standard_cart.is-cart-view .as-cart-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item > .row {
    display: block;
    min-height: 0;
  }

  #order-standard_cart.is-cart-view .view-cart-items .item > .row > [class*="col-"],
  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-price,
  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .item-qty,
  #order-standard_cart.is-cart-view .view-cart-items .item > .row > .col-sm-1:not(.item-qty) {
    display: block;
    max-width: none;
    padding: 18px;
    width: 100%;
  }

  #order-standard_cart.is-cart-view .as-promo-card form {
    grid-template-columns: 1fr;
  }

  #order-standard_cart.is-cart-view #totalDueToday {
    font-size: 29px;
  }

  #order-standard_cart .item-price,
  #order-standard_cart .item-price .price-wrap,
  #order-standard_cart .as-summary-note {
    text-align: left;
  }
}
