html,
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
}

.bds-navbar,
.bds-navbar *,
.bds-calculator,
.bds-calculator * {
  box-sizing: border-box;
}

.bds-page {
  min-height: 0;
  margin: 0;
  padding: 18px 12px 40px;
  overflow-x: hidden;
  background: #fff;
  color: #172033;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bds-navbar,
.bds-calculator {
  --bds-ink: #132033;
  --bds-muted: #677287;
  --bds-soft: #f8fafc;
  --bds-line: #dce3ed;
  --bds-blue: #153F56;
  --bds-blue-2: #1f5b78;
  --bds-coral: #E8735E;
  --bds-offer-green: #16845d;
  --bds-offer-green-soft: #edf8f3;
  --bds-offer-green-line: #bfe3d5;
  --bds-gold: #E8735E;
  --bds-teal: #16845d;
  --bds-green-soft: #edf8f3;
  --bds-green-line: #bfe3d5;
  --bds-red: #ad2d2d;
  --bds-radius: 8px;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--bds-ink);
}

.bds-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  min-height: clamp(56px, 8vw, 72px);
  padding: clamp(8px, 1.8vw, 14px) clamp(10px, 2.4vw, 18px);
  border: 1px solid rgba(220, 227, 237, .92);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(21, 63, 86, .08);
}

.bds-navbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}

.bds-navbar__brand img {
  display: block;
  width: auto;
  max-width: clamp(108px, 28vw, 220px);
  height: clamp(34px, 7vw, 54px);
  object-fit: contain;
}

.bds-navbar__actions {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: clamp(6px, 1.4vw, 10px);
  min-width: 0;
}

.bds-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(34px, 7vw, 40px);
  padding: clamp(7px, 1.8vw, 9px) clamp(10px, 2.8vw, 16px);
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--bds-coral);
  color: #fff;
  font-size: clamp(11px, 2.7vw, 14px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(232, 115, 94, .18);
}

.bds-nav-button--outline {
  border-color: rgba(21, 63, 86, .16);
  background: #fff;
  color: var(--bds-blue);
  box-shadow: none;
}

.bds-calculator button,
.bds-calculator a {
  font: inherit;
}

.bds-calculator {
  margin-top: 14px;
}

.bds-calculator__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(21, 63, 86, .98), rgba(21, 63, 86, .92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 12px);
  color: #fff;
  box-shadow: 0 16px 42px rgba(21, 63, 86, .14);
}

.bds-eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bds-calculator__top h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.bds-lead {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.bds-hero-disclaimer {
  max-width: 760px;
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--bds-coral);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.45;
}

.bds-top-cta,
.bds-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--bds-gold);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.bds-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 18px;
  margin-top: 18px;
}

.bds-panel,
.bds-cta-card {
  border: 1px solid var(--bds-line);
  border-radius: var(--bds-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 32, 51, .06);
}

.bds-panel__head,
.bds-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bds-line);
}

.bds-panel h2,
.bds-cta-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.bds-panel p,
.bds-cta-card p {
  margin: 5px 0 0;
  color: var(--bds-muted);
  font-size: 13px;
}

.bds-status {
  display: none;
}

.bds-discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bds-green-soft);
  color: var(--bds-offer-green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bds-status[data-state="error"] {
  background: #f9e9e9;
  color: var(--bds-red);
}

.bds-step {
  padding: 18px 20px 0;
}

.bds-step:last-child {
  padding-bottom: 20px;
}

.bds-step__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--bds-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.bds-step__label span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--bds-blue);
  color: #fff;
  font-size: 12px;
}

