/* ==========================================================================
   LENDFRIEND RENT VS. BUY CALCULATOR
   ========================================================================== */

#lf-rent-buy-calculator {
  --lf-dark-azure: #152f45;
  --lf-blue: #236092;
  --lf-yellow: #f9db6c;
  --lf-white: #ffffff;
  --lf-black: #000000;

  --lf-results-background: #f5f7fb;
  --lf-border: #d9e0e6;
  --lf-input-border: #aebbc7;
  --lf-muted: #65717c;
  --lf-required-red: #d7263d;
  --lf-buy-block: #152f45;
  --lf-rent-line: #b9ccea;
  --lf-yellow-background: #fff9df;

  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  color: var(--lf-dark-azure);
  font-family: inherit;
  line-height: 1.45;
}
#lf-rent-buy-calculator,
#lf-rent-buy-calculator input,
#lf-rent-buy-calculator select,
#lf-rent-buy-calculator button,
#lf-rent-buy-calculator a,
#lf-rent-buy-calculator h1,
#lf-rent-buy-calculator h2,
#lf-rent-buy-calculator h3,
#lf-rent-buy-calculator h4,
#lf-rent-buy-calculator h5,
#lf-rent-buy-calculator h6,
#lf-rent-buy-calculator p,
#lf-rent-buy-calculator span,
#lf-rent-buy-calculator label,
#lf-rent-buy-calculator strong {
  font-family: "Lato", Arial, Helvetica, sans-serif !important;
}
#lf-rent-buy-calculator *,
#lf-rent-buy-calculator *::before,
#lf-rent-buy-calculator *::after {
  box-sizing: border-box;
}

#lf-rent-buy-calculator [hidden] {
  display: none !important;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

#lf-rent-buy-calculator .lf-rent-buy-calculator__inner {
  width: 100%;
}

#lf-rent-buy-calculator .lf-rent-buy-calculator__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

#lf-rent-buy-calculator .lf-rent-buy-calculator__controls,
#lf-rent-buy-calculator .lf-results-card {
  padding: 24px;
  border: 1px solid var(--lf-border);
  border-radius: 16px;
  box-shadow:
    0 14px 34px rgba(21, 47, 69, 0.1),
    0 4px 12px rgba(21, 47, 69, 0.05);
}

#lf-rent-buy-calculator .lf-rent-buy-calculator__controls {
  background: var(--lf-white);
}

#lf-rent-buy-calculator .lf-rent-buy-calculator__results {
  height: 100%;
}

#lf-rent-buy-calculator .lf-results-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: rgba(249, 219, 108, 0.95);
  border-top: 5px solid var(--lf-yellow);
  background: var(--lf-results-background);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

#lf-rent-buy-calculator .lf-panel-header {
  margin-bottom: 23px;
}

#lf-rent-buy-calculator .lf-panel-title {
  margin: 0 0 6px;
  color: var(--lf-dark-azure);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

#lf-rent-buy-calculator .lf-results-equity-title,
#lf-rent-buy-calculator .lf-results-cost-title {
  margin: 0;
  color: var(--lf-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

#lf-rent-buy-calculator .lf-panel-subtitle {
  margin: 0;
  color: var(--lf-black);
  font-size: 15px;
  line-height: 1.45;
}

/* ==========================================================================
   FIELDS
   ========================================================================== */

#lf-rent-buy-calculator .lf-calculator-field {
  margin: 0 0 22px;
}

#lf-rent-buy-calculator .lf-calculator-field--compact {
  margin-bottom: 0;
}

#lf-rent-buy-calculator .lf-calculator-field label {
  display: block;
  margin: 0 0 7px;
  color: var(--lf-dark-azure);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

#lf-rent-buy-calculator .lf-required-label {
  margin-left: 4px;
  color: var(--lf-required-red);
  font-size: 80%;
  font-weight: 700;
}

#lf-rent-buy-calculator .lf-optional-label {
  color: var(--lf-muted);
  font-size: 14px;
  font-weight: 400;
}

