html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.loan-calc {
  --lc-blue: var(--blue);
  --lc-blue-2: #0f3fbe;
  --lc-ink: var(--text);
  --lc-muted: var(--text-muted);
  --lc-line: rgba(0,0,0,.08);
  --lc-soft: rgba(37,99,235,.06);
  --lc-card: #fff;
  --lc-shadow: 0 24px 65px rgba(28,55,105,.10);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(255,255,255,1) 46%, rgba(248,250,252,1) 100%);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
  padding: 44px 22px 42px;
  isolation: isolate;
}

.loan-calc:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(37,99,235,.12), transparent 22%),
    radial-gradient(circle at 84% 2%, rgba(37,99,235,.06), transparent 22%);
  z-index: -2;
}

.loan-calc-wrap {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.loan-calc-art {
  position: absolute;
  left: 0;
  top: -10px;
  width: 330px;
  height: 230px;
  z-index: -1;
  opacity: .96;
  filter: drop-shadow(0 24px 35px rgba(37,99,235,.12));
}

.loan-calc-calculator {
  position: absolute;
  left: 72px;
  top: 16px;
  width: 124px;
  height: 160px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(237,244,255,1), rgba(255,255,255,1));
  transform: rotate(-9deg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.loan-calc-screen {
  width: 82px;
  height: 31px;
  border-radius: 10px;
  margin: 22px auto 14px;
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  box-shadow: inset 0 2px 8px rgba(255,255,255,.55);
}

.loan-calc-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 18px;
}

.loan-calc-keys i {
  height: 19px;
  border-radius: 7px;
  background: rgba(226,232,240,1);
  box-shadow: inset 0 -2px 0 rgba(100,120,160,.12);
}

.loan-calc-coins {
  position: absolute;
  left: 178px;
  top: 107px;
  width: 90px;
  height: 78px;
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  border-radius: 50%/18%;
  box-shadow: 0 18px 35px rgba(37,99,235,.18);
}

.loan-calc-coins:before,
.loan-calc-coins:after {
  content: "";
  position: absolute;
  left: 0;
  width: 90px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(147,197,253,1), rgba(59,130,246,1));
  box-shadow: inset 0 2px 5px rgba(255,255,255,.4);
}

.loan-calc-coins:before { top: -8px; }
.loan-calc-coins:after { top: 24px; }

.loan-calc-percent {
  position: absolute;
  left: 205px;
  top: 20px;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(37,99,235,1), rgba(147,197,253,1));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  transform: rotate(17deg);
}

.loan-calc-spark {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(219,234,254,1);
  border-radius: 10px;
  opacity: .7;
}

.loan-calc-s1 { left: 22px; top: 90px; }
.loan-calc-s2 { left: 273px; top: 78px; transform: rotate(18deg); }

.loan-calc-head {
  text-align: center;
  margin-bottom: 34px;
}

.loan-calc-head h2 {
  margin: 0 0 14px;
  font-weight: 950;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.8px;
  color: var(--lc-ink);
}

.loan-calc-head h2 span { color: var(--lc-blue); }

.loan-calc-head p {
  margin: 0;
  color: rgba(100,116,139,1);
  font-size: clamp(14px, 1.1vw, 16px);
}

.loan-calc-panel {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  box-shadow: var(--lc-shadow);
  backdrop-filter: blur(18px);
  padding: 26px 26px 18px;
}

.loan-calc-modes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}

.loan-calc-mode-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,1);
  background: rgba(255,255,255,.7);
  color: rgba(15,23,42,1);
  font-weight: 950;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.loan-calc-mode-tab input {
  width: 16px;
  height: 16px;
  accent-color: var(--lc-blue);
}

.loan-calc-ranges {
  display: grid;
  grid-template-columns: 1.18fr .95fr;
  gap: 40px;
  direction: ltr;
}

.loan-calc-range-box { direction: rtl; }

.loan-calc-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

.loan-calc-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(15,23,42,1);
}

.loan-calc-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37,99,235,.08);
  color: var(--lc-blue);
  display: grid;
  place-items: center;
}

.loan-calc-mini-icon i {
  font-size: 18px;
  line-height: 1;
}

