*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.range-slider {
  margin: 0 0 0 4px;
  padding: 0 0 12px 0;
  max-width: 1131px;
}

.range-slider.surf {
  max-width: 1042px;
}

.range-slider.foilboards {
  max-width: 754px;
}

.range-slider__range {
  -webkit-appearance: none;
  appearance: none;
  width: calc(100% - (169px));
  height: 10px;
  border-radius: 4px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 575px) {
  .range-slider__range {
      width: calc(100% - (132px));
  }
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D59B15;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
  background: #0d525d;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #D59B15;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #D59B15;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #0d525d;
}
.range-slider__range:active::-moz-range-thumb {
  background: #D59B15;
}
.range-slider__range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 6px #D59B15;
          box-shadow: 0 0 0 3px #fff, 0 0 0 6px #D59B15;
}

@media (max-width: 768px) {
   .range-slider__range::-webkit-slider-thumb {
     width: 32px;
     height: 32px;
     border-width: 6px;
     border-color: #fff;
     border-style: solid;
   }
   .range-slider__range::-moz-range-thumb {
     width: 20px;
     height: 20px;
     border: 0;
     border-radius: 50%;
     background: #D59B15;
     cursor: pointer;
     -webkit-transition: background .15s ease-in-out;
     transition: background .15s ease-in-out;
   }
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 167px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 2px 8px 8px 2px;
  background: #12707f;
  padding: 5px 10px 5px 32px;
  text-align: left;
  font-size: 0.750rem;
  font-family:"Brandon Grotesque Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.0250rem;
}

@media screen and (max-width: 575px) {
  .range-slider__value {
    width: 130px;
    padding:5px 8px;
  }
}

.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #12707f;
  border-bottom: 7px solid transparent;
  content: '';
}

::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}
