/* 

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 80px;
      -webkit-appearance: none;
      background-color: #939393;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #13bba4;
      margin-top: -1px;
    }
    
    input[type='range']::-webkit-slider-thumb {
      width: 10px;
      -webkit-appearance: none;
      height: 20px;
      cursor: ew-resize;
      background: #434343;
      box-shadow: -80px 0 0 80px #e57d20;
    }

}

input[type="range"]::-moz-range-progress {
  background-color: #e57d20; 
}
input[type="range"]::-moz-range-track {  
  background-color: #939393;
}

input[type="range"]::-ms-fill-lower {
  background-color: #e57d20; 
}
input[type="range"]::-ms-fill-upper {  
  background-color: #939393;
}


*/
.squished{
  line-height: 1.3em;
}
.range-slider{
  /*
  border-right: 1px solid #dcddde;
  border-left: 1px solid #dcddde;
  height: 20px;
  */
}
.range-slider>input[type='range'] {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: none;
  width: 100%;
  height: 14px;
  top: 3px;
  background: #ffffff;
  outline: none;
  opacity: 0.9;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 1px solid #dcddde;
  /*
  border-top: 1px solid #dcddde;
  border-bottom: 1px solid #dcddde;
  */
}

.range-slider>input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #72c02c;
  cursor: pointer;
  box-shadow: -100vw 0 0 100vw #e6e7e8;
}

.range-slider>input[type='range']::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #72c02c;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .range-slider>input[type='range'] {

    height: 24px;

  }

  .range-slider>input[type='range']::-webkit-slider-thumb {

    width: 24px;
    height: 24px;

  }

  .range-slider>input[type='range']::-moz-range-thumb {
    width: 24px;
    height: 24px;

  }
}