/* ==========================================================================
   INPUTS
   ========================================================================== */

#lf-rent-buy-calculator .lf-input-shell,
#lf-rent-buy-calculator .lf-select-shell {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  border: 1.5px solid var(--lf-input-border);
  border-radius: 9px;
  background: var(--lf-white);
  align-items: center;
}

#lf-rent-buy-calculator .lf-input-shell:focus-within,
#lf-rent-buy-calculator .lf-select-shell:focus-within {
  border-color: var(--lf-blue);
  box-shadow: 0 0 0 3px rgba(35, 96, 146, 0.12);
}

#lf-rent-buy-calculator .lf-calculator-input,
#lf-rent-buy-calculator .lf-calculator-select {
  width: 100%;
  min-width: 0;
  height: 46px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--lf-dark-azure);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

#lf-rent-buy-calculator .lf-calculator-input::placeholder {
  color: #7d8591;
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
}

#lf-rent-buy-calculator .lf-input-shell__prefix,
#lf-rent-buy-calculator .lf-input-shell__suffix {
  flex: 0 0 auto;
  color: var(--lf-muted);
  font-size: 16px;
  font-weight: 600;
}

#lf-rent-buy-calculator .lf-input-shell__prefix {
  padding-left: 12px;
}

#lf-rent-buy-calculator .lf-input-shell__suffix {
  padding-right: 12px;
}

#lf-rent-buy-calculator
  .lf-input-shell__prefix
  + .lf-calculator-input {
  padding-left: 7px;
}

#lf-rent-buy-calculator
  .lf-input-shell--percent
  .lf-calculator-input {
  padding-right: 4px;
}

#lf-rent-buy-calculator .lf-calculator-input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

#lf-rent-buy-calculator
  .lf-calculator-input[type="number"]::-webkit-inner-spin-button,
#lf-rent-buy-calculator
  .lf-calculator-input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

/* ==========================================================================
   SELECT
   ========================================================================== */

#lf-rent-buy-calculator .lf-select-shell::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--lf-dark-azure);
  border-bottom: 2px solid var(--lf-dark-azure);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

#lf-rent-buy-calculator .lf-calculator-select {
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* ==========================================================================
   COLUMNS
   ========================================================================== */

#lf-rent-buy-calculator .lf-calculator-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

#lf-rent-buy-calculator .lf-down-payment-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 8px;
}

/* ==========================================================================
   ZIP
   ========================================================================== */

#lf-rent-buy-calculator .lf-location-note {
  min-height: 19px;
  margin: -2px 0 8px;
  color: var(--lf-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ==========================================================================
   PMI
   ========================================================================== */

#lf-rent-buy-calculator .lf-pmi-warning {
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(249, 219, 108, 0.95);
  border-left: 4px solid var(--lf-yellow);
  border-radius: 9px;
  background: var(--lf-yellow-background);
  color: var(--lf-dark-azure);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

#lf-rent-buy-calculator .lf-calculator-accordion {
  overflow: hidden;
  border-top: 1px solid var(--lf-border);
  border-bottom: 1px solid var(--lf-border);
}

#lf-rent-buy-calculator .lf-calculator-accordion__toggle {
  display: flex;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 16px 0;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  background: transparent !important;
  color: var(--lf-dark-azure) !important;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

#lf-rent-buy-calculator .lf-calculator-accordion__toggle:hover,
#lf-rent-buy-calculator .lf-calculator-accordion__toggle:focus,
#lf-rent-buy-calculator .lf-calculator-accordion__toggle:active {
  border: 0 !important;
  background: transparent !important;
  color: var(--lf-dark-azure) !important;
  box-shadow: none !important;
  transform: none !important;
}

#lf-rent-buy-calculator .lf-calculator-accordion__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

#lf-rent-buy-calculator .lf-calculator-accordion__icon::before,
#lf-rent-buy-calculator .lf-calculator-accordion__icon::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--lf-blue);
  content: "";
  transition: transform 180ms ease;
}

