/* Functions & Mixins */
/* ==== Containers & Responsive Mixins ==== */
/* Defines convenience mixins for common breakpoint targets.
these are small, medium, mediumlarge, and large. These variables should be defined prior to use.
*/
/* Universal breakpoints */
.calculator {
  padding: 1rem 0 0;
}
.calculator__usage-message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 82.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .calculator__usage-message {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .calculator__usage-message {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .calculator__usage-message {
    width: 85rem;
  }
}
@media (min-width: 1280px) {
  .calculator__usage-message {
    width: 90rem;
  }
}
.calculator__checkbox {
  position: absolute;
  left: -200vw;
}
.calculator__checkbox + .calculator__label {
  position: relative;
  display: inline-block;
  margin-left: 1.75rem;
}
.calculator__checkbox + .calculator__label::after {
  content: "";
  -webkit-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #3b3c43;
  left: -30px;
  top: 10px;
}
.calculator__checkbox + .calculator__label::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #34657f;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  left: -26px;
  top: 14px;
}
.calculator__checkbox:checked + .calculator__label::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.calculator__checkbox:indeterminate + .calculator__label::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: transparent;
  border-left: 7px solid #34657f;
  border-bottom: 7px solid #34657f;
  border-right: 7px solid transparent;
  border-top: 7px solid transparent;
}
.calculator__checkbox:focus + .calculator__label:after {
  outline: 2px solid #3b3c43;
}
.calculator__label::after {
  top: -2px !important;
}
.calculator__label::before {
  top: 2px !important;
}
.calculator__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 82.5rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .calculator__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .calculator__inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .calculator__inner {
    width: 85rem;
  }
}
@media (min-width: 1280px) {
  .calculator__inner {
    width: 90rem;
  }
}
@media (min-width: 48.0625rem) {
  .calculator__inner {
    padding-top: 0;
  }
}
@media screen and (min-width: 64rem) {
  .calculator__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3.75rem;
  }
}
.calculator__inner.--centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calculator__header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 1rem 44px;
  -webkit-box-shadow: 0px 1px 12px #c7c4c4;
          box-shadow: 0px 1px 12px #c7c4c4;
  position: relative;
}
@media screen and (min-width: 64rem) {
  .calculator__header {
    min-height: 9.0625rem;
  }
}
@media screen and (min-width: 90rem) {
  .calculator__header {
    min-height: 8.125rem;
    padding-bottom: 57px;
  }
}
.calculator__heading {
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 30rem) {
  .calculator__heading {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 48rem) {
  .calculator__heading {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__heading {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
.calculator__heading.-small {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 30rem) {
  .calculator__heading.-small {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 48rem) {
  .calculator__heading.-small {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__heading.-small {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.calculator__button {
  display: inline-block;
  border: 0;
  padding: 0.875rem;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  background-color: #fbc600;
  color: #3b3c43;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
  text-transform: uppercase;
}
.calculator__button:focus {
  outline: 2px solid #3b3c43 !important;
}
.calculator__button:hover {
  background-color: #3b3c43 !important;
  color: #ffffff !important;
}
.calculator__button--home {
  background-color: #58a7af;
  color: #ffffff;
}
.calculator__button--home:hover {
  background-color: #4e97a3 !important;
}
.calculator__button:disabled, .calculator__button:disabled:hover {
  background-color: #cecece !important;
  opacity: 0.5 !important;
  color: #3b3c43 !important;
  cursor: not-allowed;
}
.calculator__step-number {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  height: 4.375rem;
  width: 4.375rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fbc600;
  font-weight: bold;
  color: #3b3c43;
}
.calculator__step-number-wrapper {
  -ms-flex-item-align: center;
      align-self: center;
  margin: 10px 0 0;
  position: relative;
}
.calculator__step-number-small {
  display: block;
  font-size: 18px;
}
.calculator__step-number-large {
  display: block;
  font-size: 36px;
}
@media screen and (min-width: 64rem) {
  .calculator__step-number {
    height: 5.125rem;
    width: 5.125rem;
    bottom: -41px;
  }
  .calculator__step-number-small {
    display: block;
    font-size: 20px;
  }
  .calculator__step-number-large {
    display: block;
    font-size: 38px;
  }
}
.calculator__step-number-three {
  position: absolute;
  bottom: -35px;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  height: 4.375rem;
  width: 4.375rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fbc600;
  font-weight: bold;
  color: #3b3c43;
  top: 70%;
  left: calc(50% - 120px);
}
@media screen and (min-width: 48rem) {
  .calculator__step-number-three {
    left: 98%;
    top: 51%;
  }
}
@media screen and (min-width: 64rem) {
  .calculator__step-number-three {
    height: 5.125rem;
    width: 5.125rem;
    bottom: -41px;
    top: 47%;
    left: 100%;
  }
}
.calculator__sales-mix {
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 1px 12px #c7c4c4;
          box-shadow: 0px 1px 12px #c7c4c4;
  width: 100%;
  position: relative;
}
.calculator__sales-mix:first-of-type {
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 64rem) {
  .calculator__sales-mix:first-of-type {
    margin-bottom: 0;
    margin-right: 1.5625rem;
  }
}
@media screen and (min-width: 64rem) {
  .calculator__sales-mix:last-of-type {
    margin-left: 1.5625rem;
  }
}
.calculator__percentages-inner-box {
  border: 0;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 48rem) {
  .calculator__percentages-inner-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: calc(50% - 0px);
    margin-right: 0px;
  }
  .calculator__percentages-inner-box:nth-child(2n) {
    margin-right: 0;
  }
}
.calculator__percentages_box {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.625rem;
}
@media (min-width: 48.0625rem) {
  .calculator__percentages_box {
    padding-top: 0;
  }
}
@media screen and (min-width: 48rem) {
  .calculator__percentages_box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 1.25rem;
  }
}
.calculator__percentages_box-inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.calculator__line {
  background-color: #3b3c43;
  margin: 2rem auto 0;
  display: block;
  width: calc(100% - 4rem);
  height: 1px;
}
@media screen and (min-width: 48rem) {
  .calculator__line {
    width: 1px;
    height: auto;
  }
}
.calculator__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  margin: 0 auto;
  width: 60%;
}
.calculator__list-item {
  position: relative;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
}
.calculator__list-item:first-child {
  margin-top: 1rem;
}
.calculator__list-item--instruction {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.75rem;
}
.calculator__list-item--instruction.-error {
  color: #ca3625;
}
.calculator__list-item-icon {
  padding: 0;
  background: none;
  border: none;
  margin-left: 0.3125rem;
}
.calculator__list-percent {
  width: 44px;
}
.calculator__list-item-title {
  color: #3b3c43;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .calculator__list-item-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.calculator__list-item-title.-with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calculator__list-percent-box, .calculator__list-input-box {
  width: 100%;
  margin: 0.25rem auto 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.calculator__list-percent-box:last-of-type, .calculator__list-input-box:last-of-type {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 64rem) {
  .calculator__list-percent-box:last-of-type, .calculator__list-input-box:last-of-type {
    margin-bottom: 0;
  }
}
.calculator__list-percent-box.-custom .calculator__list-percent, .calculator__list-input-box.-custom .calculator__list-percent {
  margin-left: auto;
}
.calculator__list-percent-box-item {
  color: #34657f;
  font-size: 1.5rem;
  margin: 0;
  padding-top: 0.25rem;
}
.calculator__list-input {
  font-weight: 500;
  width: 100%;
  color: #34657f;
  background-clip: padding-box;
  outline-color: #34657f;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  height: 2.8125rem;
  margin: 0;
  text-align: center;
}
.calculator__list-input-wrapper {
  width: 100%;
  border: 1px solid rgba(112, 112, 112, 0.25);
  background-color: #fff;
  color: #34657f;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .calculator__list-input-wrapper {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__list-input-wrapper {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.calculator__list-input-error {
  color: #ca3625;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity 300ms ease, margin 300ms ease;
  transition: opacity 300ms ease, margin 300ms ease;
  margin: 0.25rem -2rem 0.25rem;
  width: auto;
  height: auto;
  overflow: auto;
}
.calculator__list-input-error.-hidden {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.calculator__list-input.-error {
  border-color: #ca3625;
  outline-color: #ca3625;
}
.calculator__list-input.-error:focus, .calculator__list-input.-error:focus-visible {
  outline: 2px solid #ca3625;
}
@media all and (-ms-high-contrast: none) {
  .calculator__list-input.-error:focus, .calculator__list-input.-error:focus-visible {
    outline: 2px solid #ca3625;
  }
}
@supports (-ms-ime-align: auto) {
  .calculator__list-input.-error:focus, .calculator__list-input.-error:focus-visible {
    outline: 2px solid #ca3625;
  }
}
.calculator__list-input:focus, .calculator__list-input:focus-visible {
  outline: 2px solid #34657f;
}
@media all and (-ms-high-contrast: none) {
  .calculator__list-input:focus, .calculator__list-input:focus-visible {
    outline: 2px solid #34657f;
  }
}
@supports (-ms-ime-align: auto) {
  .calculator__list-input:focus, .calculator__list-input:focus-visible {
    outline: 2px solid #34657f;
  }
}
.calculator__list-input-button {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}
.calculator__list-input-button:hover {
  background-color: #d8d8d8;
}
.calculator__list-input-button > * {
  pointer-events: none;
}
.calculator__list-input-button[disabled], .calculator__list-input-button:disabled, .calculator__list-input-button.-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.calculator__list-input-button[disabled]:hover, .calculator__list-input-button:disabled:hover, .calculator__list-input-button.-disabled:hover {
  background-color: #d8d8d8;
}
.calculator__list-input-button[disabled]:focus, .calculator__list-input-button[disabled]:focus-visible, .calculator__list-input-button:disabled:focus, .calculator__list-input-button:disabled:focus-visible, .calculator__list-input-button.-disabled:focus, .calculator__list-input-button.-disabled:focus-visible {
  outline: none;
}
.calculator__list-input-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #3b3c43;
  display: inline-block;
}
.calculator__box-title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (min-width: 80rem) {
  .calculator__box-title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.calculator__cost-of-credit {
  position: relative;
  background-color: #3b3c43;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
@media screen and (min-width: 64rem) {
  .calculator__cost-of-credit {
    min-height: 19.375rem;
  }
}
.calculator__cost-of-credit-large {
  margin-bottom: 1.5rem;
}
.calculator__cost-of-credit-large-title, .calculator__cost-of-credit-overlay p {
  color: #fff;
  font-weight: bold;
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .calculator__cost-of-credit-large-title, .calculator__cost-of-credit-overlay p {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__cost-of-credit-large-title, .calculator__cost-of-credit-overlay p {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.calculator__cost-of-credit-overlay {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(59, 60, 67, 0.9);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.calculator__cost-of-credit-overlay p {
  text-transform: uppercase;
  max-width: 20rem;
  margin: 0 auto;
  text-align: center;
}
.calculator__cost-of-credit-overlay.-active {
  opacity: 1;
  z-index: 2;
}
.calculator__cost-of-credit-large-percentage {
  color: #fbc600;
  font-weight: bold;
  margin: 0.5rem 0 0;
  font-size: 56px;
  font-size: 3.5rem;
}
@media screen and (min-width: 48rem) {
  .calculator__cost-of-credit-large-percentage {
    font-size: 64px;
    font-size: 4rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__cost-of-credit-large-percentage {
    font-size: 79px;
    font-size: 4.9375rem;
  }
}
.calculator__cost-of-credit-small-title {
  color: #fff;
  font-weight: 500;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 48rem) {
  .calculator__cost-of-credit-small-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__cost-of-credit-small-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.calculator__cost-of-credit-small-percentage {
  color: #fbc600;
  font-weight: bold;
  margin: 0.5rem 0 0;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 48rem) {
  .calculator__cost-of-credit-small-percentage {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__cost-of-credit-small-percentage {
    font-size: 47px;
    font-size: 2.9375rem;
  }
}
.calculator__disclaimer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 82.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  box-sizing: border-box;
  padding-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .calculator__disclaimer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .calculator__disclaimer {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .calculator__disclaimer {
    width: 85rem;
  }
}
@media (min-width: 1280px) {
  .calculator__disclaimer {
    width: 90rem;
  }
}
.calculator__disclaimer::after {
  content: "";
  position: relative;
  bottom: -2rem;
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: rgba(59, 60, 67, 0.5);
}
.calculator__disclaimer a {
  display: inline-block;
  margin: 1rem auto 1.5rem;
  color: #34657f;
  font-weight: 500;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.calculator__disclaimer a:hover {
  opacity: 0.75;
}
@media screen and (min-width: 80rem) {
  .calculator__disclaimer a {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.calculator__disclaimer p {
  max-width: 39.375rem;
  margin: 0 auto;
}
.calculator__disclaimer-return {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: none;
  text-decoration: underline;
  color: #34657f;
  font-weight: 500;
  display: block;
  margin: 1.5rem auto 0;
  cursor: pointer;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.calculator__disclaimer-return:hover {
  opacity: 0.75;
}
@media screen and (min-width: 64rem) {
  .calculator__disclaimer-return {
    margin-top: -1rem;
  }
}
@media screen and (min-width: 80rem) {
  .calculator__disclaimer-return {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 48rem) {
  .calculator__disclaimer {
    padding-bottom: 4rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .calculator__disclaimer::after {
    bottom: -2.25rem;
  }
}

.tippy-box[style] {
  background-color: #fff !important;
  -webkit-box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2), 2px 2px 20px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2), 2px 2px 20px 4px rgba(0, 0, 0, 0.05);
  border-radius: 0 !important;
  border: 1px solid #707070;
  margin: 0 1rem;
  outline: 0;
}
@media screen and (min-width: 48pxrem) {
  .tippy-box[style] {
    margin: 0 1.25rem;
  }
}
.tippy-box[style] h3 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #34657f;
  margin: 1rem 0;
  padding-right: 2rem;
}
@media screen and (min-width: 48pxrem) {
  .tippy-box[style] h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.tippy-box[style] p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #3b3c43;
  margin: 0;
}
.tippy-box[style] p a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.tippy-box[style] p a:hover {
  opacity: 0.75;
}
.tippy-box[style] p + ul {
  margin-top: 0.75rem;
}
.tippy-box[style] .gray-text {
  color: #94969a;
}
.tippy-box[style] ul {
  padding-left: 1.125rem;
  margin: 0;
  list-style: disc;
}
.tippy-box[style] ul li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #3b3c43;
  margin: 0;
  padding: 0.375rem 0;
}
.tippy-box[style] .tippy-arrow[style] {
  color: #fff;
}
.tippy-box[style] .tippy-content[style] {
  padding: 1.25rem 1.125rem;
}
@media screen and (min-width: 48pxrem) {
  .tippy-box[style] .tippy-content[style] {
    padding: 1.5rem;
  }
}
.tippy-box[style] .tippy-close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #94969a;
  font-size: 32px;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  outline-offset: -2px;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__content {
  padding: 2rem 0;
  display: block;
  min-width: 75%;
  max-width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow-y: auto;
  color: #3b3c43;
}
.modal__content h3 {
  max-width: 80rem;
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 30rem) {
  .modal__content h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 48rem) {
  .modal__content h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.modal__text, .modal__content p {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 48rem) {
  .modal__text, .modal__content p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.anchor {
  position: absolute;
  top: -110px;
}