.loan-calc-mini-icon i {
  font-size: 18px;
  line-height: 1;
}

.loan-calc-value {
  min-width: 168px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(37,99,235,.06);
  color: var(--lc-blue);
  font-weight: 900;
  border: 1px solid rgba(37,99,235,.10);
}

.loan-calc-range-wrap {
  position: relative;
  height: 44px;
}

.loan-calc-range-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  height: 6px;
  background: rgba(226,232,240,1);
  border-radius: 20px;
}

.loan-calc-fill {
  position: absolute;
  right: 0;
  top: 15px;
  height: 6px;
  background: linear-gradient(90deg, rgba(59,130,246,1), rgba(37,99,235,1));
  border-radius: 20px;
  pointer-events: none;
  width: 0%;
}

.loan-calc-thumb {
  position: absolute;
  top: 4px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 2px 9px rgba(30,55,100,.18);
  pointer-events: none;
  right: -14px;
}

.loan-calc-range {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.loan-calc-range-box.is-disabled {
  opacity: .55;
}

.loan-calc-range-box.is-disabled .loan-calc-thumb {
  opacity: .6;
}

.loan-calc-skip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 900;
  color: rgba(51,65,85,1);
  user-select: none;
  cursor: pointer;
  font-size: 13px;
}

.loan-calc-skip input {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid rgba(148,163,184,1);
  border-radius: 5px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  margin: 0;
}

.loan-calc-opt input:checked {
  background: var(--lc-blue);
  border-color: var(--lc-blue);
}

.loan-calc-opt input:checked::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
}

.loan-calc-opt input:focus-visible {
  outline: 3px solid rgba(37,99,235,.22);
  outline-offset: 2px;
}
  border: 2px solid rgba(148,163,184,1);
  border-radius: 5px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  margin: 0;
}

.loan-calc-flag input:checked {
  background: var(--lc-blue);
  border-color: var(--lc-blue);
}

.loan-calc-flag input:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -1px;
}

.loan-calc-flag input:focus-visible {
  outline: 3px solid rgba(37,99,235,.22);
  outline-offset: 2px;
}

.loan-calc-ticks {
  display: flex;
  justify-content: space-between;
  color: rgba(71,85,105,1);
  font-size: 12px;
  margin-top: 2px;
  white-space: nowrap;
  direction: rtl;
}

.loan-calc-ticks span {
  position: relative;
  padding-top: 12px;
}

.loan-calc-ticks span:before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  height: 8px;
  border-right: 1px solid rgba(203,213,225,1);
}

.loan-calc-sep {
  height: 1px;
  background: rgba(226,232,240,1);
  margin: 22px 0 14px;
}

.loan-calc-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1.34fr 210px;
  border: 1px solid rgba(226,232,240,1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.62);
}

.loan-calc-filter {
  padding: 18px 18px;
  border-left: 1px solid rgba(226,232,240,1);
}

.loan-calc-filter:first-child { border-left: 0; }

.loan-calc-filter h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(15,23,42,1);
}

.support-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(37,99,235,.28);
  z-index: 1055;
}

.support-fab i {
  font-size: 22px;
}

.support-fab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
}

.support-panel {
  position: fixed;
  right: 18px;
  bottom: 84px;
  width: min(390px, calc(100vw - 36px));
  max-height: min(72vh, 640px);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(27,55,100,.12);
  overflow: hidden;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 1055;
  backdrop-filter: blur(10px);
}

.support-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.support-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  background: linear-gradient(135deg, rgba(15,23,42,1), rgba(30,58,95,1));
  color: #fff;
}

.support-panel-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.support-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
}

.support-panel-icon i {
  font-size: 18px;
}

.support-panel-name {
  font-weight: 950;
  font-size: 14px;
}

.support-panel-sub {
  font-size: 12px;
  opacity: .75;
}

.support-panel-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
}

.support-panel-body {
  padding: 12px;
  overflow: auto;
  max-height: calc(min(72vh, 640px) - 72px);
}

.support-action {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,1);
  background: #fff;
  padding: 12px 12px;
  text-align: right;
  cursor: pointer;
  margin-bottom: 10px;
}