#lf-rent-buy-calculator .lf-calculator-accordion__icon::after {
  transform: rotate(90deg);
}

#lf-rent-buy-calculator
  .lf-calculator-accordion__toggle[aria-expanded="true"]
  .lf-calculator-accordion__icon::after {
  transform: rotate(0deg);
}

#lf-rent-buy-calculator .lf-calculator-accordion__content {
  padding: 8px 0 20px;
}

/* ==========================================================================
   RIGHT HEADINGS
   ========================================================================== */

#lf-rent-buy-calculator .lf-results-equity-title,
#lf-rent-buy-calculator .lf-results-cost-title {
  margin: 0;
  color: var(--lf-black);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

#lf-rent-buy-calculator .lf-results-equity-title {
  margin-bottom: 26px;
}

#lf-rent-buy-calculator .lf-results-cost-title {
  margin-top: 28px;
  margin-bottom: 16px;
}

#lf-rent-buy-calculator .lf-results-equity-title sup {
  margin-left: 1px;
  font-size: 55%;
  line-height: 0;
  vertical-align: super;
}

/* ==========================================================================
   EQUITY GRAPH
   ========================================================================== */

#lf-rent-buy-calculator .lf-equity-chart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, 1.05fr);
  gap: 18px;
  min-height: 126px;
  align-items: end;
}

#lf-rent-buy-calculator .lf-equity-chart__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
}

#lf-rent-buy-calculator .lf-equity-chart__label {
  display: block;
  margin-bottom: 5px;
  color: var(--lf-dark-azure);
  font-size: 14px;
  line-height: 1.3;
}

#lf-rent-buy-calculator .lf-equity-chart__label strong {
  font-weight: 700;
}

#lf-rent-buy-calculator .lf-equity-chart__rent-line {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--lf-rent-line);
}

#lf-rent-buy-calculator .lf-equity-chart__buy-line {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--lf-buy-block);
}

#lf-rent-buy-calculator
  .lf-equity-chart__item--buy.has-equity
  .lf-equity-chart__buy-line {
  display: none;
}

#lf-rent-buy-calculator .lf-equity-chart__buy-block {
  display: none;
  width: 100%;
  height: 0;
  border-radius: 8px;
  background: var(--lf-buy-block);
  opacity: 0;
  transition:
    height 220ms ease,
    opacity 180ms ease;
}

#lf-rent-buy-calculator
  .lf-equity-chart__item--buy.has-equity
  .lf-equity-chart__buy-block {
  display: block;
}

#lf-rent-buy-calculator .lf-equity-footnote {
  margin: 10px 0 0;
  color: var(--lf-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */

#lf-rent-buy-calculator .lf-results-slider {
  --lf-slider-thumb-size: 18px;
  margin-top: 18px;
}

#lf-rent-buy-calculator .lf-results-slider__track-wrap {
  position: relative;
  height: 24px;
}

#lf-rent-buy-calculator .lf-results-range {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 0;
  width: 100%;
  height: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background:
    linear-gradient(
      to right,
      var(--lf-blue) 0%,
      var(--lf-blue) var(--range-progress, 16.6667%),
      var(--lf-white) var(--range-progress, 16.6667%),
      var(--lf-white) 100%
    );
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

#lf-rent-buy-calculator
  .lf-results-range::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  background: transparent;
}

#lf-rent-buy-calculator .lf-results-range::-webkit-slider-thumb {
  width: var(--lf-slider-thumb-size);
  height: var(--lf-slider-thumb-size);
  margin-top: -5.5px;
  border: 4px solid var(--lf-white);
  border-radius: 50%;
  background: var(--lf-blue);
  box-shadow:
    0 0 0 2px rgba(35, 96, 146, 0.14),
    0 2px 7px rgba(21, 47, 69, 0.25);
  appearance: none;
  -webkit-appearance: none;
}

