﻿input[type=range] {
  -webkit-appearance: none;
  margin: 5px 0px 0px 0px;
  padding:0px;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  background: #e1e1e1;
  border-radius: 6px;
  border: 1px solid #a2a2a2;
}
input[type=range]::-webkit-slider-thumb {
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border: 1px solid #a2a2a2;
  height: 34px;
  width: 28px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #e1e1e1;
}
input[type="range"]::-moz-range-track {
    background: none repeat scroll 0 0 #e1e1e1;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    /*  box-shadow: 0px 0px 0px #a2a2a2, 0 0 1px #0d0d0d; */
    cursor: pointer;
    height: 8.4px;
    width: 100%;
}
input[type="range"]::-moz-range-thumb {
    background: none repeat scroll 0 0 #ffffff;
    /*border: 1px solid #000000;*/
    border-radius: 8px;
    /*box-shadow: 1px 1px 1px #000000, 0 0 1px #0d0d0d;*/
    cursor: pointer;
    height: 34px;
    width: 28px;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #e2e2e2;
  border: 0.2px solid #a2a2a2;
  border-radius: 8px;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}
input[type=range]::-ms-fill-upper {
  background: #e2e2e2;
  border: 0.2px solid #a2a2a2;
  border-radius: 8px;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}
input[type=range]::-ms-thumb {
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border: 1px solid #a2a2a2;
  height: 34px;
  width: 28px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #e2e2e2;
}
input[type=range]:focus::-ms-fill-upper {
  background: #e2e2e2;
}
