input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 9.9px 0;
  height: 6px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background-image: transparent;
  border-radius: 25px;
  border: 0px solid rgba(1, 1, 1, 0);
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 3.4px solid #ffb739;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;

}
input[type=range]:focus::-webkit-slider-runnable-track {
  background-image: transparent;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  border-radius: 6px;
  border: 0px solid rgba(1, 1, 1, 0);
}

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 3.4px solid #ffb739;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #e5e5e5;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 50px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-fill-upper {
  background: #e5e5e5;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 50px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 3.4px solid #ffb739;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  height: 6px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #e5e5e5;
}
input[type=range]:focus::-ms-fill-upper {
  background: #e5e5e5;
}

.btn {
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  background: #ffdf39;
  border: 0;
}

.btn:hover {
  background: #ffd810;
}


.calc__price svg {
  vertical-align: middle;
  margin-top: -6px;
}

.calc__form {
  padding: 0 50px;
}

.calc__subtitle {
  font-size: 21px;
  margin-bottom: 10px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #aaa;
  padding: 5px 10px;
  margin: unset !important;
}
.range-labels li {
    list-style: none;
}
ul.range-labels li {
    padding: 0 0 0 7px;
    font-size: 12px;
}
.calc__range:first-child {
  /*margin-bottom: 35px;*/
}

.calc__price {
  font-size: 42px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 15px;
  display: block;
}

.calc__disclaimer {
  font-size: 15px;
  color: #aaa;
  font-style: italic;
}

.calc__info {
    padding: 30px;
    margin-top: 30px;
    background: #e5e5e5;
    color: black;
}



.calc__info .btn {
  font-size: 1em;
  margin-top: 10px;
}

@media (max-width: 1320px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .calc__subtitle {
    font-size: 16px;
  }
  .calc__disclaimer {
      font-size: 13px;
      margin-bottom: 0;
  }

  .calc__price {
    margin-bottom: 0;
  }

  .calc__form {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .calc__info {
    padding: 7px;
    margin-top: 25px;
    text-align: center;
  }
}

@media (max-width: 576px) {

  .calc__range:first-child {
      margin-bottom: 15px;
  }

  .calc__form {
      padding: 12px;
  }

  .calc__subtitle {
      font-size: 15px;
      margin-bottom: 5px;
  }

  .calc__price {
    font-size: 36px;
  }

  body {
    padding-top: 68px;
  }

}
