.calc {
    border: 1px solid #E1ECF1;
    box-sizing: border-box;
    margin-top: 55px;
    padding: 35px 70px;
    width: 955px;
}

.calc__title {
    color: #409ee2;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 37px;
}

.calc__subtitle {
    font-size: 14px;
    margin: 0 0 40px;
}

.calc__types {
    -ms-flex-align: center;
    align-items: center;
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -5px;
}

.calc__type {
    cursor: pointer;
    display: block;
    margin: 0 5px;
    text-align: center;
    width: 100%;
}

.calc__type input {
    display: none;
}

.calc__type input:checked + span {
    border-color: #E9F4FA;
    background: #E9F4FA;
    color: #465a65;
}

.calc__type span {
    background: #ffffff;
    box-sizing: border-box;
    border: 1px solid #E4EDF2;
    border-radius: 2px;
    display: block;
    color: #8ca0ac;
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.calc__elem__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #313131;
}

.calc__elem__content {
    position: relative;
}

.calc .calc__elem input {
    background: #F7F7F7;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #E3E5E9;
    color: #434343;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    outline: none;
    padding: 5px 20px;
    width: 100%;
}

.calc__total__sum {
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    padding-left: 55px;
    position: relative;
}

.calc__total__sum:before {
    background: url("../images/rub-icon.png") no-repeat center;
    background-size: contain;
    content: '';
    display: block;
    height: 27px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
}

.calc__total__sum__currency {
    font-size: 13px;
    font-weight: 800;
    margin-left: .7em;
}

.calc__total span {
    display: inline-block;
    font-size: 18px;
    color: #313131;
    margin-right: .9em;
}

.calc__actions {
    margin-top: 60px;
    text-align: center;
}

.calc__actions .btn {
    background: #249CE5;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    height: 60px;
    line-height: 60px;
    padding-left: 105px;
    padding-right: 105px;
}

.calc__actions .btn:hover {
    background: #2b72b8;
}

.calc__cost .calc__elem__content {
    width: 435px;
}

.calc__cost .calc__elem__content input {
    padding-right: 60px;
}

.calc__cost .calc__elem__content i {
    color: #434343;
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.calc header {
    margin-bottom: 50px;
}

.calc fieldset {
    border: none;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 40px;
    padding-bottom: 55px;
}

.calc__slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.calc__slider .range-slider {
    -ms-flex: 5;
    flex: 5;
}

.calc__slider .slider-display {
    -ms-flex: 1;
    flex: 1;
    margin-left: 40px;
    pointer-events: none;
}

.range-slider {
  height: 7px;
  background-color: #d5dce1;
  border: none;
  border-radius: 3.5px 0 0 3.5px;
  box-shadow: none;
}

.range-slider .noUi-connect {
  border-radius: 3.5px;
  background-color: #459fdf;
}

.range-slider .noUi-handle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #459fdf;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border: 8px solid #ffffff;
  top: -13px;
  cursor: pointer;
}

.range-slider .noUi-handle:hover {
  background-color: #2b72b8;
}

.range-slider .noUi-handle:before, .range-slider .noUi-handle:after {
  display: none;
}

.range-slider .noUi-pips .noUi-marker-horizontal.noUi-marker {
  width: 1px;
  background-color: #cad0d3;
}

.range-slider .noUi-pips .noUi-value-sub {
  color: #9ca7ad;
  font-family: "Open Sans";
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  top: 16px;
}