.range-container {
}
.range-slider * {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
.range-slider {
  display: flex;
  position: relative;
  border-radius: 10px;
  flex-direction: column;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge,*/
}
.range-slider .bar {
  display: flex;
}
.range-slider .bar-left {
  width: 25%;
  background-color: #eceaff;
  border-radius: 10px 0px 0px 10px;
  padding: 3px 0px;
}
.range-slider .bar-right {
  width: 25%;
  background-color: #eceaff;
  border-radius: 0px 10px 10px 0px;
}
.range-slider .bar-inner {
  background-color: #586472;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: space-between;
  position: relative;
  justify-content: space-between;
}
.range-slider .bar-inner-left {
  width: 50%;
}
.range-slider .bar-inner-right {
  width: 50%;
}
.range-slider .thumb {
  background-color: white;

  position: relative;
  z-index: 1;
  cursor: pointer;
}
.range-slider .thumb::before {
  content: "";
  background-color: inherit;
  box-shadow: 0px 0px 10px rgb(182, 181, 181);
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 1;
  margin: -6px -12px;
  cursor: pointer;
}
.range-slider .input-type-range:focus + .thumb::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -7px;
  width: 11px;
  height: 11px;
  z-index: 2;
  border-radius: 50%;
  border: dotted 1px black;
  box-shadow: 0px 0px 5px white, inset 0px 0px 10px black;
}
.range-slider .caption {
  position: absolute;
  bottom: 35px;
  width: 2px;
  height: 2px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  display: none;
}
.range-slider .thumb .caption * {
  position: absolute;
  min-width: 30px;
  height: 30px;
  font-size: 75%;
  text-align: center;
  line-height: 30px;
  background-color: blue;
  border-radius: 15px;
  color: white;
  box-shadow: 0px 0px 5px black;
  padding: 0px 5px;
  white-space: nowrap;
  display: none;
}
.range-slider .thumb:active .caption {
  display: flex;
}
.range-slider .input-type-range:focus + .thumb .caption {
  display: flex;
}
.range-slider .input-type-range {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.range-slider .ruler {
  margin: 10px 0px -5px 0px;
  display: flex;
  /* display: none; */
  overflow: hidden;
}
.range-slider .ruler .ruler-rule {
  border-left: solid 1px;
  border-bottom: solid 1px;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 5px 0px;
}
.range-slider .ruler .ruler-rule:last-child {
  border-right: solid 1px;
}

.range-slider .ruler .ruler-sub-rule {
  border-left: solid 1px;
  /* border-bottom: solid 1px; */
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 3px 0px;
  bottom: 0px;
  margin-bottom: -5px;
}
.range-slider .ruler .ruler-sub-rule:first-child {
  border-left: none;
}

.range-slider .labels {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  margin-top: 10px;
  margin-bottom: -20px;
  /* display: none; */
}
.range-slider .label {
  font-size: 80%;
  display: flex;
  width: 1px;
  justify-content: center;
}
.range-slider .label:first-child {
  justify-content: start;
}
.range-slider .label:last-child {
  justify-content: end;
}
.range-slider.zero-ranage-margin .thumb-left {
  right: 12px;
}
.range-slider.zero-ranage-margin .thumb-right {
  left: 8px;
}
