.range-slider-container {
  margin-bottom: 30px;
}

label {
  display: block;
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.range-slider {
  position: relative;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  position: absolute;
  top: 0;
  height: 8px;
  background: transparent;
  outline: none;
  pointer-events: none;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #e57373;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.noUi-handle {
  border-radius: 50% !important;
  background-color: red !important;
  width: 20px !important;
  height: 20px !important;
}

.noUi-connect {
  background: #e57373 !important;
}
.noUi-target {
  width: 95%;
}

.noUi-horizontal {
  height: 8px !important;
}

.noUi-handle::after,
.noUi-handle::before {
  background: none !important;
}

.noUi-tooltip {
  border: none !important;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-19%, 0) !important;
}

.noUi-handle-upper .noUi-tooltip {
  transform: translate(-50%, 0) !important;
}

.product-item-image-bar-name {
  font-size: 14px;
  font-weight: 600;
  color: #ee575c;
}

input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #e57373;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

input[type='range']::-webkit-slider-runnable-track {
  height: 8px;
}

input[type='range']::-moz-range-track {
  height: 8px;
}

/* For custom track between thumbs */
.range-slider input[type='range']:nth-child(1) {
  z-index: 2;
}

.range-slider input[type='range']:nth-child(2) {
  z-index: 1;
}
