/* jxmot customizing */

html {
    --slider-active-color: #777;
    --slider-inactive-color: #999;
    --slider-wrong-color: red;
    --slider-right-color: green;
}

html #slide-captcha {
    --slider-active-color: #777;
    --slider-inactive-color: #777;
    --slider-wrong-color: red;
    --slider-right-color: green;
    margin-bottom: 10px;
    margin-top: 0;
}

/* ^jxmot customizing */

.range {
  position: relative;
  width: 370px;
  height: 5px;
}

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

.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -8px 0 0 0;
  border-radius: 50%;
  background: var(--slider-active-color);
  cursor: pointer;
  border: 0 !important;
}

.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0  0;
  border-radius: 50%;
  background: var(--slider-active-color);
  cursor: pointer;
  border: 0 !important;
}

.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0  0;
  border-radius: 50%;
  background: var(--slider-active-color);
  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: 1px -45px 0;
  padding: 0;
  list-style: none;
}

.range-labels li {
  position: relative;
  float: left;
  width: 88.6px;
  text-align: center;
  color: var(--slider-inactive-color);
  font-size: 14px;
  cursor: pointer;
  padding-left: 5px;
  left: 5px;
}

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

.range-labels .active {
  color: var(--slider-right-color);
  font-weight: bold;
}

.range-labels .wrong {
  color: var(--slider-wrong-color);
}

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

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

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