.pd-calc {
  --color-hero: #201f68;
  --color-secondary: #4b4b88;
  --color-interactive-border: #6664af;
  --color-surface-soft: #f8f7fc;
  --color-surface-heavy: #ededf8;
  --color-surface-page: #ffffff;
  --color-critical: #e70858;
  --color-success: #008170;
  --color-success-soft: #ebf6f5;
  --color-info-mid: #d4f5fd;
  --color-info-soft: #f7fdff;
  --color-aqua: #4cd7f5;
  --color-placeholder: #6664af;
  --color-warning-soft: #fffaf4;
  --color-warning-border: #ffab5d;
  --color-cta: #ce0272;
  --color-link: #5856e8;
  --color-focus-border: #5856e8;
  --color-focus-glow: #d7d7f9;
  --font-size-h1: 32px;
  --line-height-h1: 40px;
  --font-size-h2: 24px;
  --line-height-h2: 32px;
  --font-size-h3: 20px;
  --line-height-h3: 28px;
  --font-size-h4: 16px;
  --line-height-h4: 24px;
  --font-size-base: 16px;
  --line-height-base: 24px;
  --font-size-sm: 14px;
  --line-height-sm: 22px;
  --font-size-xs: 12px;
  --line-height-xs: 20px;
  --radius-baseline: 12px;
  --radius-xs: 4px;
  --anim-duration: 450ms;
  --anim-easing: cubic-bezier(0.4, 0, 0.6, 1);
  --anim-slide-distance: 20px;
  --shimmer-cycle: 4s;
  --thumb-size: 48px;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--color-hero);
  border-radius: var(--radius-baseline);
  overflow: hidden;
}
.pd-calc *,
.pd-calc *::before,
.pd-calc *::after {
  box-sizing: border-box;
}
.pd-calc button {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  text-decoration: none;
  box-shadow: none;
}
.pd-calc button:hover, .pd-calc button:focus, .pd-calc button:focus-visible, .pd-calc button:active {
  box-shadow: none;
  text-decoration: none;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .pd-calc * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.pd-calc__header {
  background: var(--color-surface-page);
  width: 100%;
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.pd-calc__header-handle {
  width: 36px;
  height: 4px;
  border-radius: 100px;
  background: var(--color-surface-heavy);
  margin-bottom: 16px;
}
.pd-calc__header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pd-calc__header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-hero);
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}
.pd-calc__header-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.pd-calc__illustration {
  background: var(--color-hero);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: pd-fade-slide-up var(--anim-duration) var(--anim-easing) both;
}
.pd-calc__title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: 900;
  color: var(--color-surface-page);
  margin: 0;
}
.pd-calc .br-card {
  background: var(--color-surface-soft);
  border-radius: var(--radius-baseline);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-calc .br-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pd-calc .br-card-head .br-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-surface-heavy);
  border: none;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: inherit;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: var(--line-height-xs);
  color: var(--color-link);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease;
}
.pd-calc .br-card-head .br-edit-btn:focus, .pd-calc .br-card-head .br-edit-btn:focus-visible {
  background: var(--color-surface-heavy);
  color: var(--color-link);
  text-decoration: none;
}
.pd-calc .br-card-head .br-edit-btn:hover:not(:disabled) {
  background: #e2e1f4;
  color: var(--color-link);
}
.pd-calc .br-card-head .br-edit-btn:active:not(:disabled) {
  background: #d7d6ef;
  color: var(--color-link);
}
.pd-calc .br-card-head .br-edit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pd-calc .br-card-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-hero);
  line-height: var(--line-height-base);
}
.pd-calc .br-rows {
  display: flex;
  flex-direction: column;
}
.pd-calc .br-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pd-calc .br-row.first {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-surface-heavy);
}
.pd-calc .br-row.second {
  padding-top: 16px;
}
.pd-calc .br-row-label {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-secondary);
  line-height: var(--line-height-sm);
}
.pd-calc .br-row-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-hero);
  line-height: var(--line-height-sm);
  text-align: right;
}
.pd-calc .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-calc .field-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-hero);
  line-height: var(--line-height-sm);
}
.pd-calc .field-help {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  color: var(--color-secondary);
  margin: -4px 0 0;
}
.pd-calc .text-field {
  display: flex;
  align-items: stretch;
  min-height: 56px;
  background: var(--color-surface-page);
  border: 2px solid var(--color-interactive-border);
  border-radius: var(--radius-baseline);
  overflow: hidden;
  transition: border-color 300ms, box-shadow 300ms;
  position: relative;
}
.pd-calc .text-field:focus-within {
  border-color: var(--color-focus-border);
  box-shadow: 0 0 0 3px var(--color-focus-glow);
}
.pd-calc .text-field.error {
  border-color: var(--color-critical);
  box-shadow: none;
}
.pd-calc .field-prefix {
  width: 56px;
  flex-shrink: 0;
  background: var(--color-surface-heavy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  color: var(--color-hero);
}
.pd-calc .field-prefix svg {
  width: 20px;
  height: 20px;
}
.pd-calc .field-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.pd-calc .field-input-wrap input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-hero);
  padding: 0 16px;
  line-height: var(--line-height-base);
}
.pd-calc .field-input-wrap input::placeholder {
  color: var(--color-placeholder);
}
.pd-calc .field-error-icon {
  width: 44px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.pd-calc .text-field.error .field-error-icon {
  display: flex;
}
.pd-calc .field-error-msg {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  color: var(--color-critical);
  display: none;
}
.pd-calc .field-error-msg.visible {
  display: block;
}
.pd-calc .paymore-card {
  background: var(--color-surface-page);
  border-radius: var(--radius-baseline);
  overflow: hidden;
}
.pd-calc .zone-title {
  background: var(--color-info-mid);
  padding: 16px;
}
.pd-calc .zone-title h4 {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 700;
  color: var(--color-hero);
  margin: 0;
}
.pd-calc .zone-slider {
  background: var(--color-surface-page);
  padding: 20px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-calc .zone-slider-intro {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--color-hero);
  margin: 0;
}
.pd-calc .c-stepper {
  display: flex;
  align-items: stretch;
  min-height: 56px;
  border: 2px solid var(--color-interactive-border);
  border-radius: var(--radius-baseline);
  overflow: hidden;
  transition: border-color 300ms, box-shadow 300ms;
}
.pd-calc .c-stepper:focus-within {
  border-color: var(--color-focus-border);
  box-shadow: 0 0 0 3px var(--color-focus-glow);
}
.pd-calc .c-stepper .c-step-btn {
  width: 56px;
  flex-shrink: 0;
  align-self: stretch;
  background: var(--color-surface-heavy);
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta);
  padding: 0;
  margin: 0;
  min-height: 0;
  transition: background-color 150ms ease;
}
.pd-calc .c-stepper .c-step-btn:focus, .pd-calc .c-stepper .c-step-btn:focus-visible {
  background: var(--color-surface-heavy);
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: var(--color-cta);
  transform: none;
}
.pd-calc .c-stepper .c-step-btn:hover:not(:disabled) {
  background: #e2e1f4;
  border-radius: 0;
  color: var(--color-cta);
}
.pd-calc .c-stepper .c-step-btn:active:not(:disabled) {
  background: #d7d6ef;
  border-radius: 0;
  color: var(--color-cta);
}
.pd-calc .c-stepper .c-step-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.pd-calc .c-stepper .c-step-btn svg {
  flex-shrink: 0;
}
.pd-calc .c-step-value-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-calc .c-step-value-wrap input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-hero);
  text-align: center;
  line-height: 28px;
}
.pd-calc .b-slider-track-wrap {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  touch-action: none;
}
.pd-calc .b-slider-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--color-surface-heavy);
  border-radius: 100px;
  overflow: hidden;
  pointer-events: none;
}
.pd-calc .b-slider-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 100px;
  animation: pd-shimmer-sweep var(--shimmer-cycle) ease-in-out infinite;
  z-index: 0;
}
.pd-calc .b-slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(to right, #201f68 0%, #008170 100%);
  width: 24px;
  transition: width 0.1s;
  z-index: 1;
}
.pd-calc .b-slider-fill.full {
  background: var(--color-success);
}
.pd-calc .b-slider-input {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 24px;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
.pd-calc .b-slider-thumb {
  position: absolute;
  width: var(--thumb-size);
  height: var(--thumb-size);
  background: var(--color-hero);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.1s, box-shadow 150ms ease;
  box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12), 0 0 0 8px rgba(88, 86, 232, 0.08);
  animation: pd-thumb-pulse 2s ease-out 1.5s infinite;
}
.pd-calc .b-slider-thumb.active {
  animation: none;
  box-shadow: 0 4px 21px rgba(0, 0, 0, 0.18), 0 0 0 12px rgba(88, 86, 232, 0.15);
}
.pd-calc .b-slider-thumb svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}
.pd-calc .b-slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pd-calc .b-slider-label-item {
  display: flex;
  flex-direction: column;
}
.pd-calc .b-slider-label-item.right {
  align-items: flex-end;
}
.pd-calc .b-slider-label-caption {
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
  line-height: var(--line-height-xs);
}
.pd-calc .b-slider-label-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-hero);
  line-height: var(--line-height-sm);
}
.pd-calc .zone-divider {
  height: 1px;
  background: var(--color-surface-heavy);
  margin: 20px 16px;
}
.pd-calc .zone-outcomes {
  background: var(--color-surface-page);
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.pd-calc .b-outcome-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.pd-calc .b-outcome-row + .b-outcome-row {
  margin-top: 16px;
}
.pd-calc .b-outcome-label {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  color: var(--color-secondary);
}
.pd-calc .b-outcome-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 130px;
  flex-shrink: 0;
}
.pd-calc .b-clear-date {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 700;
  color: var(--color-hero);
  text-align: right;
}
.pd-calc .b-clear-duration {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  font-weight: 400;
  color: var(--color-secondary);
  text-align: right;
}
.pd-calc .b-interest-value {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 700;
  color: var(--color-critical);
  text-align: right;
  flex-shrink: 0;
}
.pd-calc .c-savings-tile {
  border-radius: 8px;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 700;
  color: var(--color-hero);
  overflow: hidden;
  max-height: 0;
  padding: 0 16px;
  transition: max-height 400ms ease, padding 400ms ease, opacity 400ms ease;
  opacity: 0;
  background: var(--color-success-soft);
  border-left: 4px solid var(--color-success);
}
.pd-calc .c-savings-tile.visible {
  max-height: 160px;
  padding: 16px;
  margin-top: 20px;
  opacity: 1;
}
.pd-calc .zone-totals {
  background: var(--color-surface-page);
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-calc .b-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pd-calc .b-totals-label {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  font-weight: 900;
  color: var(--color-hero);
}
.pd-calc .b-total-amount {
  display: flex;
  align-items: baseline;
  gap: 1px;
  color: var(--color-hero);
  white-space: nowrap;
}
.pd-calc .b-total-symbol {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: 900;
}
.pd-calc .b-total-int {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: 900;
}
.pd-calc .b-total-dec {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: 900;
}
.pd-calc .b-breakdown-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.pd-calc .b-breakdown-left,
.pd-calc .b-breakdown-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  color: var(--color-hero);
}
.pd-calc .b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.pd-calc .b-dot-green {
  background: var(--color-success);
}
.pd-calc .b-dot-red {
  background: var(--color-critical);
}
.pd-calc .b-summary-bar {
  height: 12px;
  border-radius: 100px;
  background: var(--color-critical);
  overflow: hidden;
  width: 100%;
}
.pd-calc .b-summary-bar-fill {
  height: 100%;
  background: var(--color-success);
  border-right: 3px solid white;
  border-radius: 100px 0 0 100px;
  transition: width 0.3s ease, border-radius 0.3s ease;
}
.pd-calc .b-summary-bar-fill.full {
  border-right: none;
  border-radius: 100px;
}
.pd-calc .b-cta-btn {
  display: block;
  width: 100%;
  background: var(--color-cta);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-base);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
}
.pd-calc .b-cta-btn:hover, .pd-calc .b-cta-btn:focus, .pd-calc .b-cta-btn:focus-visible, .pd-calc .b-cta-btn:visited {
  background: var(--color-cta);
  color: #fff;
  text-decoration: none;
}
.pd-calc .b-cta-btn:hover:not(:disabled) {
  background: #b30263;
}
.pd-calc .b-cta-btn:active {
  background: #b30263;
  color: #fff;
  opacity: 0.9;
  transform: scale(0.98);
}
.pd-calc .c-amber-box {
  background: var(--color-warning-soft);
  border-left: 4px solid var(--color-warning-border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-calc .c-amber-box strong {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 700;
  color: var(--color-hero);
}
.pd-calc .c-amber-box span {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  color: var(--color-hero);
}
.pd-calc .info-box {
  background: var(--color-info-soft);
  border-left: 4px solid var(--color-aqua);
  border-radius: var(--radius-baseline);
  padding: 16px;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  color: var(--color-hero);
}
.pd-calc .info-box strong {
  color: var(--color-hero);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-size: var(--font-size-sm);
}
.pd-calc .info-box ul {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 400;
}
.pd-calc .info-box ul li {
  padding-left: 0;
}
.pd-calc .info-box ul li::marker {
  color: inherit;
  font-weight: inherit;
}
.pd-calc .pd-modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 17, 66, 0.55);
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}
.pd-calc .pd-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms ease, visibility 0s;
}
.pd-calc .pd-modal-sheet {
  background: var(--color-surface-page);
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pd-calc .pd-modal-overlay.open .pd-modal-sheet {
  transform: translateY(0);
}
.pd-calc .pd-modal-header {
  flex-shrink: 0;
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pd-calc .pd-modal-header-handle {
  width: 36px;
  height: 4px;
  border-radius: 100px;
  background: var(--color-surface-heavy);
  margin-bottom: 16px;
}
.pd-calc .pd-modal-header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pd-calc .pd-modal-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-hero);
  line-height: 24px;
}
.pd-calc .pd-modal-header-row .pd-modal-header-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
}
.pd-calc .pd-modal-header-row .pd-modal-header-close:hover, .pd-calc .pd-modal-header-row .pd-modal-header-close:focus, .pd-calc .pd-modal-header-row .pd-modal-header-close:focus-visible, .pd-calc .pd-modal-header-row .pd-modal-header-close:active {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  transform: translateY(-50%);
}
.pd-calc .pd-modal-header-row .pd-modal-header-close:hover:not(:disabled) {
  opacity: 0.7;
}
.pd-calc .pd-modal-header-row .pd-modal-header-close svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.pd-calc .pd-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pd-calc .pd-modal-hero {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-calc .pd-modal-hero h1 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: 900;
  color: var(--color-hero);
  margin: 0;
}
.pd-calc .pd-modal-hero p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 400;
  color: var(--color-secondary);
  margin: 0;
}
.pd-calc .pd-modal-footer {
  flex-shrink: 0;
  padding: 16px 32px 32px;
  background: var(--color-surface-page);
  border-top: 1px solid var(--color-surface-soft);
}
.pd-calc .pd-modal-done-btn {
  width: 100%;
  background: var(--color-cta);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-base);
  cursor: pointer;
}
.pd-calc .pd-modal-done-btn:hover, .pd-calc .pd-modal-done-btn:focus, .pd-calc .pd-modal-done-btn:focus-visible {
  background: var(--color-cta);
  color: #fff;
  text-decoration: none;
}
.pd-calc .pd-modal-done-btn:hover:not(:disabled) {
  background: #b30263;
}
.pd-calc .pd-modal-done-btn:active {
  background: #b30263;
  color: #fff;
  opacity: 0.9;
  transform: scale(0.99);
}
.pd-calc .pd-modal-done-btn:disabled {
  background: #f0a0c8;
  cursor: default;
}

@keyframes pd-fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pd-shimmer-sweep {
  0% {
    transform: translateX(-120%);
  }
  30% {
    transform: translateX(320%);
  }
  100% {
    transform: translateX(-120%);
  }
}
@keyframes pd-thumb-pulse {
  0% {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12), 0 0 0 8px rgba(88, 86, 232, 0.08);
  }
  60% {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12), 0 0 0 16px rgba(88, 86, 232, 0);
  }
  100% {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12), 0 0 0 8px rgba(88, 86, 232, 0);
  }
}

/*# sourceMappingURL=widget-persistent-debt-calculator.css.map */
