/* jxmot customizing */


html {
    --slider-active-color: #37adbf;
    --slider-inactive-color: #b2b2b2;
}

html #slide-test-5 {
  --slider-active-color: #606060;
  --slider-inactive-color: #f42191;
}


#slide-test-5 .range {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: #f32190;
}

.range input {
  width: 100%;
  top: 5px;
  position: absolute;
  height: 0;
  -webkit-appearance: none;
}

.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -8px 0  0;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  cursor: pointer;
  border: 0 !important;
}

.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0  0;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  cursor: pointer;
  border: 0 !important;
}

.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0  0;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 73%);
  cursor: pointer;
  border: 0 !important;
}

.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--slider-inactive-color);
}

.range input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--slider-inactive-color);
}

.range input::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--slider-inactive-color);
}

.range input:focus {
  background: none;
  outline: none;
}

.range-labels {
  margin: 12px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.range-labels li {
  text-align: center;
  color: #000;
  border: 1px solid #ddd;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  padding: 0px 10px;
  border-radius: 4px;
}

/* .range-labels li::before {
  position: absolute;
  top: -25px;
  right: 0;
  left: 5px;
  content: "";
  margin: 0 auto;
  width: 9px;
  height: 9px;
  background: var(--slider-inactive-color);
  border-radius: 50%;
} */

.range-labels .active {
  font-weight: 800;
  font-size: 17px;
  color: #f32190;
}

.range-labels .selected::before {
  background: var(--slider-active-color);
}

.range-labels .active.selected::before {
  display: none;
}