.support-action i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(37,99,235,.08);
  display: grid;
  place-items: center;
  color: rgba(37,99,235,1);
  font-size: 18px;
}

.support-action-title {
  font-weight: 950;
  color: rgba(15,23,42,1);
}

.support-action-sub {
  font-size: 12px;
  color: rgba(100,116,139,1);
  margin-top: 2px;
}

.support-back-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.support-back {
  border: 0;
  background: transparent;
  color: rgba(37,99,235,1);
  font-weight: 900;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-mini {
  border: 1px solid rgba(226,232,240,1);
  background: rgba(248,250,252,1);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 900;
  font-size: 12px;
}

.support-card {
  border: 1px solid rgba(226,232,240,1);
  border-radius: 18px;
  background: #fff;
  padding: 12px;
}

.support-card-title {
  font-weight: 950;
  color: rgba(15,23,42,1);
  margin-bottom: 10px;
}

.support-phone {
  display: block;
  font-weight: 950;
  color: rgba(37,99,235,1);
  text-decoration: none;
  padding: 10px 12px;
  border: 1px dashed rgba(37,99,235,.35);
  border-radius: 14px;
  background: rgba(37,99,235,.05);
}

.support-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.support-social.compact {
  margin-top: 10px;
}

.support-social-link {
  border: 1px solid rgba(226,232,240,1);
  background: rgba(248,250,252,1);
  border-radius: 999px;
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,1);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.support-input {
  width: 100%;
  border: 1px solid rgba(226,232,240,1);
  border-radius: 14px;
  padding: 11px 12px;
  outline: none;
  font-weight: 800;
  font-size: 13px;
  background: #fff;
  color: rgba(15,23,42,1);
}

.support-textarea {
  width: 100%;
  border: 1px solid rgba(226,232,240,1);
  border-radius: 14px;
  padding: 11px 12px;
  outline: none;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  color: rgba(15,23,42,1);
  margin-top: 10px;
  min-height: 110px;
  resize: vertical;
}

.support-btn {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  color: #fff;
  font-weight: 950;
  margin-top: 10px;
}

.support-hint {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(100,116,139,1);
  font-weight: 800;
  min-height: 18px;
}

.support-chatbox {
  border: 1px solid rgba(226,232,240,1);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  height: 270px;
  overflow: auto;
}

.support-msg {
  display: flex;
  margin-bottom: 10px;
}

.support-msg.visitor {
  justify-content: flex-start;
}

.support-msg.agent {
  justify-content: flex-end;
}

.support-bubble {
  max-width: 78%;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(226,232,240,1);
  background: rgba(248,250,252,1);
}

.support-msg.agent .support-bubble {
  background: rgba(37,99,235,1);
  border-color: rgba(37,99,235,1);
  color: #fff;
}

.support-meta {
  font-size: 11px;
  opacity: .8;
  font-weight: 900;
  margin-bottom: 6px;
}

.support-body {
  font-size: 13px;
  white-space: pre-wrap;
}

.support-time {
  font-size: 10px;
  opacity: .75;
  text-align: left;
  margin-top: 6px;
}

.support-chatinput {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.support-send {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: rgba(15,23,42,1);
  color: #fff;
  display: grid;
  place-items: center;
}

@media (max-width: 520px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-panel { right: 12px; bottom: 80px; width: calc(100vw - 24px); }
  .support-fab { right: 12px; bottom: 12px; }
}

.loan-calc-hint {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(148,163,184,1);
  border-radius: 50%;
  font-size: 12px;
  color: rgba(100,116,139,1);
  margin-right: 6px;
}

.loan-calc-opts {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.loan-calc-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(51,65,85,1);
  cursor: pointer;
  user-select: none;
  font-weight: 800;
}

.loan-calc-opt input {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid rgba(148,163,184,1);
  border-radius: 5px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  margin: 0;
}

.loan-calc-opt input:checked {
  background: var(--lc-blue);
  border-color: var(--lc-blue);
}

.loan-calc-opt input:checked::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
}

.loan-calc-opt input:focus-visible {
  outline: 3px solid rgba(37,99,235,.22);
  outline-offset: 2px;
}

.loan-calc-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,1);
  padding: .7rem 1rem;
  background: #fff;
  color: rgba(15,23,42,1);
  font-weight: 800;
}

