input[type='range'] {
  box-sizing: border-box;
  overflow: visible;
  position: absolute;
  -webkit-appearance: none;
  top: 50%;
  left: 50%;
  width: 20em;
  height: 1.25em;
  padding: 0 0.5em;
  border-radius: 0.625em;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 -1px 1px #9daabb, inset 0 1px 0.125em #0f1110;
  background: linear-gradient(to right top, #474747, #202020);
  /* Firefox & Chrome/ Opera need this, 
     otherwise font-size is smaller */
  font-size: 1em;
  cursor: pointer;
  /* wish I could style this asshole */
}
input[type='range']::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  z-index: -1;
  /* fix Firefox WTF */
  border: none;
  /* because IE */
  height: 2px;
  /* because IE & Chrome/ Opera */
  border-radius: 1px;
  transform: translateY(-1px);
  box-shadow: 0 2px #111;
  background: #4c4c4c;
}
.js input[type='range']::-webkit-slider-runnable-track {
  /* only Firefox & Chrome/ Opera */
  background-image: linear-gradient(90deg, #ffff00, #ff1493);
  background-repeat: no-repeat;
  background-size: 75% 100%;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -.5em;
  /* weird shit, Chrome */
  z-index: 1;
  border: none;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background: linear-gradient(-45deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 0, linear-gradient(45deg, #777777, rgba(119, 119, 119, 0) 65%), linear-gradient(-135deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 100%, linear-gradient(135deg, #777777, rgba(119, 119, 119, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 0, linear-gradient(45deg, rgba(119, 119, 119, 0) 35%, #777777), linear-gradient(-135deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 100%, linear-gradient(135deg, rgba(119, 119, 119, 0) 35%, #777777) 0 100% #ddd;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-size: 56% 56%;
  /* fix Chrome/ Opera */
}
input[type='range']::-moz-range-track {
  z-index: -1;
  /* fix Firefox WTF */
  border: none;
  /* because IE */
  height: 2px;
  /* because IE & Chrome/ Opera */
  border-radius: 1px;
  transform: translateY(-1px);
  box-shadow: 0 2px #111;
  background: #4c4c4c;
}
.js input[type='range']::-moz-range-track {
  /* only Firefox & Chrome/ Opera */
  background-image: linear-gradient(90deg, #ffff00, #ff1493);
  background-repeat: no-repeat;
  background-size: 75% 100%;
}
input[type='range']::-moz-range-thumb {
  z-index: 1;
  border: none;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background: linear-gradient(-45deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 0, linear-gradient(45deg, #777777, rgba(119, 119, 119, 0) 65%), linear-gradient(-135deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 100%, linear-gradient(135deg, #777777, rgba(119, 119, 119, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 0, linear-gradient(45deg, rgba(119, 119, 119, 0) 35%, #777777), linear-gradient(-135deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 100%, linear-gradient(135deg, rgba(119, 119, 119, 0) 35%, #777777) 0 100% #ddd;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  /* Firefox-only, it won't work in IE 
     and it's messed up in Chrome */
  cursor: ew-resize;
}
input[type='range']::-ms-track {
  z-index: -1;
  /* fix Firefox WTF */
  border: none;
  /* because IE */
  height: 2px;
  /* because IE & Chrome/ Opera */
  border-radius: 1px;
  transform: translateY(-1px);
  box-shadow: 0 2px #111;
  background: #4c4c4c;
  color: transparent;
}
input[type='range']::-ms-thumb {
  z-index: 1;
  border: none;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background: linear-gradient(-45deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 0, linear-gradient(45deg, #777777, rgba(119, 119, 119, 0) 65%), linear-gradient(-135deg, #777777, rgba(119, 119, 119, 0) 65%) 100% 100%, linear-gradient(135deg, #777777, rgba(119, 119, 119, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 0, linear-gradient(45deg, rgba(119, 119, 119, 0) 35%, #777777), linear-gradient(-135deg, rgba(119, 119, 119, 0) 35%, #777777) 100% 100%, linear-gradient(135deg, rgba(119, 119, 119, 0) 35%, #777777) 0 100% #ddd;
  background-repeat: no-repeat;
  background-size: 50% 50%;
}
input[type='range']::-ms-fill-lower {
  background: linear-gradient(90deg, #ffff00, #ff1493);
}
input[type='range']::-ms-fill-upper {
  background: transparent;
}
input[type='range']::-ms-tooltip {
  display: none;
}
input[type='range']:focus {
  outline: none;
  box-shadow: inset 0 -1px 1px #9daabb, inset 0 1px 0.125em #0f1110, 0 0 1em cyan;
}
.js input[type='range']:focus /deep/ #thumb:before {
  box-shadow: inset 0 -1px 1px #9daabb, inset 0 1px 0.125em #0f1110, 0 0 1em cyan;
}
.js input[type='range'] /deep/ #thumb:before {
  position: absolute;
  left: 100%;
  margin-left: 1.5em;
  padding: 0 0.5em;
  width: 3em;
  height: 1.66667em;
  border-radius: 0.83333em;
  box-shadow: inset 0 -1px 1px #9daabb, inset 0 1px 0.125em #0f1110;
  background: linear-gradient(to right top, #474747, #202020);
  font: 0.75em / 1.66667em verdana, sans-serif;
  text-align: right;
  content: "75%";
}
.base1 { width:40%; float:left; text-align:left; }
.base2 { width:40%; float:left; text-align:left; }
.base3 { width:20%; float:left; text-align:left; }
.texter-1 { font-size:10px; padding:0% 0%; cursor:pointer; }
.texter-2 { font-size:14px; }
.slidemainlabel { width:100%; float:left; }
.slidelabel1 { width:100%; float:left; }
.labeler { font-size:12px; padding:0px 0px; }
.slidelabel2 { width:100%; float:left; }
.labeler2 { font-size:12px; padding:0px 0px; }