.slider {
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  width: 100%;
  position: relative;
  z-index: 3; margin: 4px 0 0 0;
}
.slider-container {
  position: relative;
  width: 102%;
  margin: 0 0 0 -29px;
}
.slider-lower-fill {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 18px;
  top: calc(50% - 10px);
  right: 0;
  /*background: linear-gradient(to right, #71c1ff, #71c1ff 33%, #599bd0 33%, #599bd0 66%, #3380bf 66%);*/
  background-color: #0077CA;
  border-radius: 10px;
  z-index: 2;
}
.slider-upper-fill {
  position: absolute;
  width: calc(100% - 32px);
  height: 18px;
  top: calc(50% - 10px);
  right: 0;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
}

.grid {
  width: 100%;
  position: absolute;
  top: 50%; z-index: 2;
}
.grid-item {
  position: absolute;
  margin-left: -7px;
  color: #0077CA; 
    top: -8px; font-size: 15px; height:40px; z-index: 11;
}
.lable {
    position: absolute;
    bottom: 0;
    width: 200px;}
.grid-item:nth-of-type(1) .lable{
 left: 8px;
}
.grid-item:nth-of-type(2) .lable{
 left: -17px;
}
.grid-item:nth-of-type(3) .lable{
 left: -24px;
}
.grid-item:nth-of-type(4) .lable{
 left: -5px;
}
.grid-item:nth-of-type(5) .lable{
 left: -80px;
}
.grid-item:nth-of-type(1) {
  left: 0%;
}
.grid-item:nth-of-type(2) {
  left: 25%;
}
.grid-item:nth-of-type(3) {
  left: 50%;
}
.grid-item:nth-of-type(4) {
  left: 74%;
}
.grid-item:nth-of-type(5) {
  left: 98.5%;
}
.hidedot.grid-item::before{display:none;}
.grid-item::before {
  content: "";
  display: block;
 height: 14px;
    width: 14px;
    border-radius: 50%;
  background-color: #b3b3b3;
  margin-left: 7px;z-index: 11;
}
.slider-label { position: absolute; right: 0; top: -24px;     font-size: 19px;}
/* IE */
.slider::-ms-track {
  width: 100%;
  height: 5px;
  background: transparent;
  color: transparent;
  border-color: transparent;
  border-width: 14px 0;
}
.slider::-ms-fill-lower {
  background: transparent;
}
.slider::-ms-thumb {
  border: none;
  width: 28px;
  height: 28px;
  border: 1px solid #0077CA;
  border-radius: 50%;
  background: #0077CA;
  cursor: pointer;
  position: relative;
  z-index: 4;
  margin-top: 4px;
}
.slider::-ms-tooltip {
  display: none;
}

/* Chrome */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 1px solid #0077CA;
  border-radius: 50%;
  background: #0077CA;
  cursor: pointer;
}

/* Firefox */
.slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 1px solid #0077CA;
  border-radius: 50%;
  background: #0077CA;
  cursor: pointer;
}
.slider::-moz-focus-outer {
  border: 0;
}