/* Price calculator
--------------------------------------------------------------------------------------- */

*, *:before, *:after {
  box-sizing: border-box;
}
/*body {
  font-family: sans-serif;
  padding: 15px 20px;
  text-align: center;
  background: #e7eaf0;
}
@media (min-width: 600px) {
  body {
    padding: 15px;
  }
}*/
#price-calculator {
  margin: 2em 0 0 0;
}
#price-calculator form {
  margin: 2em auto;
}
#price-calculator fieldset {
  border: none;
  background: #f8f9fb;
  padding: 1em;
  margin: 0 0 1em 0;
  border-radius: 0.25em;
  text-align: left;
  width: 100%;
}
#total-savings {
  border: solid 4px !important;
  border-color: green !important;
}
#price-calculator fieldset:hover {
  -webkit-box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.1);
}
#price-calculator.rangeslider {
  background: #e7eaf0;
}

#price-calculator .range-slider {
  margin: 0 0 0 0;
}
#price-calculator .output, #price-calculator .output--seats, #price-calculator .output--lisence-cost {
  /*text-align:center;*/
  margin: 0 auto;
  font-size: 2em;
  display: block;
  width: auto;
  margin: 0.5em 0 0 0;
  clear: both;
}

.output-fieldset {
    max-width: 350px;
}
#price-calculator .range-slider {
  width: 100%;
}
#price-calculator .range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
#price-calculator .range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
#price-calculator .range-slider__range::-webkit-slider-thumb:hover {
  background: #1abc9c;
}
#price-calculator .range-slider__range:active::-webkit-slider-thumb {
  background: #1abc9c;
}
#price-calculator .range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
#price-calculator .range-slider__range::-moz-range-thumb:hover {
  background: #1abc9c;
}
#price-calculator .range-slider__range:active::-moz-range-thumb {
  background: #1abc9c;
}
#price-calculator .range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #2c3e50;
  padding: 5px 10px;
  margin-left: 8px;
}
#price-calculator .range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
  content: '';
}
::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}
input::-moz-focus-inner, input::-moz-focus-outer {
  border: 0;
}
#price-calculator .rangeslider__handle {
  border-radius: 18px;
  min-width: 62px;
  top: -8px;
  height: 30px; 
  line-height: 30px;
  text-align: center;
  font-weight: 400;
}
#price-calculator .rangeslider__handle:after {
  background: 0;
}
.rangeslider__fill {
  background: #ffbc02 !important;
  position: absolute;
}
#price-calculator label {
  display: inline-block;
  padding: 0 0 0 0;
  margin: 0;
  vertical-align: middle;
}

#price-calculator label span {
  float: left;
  margin-left: 0.5em;
  margin-right: 1em;
}
#price-calculator small {
  font-size: 10px;
}
.rangeslider--horizontal {
    height: 15px !important;
}

/*
.row {
  display: flex;
}
.column {
  float: left;
  margin: 10px;
}
.left {
  width: 65%;
}
.right {
  width: 35%;
}
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}*/

.output--lisence-cost {
    color: red;
}
.output--total-savings {
    color: green;
}
.output--total-hours {
    color: green;
}
