/* nicer range input */

/* webkit */
input[type=range]:focus {
  outline: none;
}
input[type=range] {
  -webkit-appearance: none;
  background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
  box-shadow: 0px 0px 4px #000000;
  background-color: silver;
  border-radius: 25px;
  border: 0px solid black;
  min-height: 0.5cm;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 4px black;
  border: 0px solid black;
  height: 1cm;
  width: 1cm;
  border-radius: 0.5cm;
  background-color: #26a69a;
  background-image: url(image/hand.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  margin-top: -0.2cm;
  margin-bottom: -0.2cm;
  cursor: pointer;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background-color: silver;
}

/* mozilla */

input[type=range]::-moz-focus-inner {
  border: none;
  outline: none;
}
input[type=range]::-moz-range-track {
  box-shadow: 0px 0px 4px #000000;
  background: silver;
  border-radius: 25px;
  border: 0px solid black;
  min-height: 0.5cm;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 4px black;
  border: 0px solid black;
  height: 1cm;
  width: 1cm;
  border-radius: 0.5cm;
  background-color: #26a69a;
  background-image: url(image/hand.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  margin-top: -0.2cm;
  margin-bottom: -0.2cm;
  cursor: pointer;
}

/* msie */

input[type=range]::-ms-track {
  box-shadow: 0px 0px 4px #000000;
  background: silver;
  border-radius: 25px;
  border: 0px solid black;
  min-height: 0.5cm;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  /*
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  */
}
input[type=range]::-ms-fill-upper {
  /*
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  */
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 4px black;
  border: 0px solid black;
  height: 1cm;
  width: 1cm;
  border-radius: 0.5cm;
  background-color: #26a69a;
  background-image: url(image/hand.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  margin-top: -0.2cm;
  margin-bottom: -0.2cm;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  /* background: #ac51b5; */
}
input[type=range]:focus::-ms-fill-upper {
  /* background: #ac51b5; */
}

