.input-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: url('/assets/img/eav_slider_img.png');
  background-size:100% 100%;
  background-repeat: no-repeat;
  color: #d3d3d3 !important;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.input-range-slider-yes::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #0b0898;
  background: url('/assets/img/check_circle.png');
  background-size:100% 100%;
  cursor: pointer;
}

.input-range-slider-no::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #0b0898;
  background: url('/assets/img/cross_circle.png');
  background-size:100% 100%;
  cursor: pointer;
}
.input-range-slider:hover {
  opacity: 1;
}

.input-range-slider-inactive::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #d3d3d3;
  cursor: pointer;
}

.input-range-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