#lf-rent-buy-calculator .lf-results-range::-moz-range-track {
  height: 7px;
  border-radius: 999px;
  background: var(--lf-white);
}

#lf-rent-buy-calculator .lf-results-range::-moz-range-progress {
  height: 7px;
  border-radius: 999px;
  background: var(--lf-blue);
}

#lf-rent-buy-calculator .lf-results-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 4px solid var(--lf-white);
  border-radius: 50%;
  background: var(--lf-blue);
  box-shadow:
    0 0 0 2px rgba(35, 96, 146, 0.14),
    0 2px 7px rgba(21, 47, 69, 0.25);
}

#lf-rent-buy-calculator .lf-results-slider__marks {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: calc(var(--lf-slider-thumb-size) / 2);
  width: calc(100% - var(--lf-slider-thumb-size));
  height: 4px;
  pointer-events: none;
}

#lf-rent-buy-calculator .lf-results-slider__mark {
  position: absolute;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(21, 47, 69, 0.18);
  transform: translate(-50%, -0.5px);
}

#lf-rent-buy-calculator .lf-results-slider__mark.is-complete {
  background: rgba(255, 255, 255, 0.7);
}

#lf-rent-buy-calculator .lf-results-slider__labels {
  position: relative;
  width: calc(100% - var(--lf-slider-thumb-size));
  height: 20px;
  margin-top: 5px;
  margin-left: calc(var(--lf-slider-thumb-size) / 2);
  color: var(--lf-dark-azure);
  font-size: 12px;
  line-height: 1;
}

#lf-rent-buy-calculator .lf-results-slider__labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="0"] {
  left: 0%;
  transform: none;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="5"] {
  left: 16.6666667%;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="10"] {
  left: 33.3333333%;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="15"] {
  left: 50%;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="20"] {
  left: 66.6666667%;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="25"] {
  left: 83.3333333%;
}

#lf-rent-buy-calculator
  .lf-results-slider__labels
  span[data-year="30"] {
  left: 100%;
  transform: translateX(-100%);
}

/* ==========================================================================
   VIEW BUTTONS
   ========================================================================== */

#lf-rent-buy-calculator .lf-view-toggle {
  display: flex;
  margin-bottom: 18px;
  gap: 7px;
  flex-wrap: wrap;
}

#lf-rent-buy-calculator .lf-view-toggle__button {
  min-height: 34px;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid #929aa2;
  border-radius: 999px;
  background: transparent;
  color: var(--lf-black);
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

#lf-rent-buy-calculator .lf-view-toggle__button:hover,
#lf-rent-buy-calculator .lf-view-toggle__button:focus {
  border-color: var(--lf-dark-azure);
  background: transparent;
  color: var(--lf-black);
}

#lf-rent-buy-calculator .lf-view-toggle__button.is-active {
  border-color: var(--lf-dark-azure);
  background: var(--lf-dark-azure);
  color: var(--lf-white);
  font-weight: 700;
}

#lf-rent-buy-calculator .lf-view-toggle__button sup {
  margin-left: 1px;
  font-size: 70%;
  line-height: 0;
  vertical-align: super;
}

/* ==========================================================================
   COST COMPARISON
   ========================================================================== */

#lf-rent-buy-calculator .lf-cost-comparison {
  margin-bottom: 12px;
}

#lf-rent-buy-calculator .lf-cost-comparison__row {
  display: flex;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--lf-dark-azure);
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
}

#lf-rent-buy-calculator .lf-cost-comparison__row--buy {
  background: rgba(21, 47, 69, 0.055);
}

#lf-rent-buy-calculator .lf-cost-comparison__row--difference {
  margin-top: 4px;
}

#lf-rent-buy-calculator .lf-cost-comparison__row strong {
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   RESULT ALERT
   ========================================================================== */

#lf-rent-buy-calculator .lf-result-message {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(249, 219, 108, 0.95);
  border-left: 4px solid var(--lf-yellow);
  border-radius: 9px;
  background: var(--lf-yellow-background);
  color: var(--lf-dark-azure);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