.bds-unit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.bds-gfa-grid,
.bds-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bds-choice {
  min-width: 0;
  min-height: 74px;
  padding: 12px;
  border: 1.5px solid var(--bds-line);
  border-radius: 7px;
  background: #fff;
  color: var(--bds-ink);
  cursor: pointer;
  text-align: left;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.bds-choice:hover {
  border-color: #b9c6d7;
  transform: translateY(-1px);
}

.bds-choice[aria-pressed="true"] {
  border-color: var(--bds-blue);
  background: #f4f8fc;
  box-shadow: 0 0 0 3px rgba(21, 63, 86, .08);
}

.bds-choice strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.bds-choice span {
  display: block;
  margin-top: 5px;
  color: var(--bds-muted);
  font-size: 12px;
  line-height: 1.35;
}

.bds-choice em {
  display: block;
  margin-top: 7px;
  color: var(--bds-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.bds-payment-grid .bds-choice em {
  color: var(--bds-offer-green);
}

.bds-payment-grid .bds-choice {
  min-height: 112px;
}

.bds-total {
  padding: 22px 20px 18px;
}

.bds-total span {
  display: block;
  color: var(--bds-muted);
  font-size: 13px;
}

.bds-total strong {
  display: block;
  margin-top: 4px;
  color: var(--bds-blue);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.bds-kv {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  margin: 0 20px;
  border-top: 1px solid var(--bds-line);
}

.bds-kv dt,
.bds-kv dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--bds-line);
  font-size: 13px;
}

.bds-kv dt {
  color: var(--bds-muted);
}

.bds-kv dd {
  color: var(--bds-ink);
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bds-kv dd.bds-negative,
.bds-kv dd.bds-positive,
.bds-calculator .bds-positive {
  color: var(--bds-offer-green);
}

.bds-kv dd.bds-highlight-value {
  align-self: center;
  margin: 5px 0;
  padding: 7px 10px;
  border: 1px solid var(--bds-offer-green-line);
  border-radius: 7px;
  background: var(--bds-offer-green-soft);
  color: var(--bds-offer-green);
  font-size: 15px;
  font-weight: 900;
}

.bds-disclaimer {
  margin: 16px 20px 0;
  padding: 12px;
  border: 1px solid #f2c4bb;
  border-radius: 7px;
  background: #fff4f1;
  color: #805044;
  font-size: 12px;
}

.bds-note {
  margin: 12px 20px 20px;
  padding: 12px;
  border-left: 4px solid var(--bds-blue);
  border-radius: 7px;
  background: #f3f7f9;
  color: #244461;
  font-size: 13px;
}

.bds-visual-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.bds-cta-card {
  min-height: 230px;
}

.bds-pttt-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--bds-radius);
  padding: 0;
  background: #fff;
  color: var(--bds-ink);
  box-shadow: 0 12px 32px rgba(21, 63, 86, .1);
}

.bds-pttt-visual::before {
  display: none;
}

.bds-payment-timeline {
  display: grid;
  height: 100%;
  min-height: 228px;
  padding: 14px;
  align-content: stretch;
  gap: 10px;
}

.bds-payment-timeline__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--bds-blue);
}

