@charset "UTF-8";
.box-inner {
  padding: 4px 0;
}

.middle {
  position: relative;
  width: 183px;
  height: 32px;
}
.middle .markers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 183px;
  margin-top: 8px;
}
.middle .markers option {
  font-size: 1.3rem;
  color: #B1B8BE;
}

.popover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12px;
}
.popover .value {
  border: none;
  background: transparent;
  font-size: 1.3rem;
  color: #B1B8BE;
  margin-top: 16px;
  width: 30px;
}

.slider {
  position: relative;
  z-index: 1;
  height: 4px;
}

.slider > .track {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #33363D;
}

.slider > .range {
  position: absolute;
  z-index: 2;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: var(--krds-color-light-primary-40);
}

.slider > .thumb {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  background-color: var(--krds-color-light-primary-40);
  border-radius: 50%;
}
.slider > .thumb::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-box-shadow: var(--krds-light-color-alpha-shadow2);
          box-shadow: var(--krds-light-color-alpha-shadow2);
}

.slider > .thumb.left {
  left: 25%;
  -webkit-transform: translate(0px, -4px);
          transform: translate(0px, -4px);
}

.slider > .thumb.right {
  right: 25%;
  -webkit-transform: translate(0px, -4px);
          transform: translate(0px, -4px);
}

input[type=range] {
  position: absolute;
  /* opacity로 가린 것을 이벤트도 비활성화하기 위해 */
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  opacity: 0;
}

input[type=range]::-webkit-slider-thumb {
  /* 겹쳐진 두 thumb를 모두 활성화 */
  pointer-events: all;
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 0 none;
  background-color: red;
  cursor: pointer;
  /* appearance를 해야 위의 스타일들을 볼 수 있음 */
  -webkit-appearance: none;
}
/*# sourceMappingURL=range-slider.css.map */
