.creditCalculator ._top > *:last-child {
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccd1d9;
}

@media (min-width: 768px) {
  .creditCalculator ._top > *:last-child {
    padding-bottom: 60px;
  }
}

.creditCalculator ._bottom > *:first-child {
  margin-top: 0;
  padding-top: 40px;
  border-top: 1px solid #ccd1d9;
}

@media (min-width: 768px) {
  .creditCalculator ._bottom > *:first-child {
    padding-top: 60px;
  }
}

.creditCalculator label {
  float: left;
  width: 100%;
  font-weight: bold;
  margin-bottom: 0;
  clear: left;
}

.creditCalculator label + .slider {
  margin-top: 20px;
}

.creditCalculator .value {
  float: right;
  font-weight: bold;
}

.creditCalculator .form-group + .form-group {
  margin-top: 40px;
}

.creditCalculator .slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border-left: 2px solid #00008f;
  border-right: 2px solid #cccccc;
}

.creditCalculator .slider + label {
  margin-top: 40px;
}

.creditCalculator .slider-horizontal {
  float: left;
  height: 20px;
  width: 100%;
}

.creditCalculator .slider-track {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #00008f), color-stop(30%, #cccccc));
  background: linear-gradient(to right, #00008f 30%, #cccccc 30%);
  position: absolute;
  height: 6px;
  width: 100%;
  margin-top: 7px;
  left: 0;
  cursor: pointer;
}

.creditCalculator .slider-track-low {
  height: 100%;
}

.creditCalculator .dot {
  position: relative;
  left: 28%;
  top: -4px;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  display: inline-block;
}

.creditCalculator .dot.dotDefault {
  background-color: #00008f;
  border: 2px solid white;
}

.creditCalculator .dot.dotDrag {
  background-color: white;
  border: 2px solid #00008f;
}

.creditCalculator .clear {
  clear: both;
}

.creditCalculator .box {
  position: relative;
  margin-top: 15px;
  padding: 20px;
  width: 100%;
  color: #fff;
  background-color: #3032c1;
}

@media (min-width: 768px) {
  .creditCalculator .box {
    margin-top: 0;
    margin-left: 10px;
  }
}

.creditCalculator .box label span {
  font-weight: normal;
}

.creditCalculator .box .result {
  margin-top: 10px;
  font-weight: bold;
}

.creditCalculator .box::after {
  content: '';
  position: absolute;
  margin-top: 0;
  margin-left: -11px;
  left: 50%;
  top: -12px;
  width: 22px;
  height: 28px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #3032c1;
}

@media (min-width: 768px) {
  .creditCalculator .box::after {
    margin-left: 0;
    margin-top: -12px;
    left: -5px;
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.creditCalculator .btn {
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .creditCalculator p {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    max-width: 100%;
  }
}