.bds-payment-timeline__top span {
  color: var(--bds-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bds-payment-timeline__top strong {
  font-size: 14px;
  line-height: 1.25;
  text-align: right;
}

.bds-pay-card {
  display: grid;
  overflow: hidden;
  min-height: 164px;
  border: 1px solid rgba(232, 115, 94, .34);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.bds-pay-hdr,
.bds-pay-body {
  display: grid;
}

.bds-payment-timeline--s1 .bds-pay-hdr,
.bds-payment-timeline--s1 .bds-pay-body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bds-payment-timeline--s2 .bds-pay-hdr,
.bds-payment-timeline--s2 .bds-pay-body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bds-payment-timeline--s3 .bds-pay-hdr {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bds-payment-timeline--s3 .bds-pay-body {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bds-pay-hdr-cell {
  min-width: 0;
  padding: 9px 8px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background: var(--bds-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.bds-pay-hdr-cell.is-accent {
  background: var(--bds-coral);
}

.bds-pay-hdr-cell:last-child {
  border-right: 0;
}

.bds-pay-hdr-cell small {
  display: block;
  margin-top: 1px;
  opacity: .72;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.bds-pay-body {
  grid-template-rows: auto 34px auto;
}

.bds-pay-col {
  display: grid;
  grid-row: 1 / 4;
  grid-template-rows: subgrid;
  min-width: 0;
}

@supports not (grid-template-rows: subgrid) {
  .bds-pay-col {
    grid-template-rows: auto 34px minmax(54px, auto);
  }
}

.bds-pay-pct-cell,
.bds-pay-line-cell,
.bds-pay-label-cell {
  min-width: 0;
}

.bds-pay-pct-cell {
  display: grid;
  min-height: 52px;
  place-items: end center;
  padding: 13px 5px 4px;
}

.bds-pay-pct {
  color: var(--bds-blue);
  font-size: clamp(15px, 2.1vw, 24px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.bds-pay-pct sup {
  font-size: .62em;
  vertical-align: super;
}

.bds-pay-line-cell {
  position: relative;
  display: grid;
  place-items: center;
}

.bds-pay-line-cell::before,
.bds-pay-line-cell::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--bds-coral);
  transform: translateY(-50%);
}

.bds-pay-line-cell::before {
  left: 0;
  right: 50%;
}

.bds-pay-line-cell::after {
  left: 50%;
  right: 0;
}

.bds-pay-col:first-child .bds-pay-line-cell::before,
.bds-pay-col:last-child .bds-pay-line-cell::after,
.bds-pay-line-cell.is-empty::before,
.bds-pay-line-cell.is-empty::after {
  background: transparent;
}

.bds-pay-line-cell.is-range-start {
  border-left: 1px dashed rgba(21, 63, 86, .18);
}

.bds-pay-line-cell.is-range-end {
  border-right: 1px dashed rgba(21, 63, 86, .18);
}

.bds-pay-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 3px solid var(--bds-coral);
  border-radius: 999px;
  background: #fff;
}

.bds-pay-label-cell {
  display: flex;
  min-height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  padding: 4px 6px 12px;
  text-align: center;
}

.bds-pay-label-cell strong,
.bds-pay-label-cell span {
  color: var(--bds-blue);
  font-size: 11px;
  line-height: 1.3;
}

.bds-pay-label-cell strong {
  font-weight: 900;
}

.bds-pay-label-cell span {
  color: #40556a;
  font-weight: 700;
}

.bds-pay-label-cell em {
  width: fit-content;
  padding: 1px 6px;
  border-radius: 5px;
  background: #fff4f1;
  color: var(--bds-coral);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.bds-pay-pct-cell.is-blue,
.bds-pay-line-cell.is-blue,
.bds-pay-label-cell.is-blue {
  background: #f3f8fa;
}

.bds-pay-pct-cell.is-mid,
.bds-pay-line-cell.is-mid,
.bds-pay-label-cell.is-mid {
  background: #f9fbfc;
}

.bds-pay-pct-cell.is-pink,
.bds-pay-line-cell.is-pink,
.bds-pay-label-cell.is-pink {
  background: #fff4f1;
}

.bds-pay-note {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 10px 16px;
  border-top: 1px solid rgba(232, 115, 94, .2);
  background: linear-gradient(90deg, #fff4f1, #ffe5df);
  color: var(--bds-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.bds-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 228px;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(232, 115, 94, .32);
  background:
    linear-gradient(135deg, rgba(255, 244, 241, .98), #fff 54%),
    radial-gradient(circle at 92% 8%, rgba(232, 115, 94, .2), transparent 34%);
  box-shadow: 0 18px 42px rgba(232, 115, 94, .13), 0 10px 28px rgba(21, 63, 86, .08);
}

.bds-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--bds-coral), var(--bds-blue));
}

.bds-cta-card h2 {
  max-width: 520px;
  color: var(--bds-blue);
  font-size: clamp(21px, 2.5vw, 30px);
}

.bds-cta-card .bds-eyebrow {
  color: var(--bds-coral);
}

.bds-primary-cta {
  margin-top: 18px;
  min-height: 48px;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(232, 115, 94, .22);
}

.bds-detail {
  margin-top: 18px;
}

.bds-tabs {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--bds-line);
  border-radius: 8px;
  background: var(--bds-soft);
}

.bds-tabs button {
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--bds-muted);
  cursor: pointer;
  font-weight: 800;
}

.bds-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--bds-blue);
  box-shadow: 0 1px 5px rgba(23, 32, 51, .08);
}

.bds-tab-panel {
  padding: 0;
}

.bds-table-wrap {
  overflow-x: auto;
}

.bds-calculator table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bds-calculator th,
.bds-calculator td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--bds-line);
  text-align: left;
  vertical-align: top;
}

.bds-calculator th {
  color: var(--bds-muted);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bds-calculator .bds-num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.bds-row-muted td {
  background: #fbfcfe;
  color: var(--bds-muted);
}

.bds-row-total td {
  background: #f5f8fb;
  color: var(--bds-blue);
  font-weight: 900;
}

.bds-mainline,
.bds-subline {
  display: block;
}

.bds-subline {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d8e0ea;
  color: var(--bds-muted);
}

.bds-step-pill {
  display: inline-flex;
  min-width: 28px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--bds-blue);
  font-weight: 900;
}

.bds-schedule-mobile-lines {
  display: none;
}

.bds-mobile-total-cell {
  display: none;
}

@media (max-width: 1080px) {
  .bds-layout,
  .bds-visual-row {
    grid-template-columns: 1fr;
  }

  .bds-unit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bds-page {
    padding: 10px 8px 16px;
  }

  .bds-navbar {
    align-items: center;
    flex-direction: row;
    gap: 6px;
  }

  .bds-navbar__actions {
    width: auto;
  }

  .bds-nav-button {
    flex: 0 1 auto;
  }

  .bds-calculator__top,
  .bds-panel__head,
  .bds-detail__head {
    align-items: stretch;
    flex-direction: column;
  }

  .bds-top-cta,
  .bds-primary-cta {
    width: 100%;
  }

  .bds-unit-grid,
  .bds-gfa-grid,
  .bds-payment-grid {
    grid-template-columns: 1fr;
  }

  .bds-tabs {
    width: 100%;
  }

  .bds-tabs button {
    flex: 1;
  }

  .bds-calculator th,
  .bds-calculator td {
    padding: 11px 12px;
  }
}

@media (max-width: 640px) {
  .bds-table-wrap {
    overflow: visible;
  }

  .bds-calculator table,
  .bds-calculator thead,
  .bds-calculator tbody,
  .bds-calculator tr,
  .bds-calculator th,
  .bds-calculator td {
    display: block;
  }

  .bds-calculator thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .bds-calculator tbody {
    padding: 12px;
    background: #f8fafc;
  }

  .bds-calculator tr {
    margin: 0 0 12px;
    padding: 12px;
    border: 1px solid var(--bds-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(21, 63, 86, .05);
  }

  .bds-calculator tr:last-child {
    margin-bottom: 0;
  }

  .bds-calculator td {
    display: grid;
    grid-template-columns: minmax(86px, .42fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #edf1f6;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .bds-calculator td:last-child {
    border-bottom: 0;
  }

  .bds-calculator td::before {
    color: var(--bds-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .bds-schedule-table td:nth-child(1)::before {
    content: "Đợt";
  }

  .bds-schedule-table td:nth-child(2)::before {
    content: "Nội dung";
  }

  .bds-schedule-table td:nth-child(3)::before {
    content: "% thanh toán";
  }

  .bds-schedule-table td:nth-child(4)::before {
    content: "Số tiền";
  }

  .bds-discount-table td:nth-child(1)::before {
    content: "#";
  }

  .bds-discount-table td:nth-child(2)::before {
    content: "Ưu đãi";
  }

  .bds-discount-table td:nth-child(3)::before {
    content: "Giá trị";
  }

  .bds-discount-table td:nth-child(4)::before {
    content: "Quy đổi";
  }

  .bds-schedule-table td:nth-child(2) .bds-mainline,
  .bds-schedule-table td:nth-child(2) .bds-subline,
  .bds-schedule-table td:nth-child(3),
  .bds-schedule-table td:nth-child(4) {
    display: none;
  }

  .bds-schedule-table td:nth-child(2)::before {
    content: "Chi tiết";
  }

  .bds-schedule-mobile-lines {
    display: grid;
    gap: 10px;
  }

  .bds-schedule-mobile-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
    padding: 10px;
    border: 1px solid #e2e9f1;
    border-radius: 8px;
    background: #fbfdff;
  }

  .bds-schedule-mobile-label {
    grid-column: 1 / -1;
    color: var(--bds-ink);
    font-weight: 700;
    line-height: 1.35;
  }

  .bds-schedule-mobile-meta {
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef4fb;
    color: var(--bds-blue);
    font-size: 12px;
    font-weight: 900;
  }

  .bds-schedule-mobile-amount {
    justify-self: end;
    color: var(--bds-ink);
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .bds-schedule-table .bds-row-total > td {
    display: none;
  }

  .bds-schedule-table .bds-row-total > .bds-mobile-total-cell {
    display: block;
    padding: 0;
    border-bottom: 0;
  }

  .bds-schedule-table .bds-row-total > .bds-mobile-total-cell::before {
    content: none;
  }

  .bds-mobile-total-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(21, 63, 86, .18);
    border-radius: 10px;
    background: linear-gradient(135deg, #f7fbfd 0%, #eef7f8 100%);
  }

  .bds-mobile-total-card span {
    color: var(--bds-blue);
    font-size: 15px;
    font-weight: 900;
  }

  .bds-mobile-total-card strong {
    justify-self: end;
    color: var(--bds-blue);
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .bds-mobile-total-card em {
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e7f5f0;
    color: var(--bds-green);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
  }

  .bds-calculator .bds-num {
    text-align: left;
    white-space: normal;
  }

  .bds-subline {
    margin-top: 7px;
    padding-top: 7px;
  }

  .bds-step-pill {
    min-width: 24px;
    min-height: 24px;
    width: fit-content;
  }

  .bds-row-muted td,
  .bds-row-total td {
    background: transparent;
  }

  .bds-row-total {
    border-color: rgba(21, 63, 86, .24);
    background: #f3f7f9;
  }
}
