.home-calculator {
  padding: 0 16px 80px;
  color: var(--color-white);
  background: #0d0d0d;
  font-family: Roboto, Arial, sans-serif;
}
.home-calculator__inner {
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
}
.home-calculator__header {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  background: #0d0d0d;
}
.home-calculator__eyebrow, .home-calculator__title, .home-calculator__description, .home-calculator__saving {
  margin: 0;
}
.home-calculator__eyebrow {
  color: #a72226;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
.home-calculator__title {
  margin-top: 4px;
  color: var(--color-white);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.home-calculator__description {
  margin-top: 10px;
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.home-calculator__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-calculator__form, .home-calculator__result {
  min-width: 0;
  min-height: 600px;
}
.home-calculator__form {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px 36px 38px;
  background: #1a1b1d;
}
.home-calculator__modes {
  display: flex;
  margin: 0;
  padding: 0;
  border: 0;
}
.home-calculator__mode {
  min-width: 88px;
  min-height: 38px;
  padding: 9px 18px;
  color: var(--color-grey);
  background: #111114;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-calculator__mode[aria-pressed=true] {
  color: var(--color-white);
  background: var(--color-base);
}
.home-calculator__mode:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}
.home-calculator__fields {
  display: grid;
  width: 100%;
  margin-top: 27px;
  gap: 20px;
}
.home-calculator__field {
  display: grid;
  margin: 0;
  color: var(--color-grey);
  gap: 7px;
}
.home-calculator__field span {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}
.home-calculator__field input {
  width: 100%;
  min-width: 0;
  height: 48px;
  margin: 0;
  padding: 0 0 8px;
  color: var(--color-white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #515256;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.home-calculator__field input:focus {
  border-bottom-color: var(--color-base);
  outline: 0;
  box-shadow: none;
}
.home-calculator__status {
  width: 100%;
  margin: 14px 0 0;
  color: #ff7678;
  font-size: 13px;
  line-height: 1.35;
}
.home-calculator__submit {
  display: inline-flex;
  min-width: 206px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 22px;
  color: var(--color-white);
  background: var(--color-base);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}
.home-calculator__submit:hover, .home-calculator__submit:focus-visible {
  background: #b6161a;
}
.home-calculator__submit:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}
.home-calculator__result {
  display: flex;
  flex-direction: column;
  padding: 48px 36px 36px;
  background: var(--color-base-muted);
}
.home-calculator__result-title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(34px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
.home-calculator__saving {
  display: flex;
  align-items: baseline;
  margin-top: auto;
  gap: 10px;
}
.home-calculator__saving strong {
  color: var(--color-white);
  font-size: clamp(58px, 4vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.home-calculator__saving span {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-calculator__summary {
  margin: 28px 0 0;
}
.home-calculator__summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  gap: 20px;
}
.home-calculator__summary div:last-child {
  border-bottom: 0;
}
.home-calculator__summary dt,
.home-calculator__summary dd {
  margin: 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.home-calculator__summary dd {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .home-calculator {
    padding: 0 15px 20px;
  }
  .home-calculator__header {
    min-height: 170px;
    padding: 24px 16px;
  }
  .home-calculator__eyebrow {
    font-size: 16px;
  }
  .home-calculator__title {
    max-width: 330px;
    margin-top: 5px;
    font-size: 34px;
    line-height: 1.35;
  }
  .home-calculator__description {
    margin-top: 6px;
    font-size: 14px;
  }
  .home-calculator__body {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-calculator__form {
    min-height: 585px;
    padding: 24px 16px 40px;
  }
  .home-calculator__result {
    min-height: 350px;
    padding: 38px 16px 28px;
  }
  .home-calculator__fields {
    margin-top: 27px;
    gap: 25px;
  }
  .home-calculator__field input {
    height: 43px;
    font-size: 32px;
  }
  .home-calculator__submit {
    margin-top: auto;
  }
  .home-calculator__result-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .home-calculator__saving {
    margin-top: auto;
  }
  .home-calculator__saving strong {
    font-size: 40px;
  }
  .home-calculator__saving span {
    font-size: 16px;
  }
  .home-calculator__summary {
    margin-top: 26px;
  }
  .home-calculator__summary div {
    padding: 13px 0;
  }
  .home-calculator__summary dt,
  .home-calculator__summary dd {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-calculator__submit {
    transition: none;
  }
}

/*# sourceMappingURL=components-section-calculator-savings-style-5c332fb99e36.4487dbbbd79dc9db00a4.css.map */