/* Price calculator
--------------------------------------------------------------------------------------- */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  padding: 0px 0px;
  text-align: center;
  background: #ffffff;
}
@media (min-width: 600px) {
  body {
    padding: 0px;
  }
}

#price-calculator {
  margin: 2em 0 0 0;
}

#price-calculator form {
  margin: 2em auto;
  max-width: 100%px;
}

#price-calculator fieldset {
  border: none;
  background: #f8f9fb;
  padding: 2em;
  margin: 0 0 1em 0;
  border-radius: 0.25em;
  text-align: left;
  width: 100%;
}

#price-calculator fieldset:hover {
  box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.1);
}

#price-calculator.rangeslider {
  background: #e7eaf0;
}

#price-calculator fieldset h2,
#price-calculator fieldset h3 {
  margin-top: 0;
  margin-bottom: 1em;
}

hr {
  border: none;
  margin: 0 0 2em 0;
}

#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;
}

#price-calculator .output--discount {
  color: #ffbc02;
}

#price-calculator .range-slider {
  width: 100%;
}

#price-calculator .range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 10px;
  border-radius: 10px;
  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: 70%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .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 .15s ease-in-out;
  -moz-transition: background .15s ease-in-out;
  transition: background .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: 22px;
  min-width: 62px;
  line-height: 42px;
  text-align: center;
  font-weight: 600;
}

#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 input[type="checkbox"],
#price-calculator input[type="radio"] {
  margin: 4px 0 0 0;
  padding: 0 0 0 0;
  line-height: 0;
  height: 0;
  float: left;
  display: inline-block;
}

#price-calculator label span {
  float: left;
  margin-left: 0.5em;
  margin-right: 1em;
}

#price-calculator small {
  font-size: 9px;
}

#ultra input[type="radio"] {
  display: none;
}

#ultra label {
  display: inline-block;
  background-color: #00a1da;
  color: #f8f9fb;
  padding: 0.5em 1.5em;
  /* font-family:Arial; */
  font-size: 16px;
  margin-right: 1em;
  border-radius: 2em;
  cursor: pointer;
  font-weight: 600;
  /* border: 1px solid #18374f; */
  width: 100%;
  margin-bottom: 1em;
  text-align: center !important;
}

#ultra label:last-item {
  margin-right: 0em !important;
}

#ultra label:hover {
  /*opacity:0.8;*/
  background-color: #ffbc02;
  color: #fff;
}

#ultra input[type="radio"]:checked + label {
  background-color: #18374f;
  color: #fff;
  border: none;
}

@media (min-width: 768px) {
  #ultra label {
    width: auto;
    margin-bottom: 0em;
  }
}
.output--seats {
  display: none !important;
}

.strikethrough {
  text-decoration: line-through;
}

#discount-cost {
  background: #FFCC00 !important;
  color: white !important;
}