input[type=range] {
  -webkit-appearance: none;
    width: 100%;
    height:18px;
    margin: 2px 0;
    cursor: default;
    padding:0px;

}


input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
   background: #999999;
  border-radius: 6px;
}
input[type=range]::-webkit-slider-thumb {
  border: 1px solid #000000;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background: #ffffff;
  -webkit-appearance: none;
  margin-top: -5px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  background: #b4b4b4;
  border-radius: 6px;
}
input[type=range]::-moz-range-thumb {
  border: 1px solid #000000;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background: #ffffff;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #999999;
  border: 0px solid #000000;
  border-radius: 12px;
}
input[type=range]::-ms-fill-upper {
  background: #999999;
  border: 0px solid #000000;
  border-radius: 12px;
 }
input[type=range]::-ms-thumb {
  border: 1px solid #00001e;
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: #ffffff;
}

input[type=range]::-ms-tooltip {
    display: none;
}

input[type=range]:focus::-ms-fill-lower {
  background: #999999;
}
input[type=range]:focus::-ms-fill-upper {
  background: #999999;
}



/* Disabled */
input[type=range].disabled::-webkit-slider-runnable-track{
    background:#dddddd;
    cursor:not-allowed
}

input[type=range].disabled::-webkit-slider-thumb{
    background:#dddddd;
    border:1px solid #999999;
    cursor:not-allowed
}
input[type=range].disabled::-moz-range-track {
    background:#dddddd;
    cursor:not-allowed
}
input[type=range].disabled::-moz-range-thumb{
    background:#dddddd;
    border:1px solid #999999;
    cursor:not-allowed
}

input[type=range].disabled::-ms-fill-lower {
    background:#dddddd;
    cursor:not-allowed
}
input[type=range].disabled::-ms-fill-upper {
    background:#dddddd;
    cursor:not-allowed
}

input[type=range].disabled::-ms-thumb{
    background:#dddddd;
    border:1px solid #999999;
    cursor:not-allowed
}

/* Highlighted */
input[type=range].highlighted::-webkit-slider-runnable-track{
    background:#ffff66;
    border:1px solid #999999;
}
input[type=range].highlighted::-moz-range-track {
    background:#ffff66;
    border:1px solid #999999;
}
input[type=range].highlighted::-ms-fill-lower {
    background:#ffff66;
    border:1px solid #999999;
}
input[type=range].highlighted::-ms-fill-upper {
    background:#ffff66;
    border:1px solid #999999;
}