.credit-calculator {
  color: #3b3c43;
  margin: 3rem auto;
  background-color: #f7f7f7;
}
.credit-calculator__container {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 1440px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 48.0625rem) {
  .credit-calculator__container {
    padding: 1.25rem 5rem;
  }
}
@media (max-width: 48rem) {
  .credit-calculator__container {
    padding: 1.25rem 1.25rem;
  }
}
.credit-calculator__buttons-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.credit-calculator__button,
.credit-calculator__button-load {
  border: 0;
  padding: 0.9375rem 1.5625rem;
  background-color: #fbc600;
  color: #3b3c43;
  font-weight: 700;
  text-transform: uppercase;
  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;
  line-height: 1.1;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.credit-calculator__button-load:hover,
.credit-calculator__button:hover {
  background-color: #3b3c43;
  color: #fff;
}
.credit-calculator__button-load:focus,
.credit-calculator__button-load:focus-visible,
.credit-calculator__button:focus,
.credit-calculator__button:focus-visible {
  outline-color: #3b3c43;
}
.credit-calculator__button-load.-disabled,
.credit-calculator__button.-disabled {
  cursor: not-allowed;
}
.credit-calculator__button-load.-disabled:hover,
.credit-calculator__button.-disabled:hover {
  background-color: #fbc600;
  color: #3b3c43;
}
.credit-calculator__button-load.-disabled:focus,
.credit-calculator__button-load.-disabled:focus-visible,
.credit-calculator__button.-disabled:focus,
.credit-calculator__button.-disabled:focus-visible {
  outline: 0;
}
.credit-calculator__button {
  width: 10rem;
  margin-left: 2rem;
}
@media screen and (min-width: 48rem) {
  .credit-calculator__button {
    width: 13.125rem;
    margin-left: 0;
  }
}
.credit-calculator__heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.credit-calculator__heading-title {
  font-size: 1.875rem;
  font-weight: 400;
}
@media (min-width: 1000px) {
  .credit-calculator__heading-title {
    font-size: 3.125rem;
  }
}
.credit-calculator__heading-title-subtext {
  margin-top: 0;
  margin-left: 2rem;
}
@media screen and (min-width: 48rem) {
  .credit-calculator__heading-title-subtext {
    margin-left: 0;
  }
}
.credit-calculator__contents-container {
  width: calc(100% - 4rem);
  margin: 0 3rem 0 1rem;
}
@media screen and (min-width: 48rem) {
  .credit-calculator__contents-container {
    margin: 0;
    width: 50%;
  }
}
.credit-calculator__icon {
  display: none;
  width: 21.25rem;
}
@media screen and (min-width: 48rem) {
  .credit-calculator__icon {
    display: block;
  }
}
.credit-calculator__icon--mobile {
  width: 8rem;
}
@media screen and (min-width: 48rem) {
  .credit-calculator__icon--mobile {
    display: none;
  }
}