.loan-calc-subselect {
  margin-top: 12px;
}

.loan-calc-subtitle {
  font-size: 13px;
  font-weight: 900;
  color: rgba(15,23,42,1);
  margin-bottom: 8px;
}

.loan-calc-flags {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.loan-calc-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(51,65,85,1);
  cursor: pointer;
  user-select: none;
  font-weight: 800;
}

.loan-calc-flag input {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid rgba(148,163,184,1);
  border-radius: 5px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  margin: 0;
}

.loan-calc-flag input:checked {
  background: var(--lc-blue);
  border-color: var(--lc-blue);
}

.loan-calc-flag input:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -1px;
}

.loan-calc-flag input:focus-visible {
  outline: 3px solid rgba(37,99,235,.22);
  outline-offset: 2px;
}

.loan-calc-cta {
  display: grid;
  place-items: center;
  padding: 16px;
}

.loan-calc-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15,23,42,.18);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.loan-calc-btn:hover {
  filter: brightness(1.06);
}

.loan-calc-results-slot {
  margin-top: 20px;
}

.loan-calc-loading {
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.loan-calc-inline-results {
  margin-top: 18px;
}

.loan-calc-inline-head {
  display: flex;
  justify-content: center;
  margin: 0 0 10px;
}

.loan-calc-inline-title {
  font-weight: 950;
  color: rgba(15,23,42,1);
  font-size: 1.05rem;
}

.loan-calc-empty {
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: rgba(124,45,18,1);
  font-weight: 800;
}

.loan-calc-result {
  margin-top: 10px;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr) 140px;
  align-items: center;
  background: linear-gradient(90deg, rgba(237,244,255,1), rgba(249,251,255,1) 52%, rgba(238,244,255,1));
  border: 1px solid rgba(226,232,240,1);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(35,75,140,.08);
  overflow: hidden;
}

.loan-calc-result-bank {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.loan-calc-result-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 46px;
}

.loan-calc-result-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loan-calc-result-banktext strong {
  display: block;
  color: rgba(15,23,42,1);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 950;
}

.loan-calc-result-banktext span {
  display: block;
  color: var(--blue);
  font-weight: 900;
  font-size: .86rem;
}

.loan-calc-metric {
  min-height: 68px;
  text-align: center;
  border-right: 1px solid rgba(219,228,241,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
}

.loan-calc-metric small {
  color: rgba(100,116,139,1);
  font-weight: 800;
  font-size: .78rem;
}

.loan-calc-metric b {
  font-size: .98rem;
  font-weight: 950;
  color: rgba(15,23,42,1);
}

.loan-calc-result-actions {
  height: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loan-calc-more {
  color: var(--blue);
  text-decoration: none;
  font-weight: 950;
  font-size: .9rem;
  white-space: nowrap;
}

.loan-calc-more:hover {
  color: var(--blue-light);
}

@media (max-width: 1100px) {
  .loan-calc-result {
    grid-template-columns: 1fr;
  }
  .loan-calc-metric {
    border-right: 0;
    border-top: 1px solid rgba(219,228,241,1);
    padding: 10px 14px;
  }
  .loan-calc-result-actions {
    border-top: 1px solid rgba(219,228,241,1);
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .loan-calc-art { opacity: .12; }
  .loan-calc-ranges, .loan-calc-filters { grid-template-columns: 1fr; }
  .loan-calc-filter { border-left: 0; border-bottom: 1px solid rgba(226,232,240,1); }
  .loan-calc-cta { padding: 14px; }
}

@media (max-width: 640px) {
  .loan-calc { padding: 28px 14px; }
  .loan-calc-art { display: none; }
  .loan-calc-panel { padding: 18px 14px 14px; }
  .loan-calc-topline { flex-direction: column; align-items: stretch; }
  .loan-calc-value { width: 100%; }
  .loan-calc-ticks { font-size: 10px; }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