#lf-rent-buy-calculator .lf-result-message--empty {
  border-color: var(--lf-border);
  border-left-color: var(--lf-border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--lf-muted);
  font-weight: 400;
}

#lf-rent-buy-calculator .lf-result-message__equity {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

/* ==========================================================================
   DISCLOSURE
   ========================================================================== */

#lf-rent-buy-calculator .lf-cost-breakdown-disclaimer {
  margin: 16px 0 0;
  color: var(--lf-muted);
  font-size: 12px;
  line-height: 1.5;
}

#lf-rent-buy-calculator .lf-cost-breakdown-disclaimer sup {
  color: var(--lf-dark-azure);
  font-size: 85%;
  font-weight: 700;
}

/* ==========================================================================
   CTA
   ========================================================================== */

#lf-rent-buy-calculator .lf-calculator-cta {
  display: inline-flex;
  width: auto;
  min-height: 48px;
  margin-top: 17px;
  padding: 12px 24px;
  border: 2px solid var(--lf-blue);
  border-radius: 999px;
  background: var(--lf-blue);
  color: var(--lf-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
}

#lf-rent-buy-calculator .lf-calculator-cta:hover,
#lf-rent-buy-calculator .lf-calculator-cta:focus {
  border-color: var(--lf-dark-azure);
  background: var(--lf-dark-azure);
  color: var(--lf-white);
  text-decoration: none;
}

/* ==========================================================================
   ESTIMATED COSTS
   ========================================================================== */

#lf-rent-buy-calculator .lf-cost-details {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--lf-border);
  border-radius: 16px;
  background: var(--lf-white);
  box-shadow:
    0 14px 34px rgba(21, 47, 69, 0.08),
    0 4px 12px rgba(21, 47, 69, 0.04);
}

#lf-rent-buy-calculator .lf-cost-details h2 {
  margin: 0 0 22px;
  color: var(--lf-black);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

#lf-rent-buy-calculator .lf-cost-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#lf-rent-buy-calculator .lf-cost-detail-card {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--lf-input-border);
  border-radius: 10px;
  background: var(--lf-white);
}

#lf-rent-buy-calculator .lf-cost-detail-card span {
  display: block;
  min-height: 43px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lf-border);
  color: var(--lf-black);
  font-size: 14px;
  line-height: 1.35;
}

#lf-rent-buy-calculator .lf-cost-detail-card strong {
  color: var(--lf-black);
  font-size: 16px;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 720px) {
  #lf-rent-buy-calculator .lf-rent-buy-calculator__layout {
    grid-template-columns: 1fr;
  }

  #lf-rent-buy-calculator .lf-rent-buy-calculator__results {
    height: auto;
  }
}

@media (max-width: 600px) {
  #lf-rent-buy-calculator .lf-cost-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  #lf-rent-buy-calculator .lf-rent-buy-calculator__controls,
  #lf-rent-buy-calculator .lf-results-card,
  #lf-rent-buy-calculator .lf-cost-details {
    padding: 18px;
  }

  #lf-rent-buy-calculator .lf-panel-title {
    font-size: 23px;
  }

  #lf-rent-buy-calculator .lf-calculator-two-column {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #lf-rent-buy-calculator .lf-down-payment-inputs {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  #lf-rent-buy-calculator .lf-equity-chart {
    grid-template-columns: minmax(0, 1fr) minmax(125px, 1fr);
    gap: 14px;
  }

  #lf-rent-buy-calculator .lf-results-equity-title,
  #lf-rent-buy-calculator .lf-results-cost-title {
    font-size: 20px;
  }

  #lf-rent-buy-calculator .lf-cost-detail-grid {
    grid-template-columns: 1fr;
  }

  #lf-rent-buy-calculator .lf-calculator-cta {
    width: 100%;
    align-self: stretch;
  }
}2