﻿input[type=range] {
  -webkit-appearance: none;
   background:transparent;
   cursor: pointer;
   border: 10px solid transparent;
}
input[type=range]:focus {
  outline: none;
}


/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  /*animate: 0.2s;*/
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #C6C6C6;
  border-radius: 25px;
  border: 0px solid #000101;

}
input[type=range]::-webkit-slider-thumb {
  /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
  border: 5px solid #000000;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  background: #BE0C13;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #C6C6C6;
}
input[type=range]:disabled::-webkit-slider-thumb {
  border: 5px solid #ccc;
  background: #d38688;
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  /*animate: 0.2s;*/
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #C6C6C6;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
  border: 5px solid #000000;
  height: 5px;
  width: 5px;
  border-radius: 15px;
  background: #BE0C13;
  cursor: pointer;
}
input[type=range]:disabled::-moz-range-thumb{
  border: 5px solid #ccc;
  background: #d38688;
}


/* All the same stuff for IE */
input[type=range]::-ms-track {
  margin-top : -34px;
  margin-bottom : -34px;
  width: 100%;
  height: 5px;
  cursor: pointer;
  /*animate: 0.2s;*/
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #C6C6C6;
  border-radius: 50px;
}
input[type=range]::-ms-fill-upper {
  background: #C6C6C6;
  border-radius: 50px;
}
input[type=range]::-ms-thumb {
  border: 5px solid #000000;
  height: 5px;
  width: 5px;
  border-radius: 15px;
  background: #BE0C13;
  cursor: pointer;
  margin-top: 0.5px;
}
input[type=range]:disabled::-ms-thumb {
  border: 5px solid #ccc;
  background: #d38688;
}
input[type=range]::-ms-tooltip
{
    display:none;
}

input[type=range]:disabled {
  cursor:not-allowed;
}

input[type=range]:disabled::-webkit-slider-runnable-track {
  cursor:not-allowed;
}

input[type=range]:disabled::-moz-range-track {
  cursor:not-allowed;
}

input[type=range]:disabled::-webkit-slider-thumb {
  cursor:not-allowed;
}

input[type=range]:disabled::-moz-range-thumb {
  cursor:not-allowed;
}
