.calculator {
  padding-top: 9.6rem;
  padding-bottom: 10.1rem;
  border-radius: 6rem;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #292E38;
  background-color: #ffffff;
}
.calculator .section-description {
  margin-bottom: 1.5em;
  font-weight: bold;
}
.calculator .calculator-additional-result .section-description {
    font-weight: bold;
    text-align: center;
    margin-bottom: 0rem;
}

@media screen and (min-width: 576px) {
  .calculator > .container-fluid {
    max-width: 135rem;
    padding: 0 4rem;
  }
}
.calculator-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: list;
}
.calculator-list-item {
  margin-bottom: 5rem;
}
.calculator-list-item:last-child {
  margin-bottom: 0;
}
.calculator-list-item h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.11em;
  font-size: 1.8rem;
  font-weight: bold;
}
.calculator-list-item h3::before {
  counter-increment: list;
  content: counter(list);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  border-radius: 50%;
  color: #2866E1;
  background-color: #EFF3F7;
}
.calculator-wrapper-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.calculator-radio + label {
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-radius: 5rem;
  background-color: #EFF3F7;
  cursor: pointer;
  transition: all 0.2s linear;
}
.calculator-radio + label:hover {
  color: #ffffff;
  background-color: #2866E1;
}
.calculator-radio:disabled + label {
  cursor: auto;
  opacity: 0.5;
}
.calculator-radio:disabled + label:hover {
  color: #292E38;
  background-color: #EFF3F7;
}
.calculator-radio:checked + label {
  color: #ffffff;
  background-color: #2866E1;
}
.calculator-radio-item {
  display: flex;
  align-items: center;
}
.calculator-radio-note {
  position: relative;
  margin-left: 0.6rem;
}
.calculator-radio-note::after {
  content: "";
  position: absolute;
  display: none;
  top: -1.2rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #2866E1;
  border-left: 1px solid #2866E1;
  background-color: #ffffff;
  transform: rotate(-45deg);
}
.calculator-radio-note::before {
  content: attr(data-note);
  display: none;
  position: absolute;
  bottom: calc(100% + 0.7rem);
  left: -0.5rem;
  width: 18.4rem;
  padding: 1.4rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #2866E1;
  border: 1px solid #2866E1;
  border-radius: 1rem;
  background-color: #ffffff;
}
@media screen and (max-width: 575.98px) {
  .calculator-radio-note::before {
    left: auto;
    right: -0.5rem;
  }
}
.calculator-radio-note:hover::after, .calculator-radio-note:hover::before {
  display: block;
}
.calculator-result {
  padding: 4rem 3rem;
  border-radius: 4rem;
  background-color: #EFF3F7;
}
/*.calculator-additional-result{*/
/*    margin-bottom: 1.29rem;*/
/*}*/
#get-consultation{
    margin-top: 1.29rem;
}
.calculator-result .section-description {
  margin-bottom: 1.29em;
}
.calculator-result-list-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #BCBFC6;
}
.calculator-result-list dt {
  font-weight: 500;
  color: #72757B;
}
.calculator-result-price {
  margin-top: 3rem;
  color: #2866E1;
}
.calculator-result-price .price-value {
  font-size: 2.4rem;
  font-weight: bold;
}
.calculator-result .button {
  text-align: center;
  padding-left: 1.7em;
  padding-right: 1.7em;
}
.calculator-range {
  width: 100%;
  border-radius: 1rem;
  background-color: #E0E4ED;
  height: 0.6rem;
  border: none;
  box-shadow: none;
  margin-right: 1.6rem;
}
.calculator-range .noUi-connect {
  background-color: #2866E1;
}
.calculator-range .noUi-handle::before,
.calculator-range .noUi-handle::after {
  display: none;
}
.calculator-range .noUi-handle {
  height: 2rem;
  width: 2rem;
  top: -0.7rem;
  right: -1rem;
  border-radius: 50%;
  background-color: #2866E1;
  box-shadow: none;
  border: none;
  cursor: pointer;
}
.calculator-meter input[type=number] {
  min-width: 7.5rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background-color: #EFF3F7;
  border: 2px solid #EFF3F7;
  margin-right: 1rem;
}
@media screen and (min-width: 576px) {
  .calculator-meter input[type=number] {
    padding: 0.8rem 0.8rem 0.8rem 2rem;
    width: 10.5rem;
  }
}
.calculator-meter input[type=number]:focus, .calculator-meter input[type=number]:focus-visible {
  border-color: #2866E1;
  outline: none;
  color: #2866E1;
}
.calculator-note {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #2866E1;
}
.calculator .button--primary:disabled {
  background-color: #72757B;
}/*# sourceMappingURL=calculator.css.map */