.range-slider__container {
  position: relative;
}

.range-slider__bar {
  background-color: #e5e5e5;
  height: 5px;
  margin-bottom: 10px;
}
.range-slider__bar--style_01 {
  border-radius: 2.5px;
}

.range-slider__handle {
  position: absolute;
  top: -5px;
  height: 9px;
  width: 16px;
  background-color: #ff5252;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.range-slider__handle--style_01 {
  height: 16px;
  border-radius: 8px;
}
.range-slider__handle--style_02 .range-slider__handle__item {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 10px;
  background-color: #ff5252;
}
.range-slider__handle--style_02 .range-slider__handle__item:before {
  position: absolute;
  top: 10px;
  content: "";
  border-style: solid;
  border-color: #ff5252 transparent;
  border-width: 6px 8px 0;
}

.range-slider__handle-area {
  position: absolute;
  top: -23px;
  height: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.range-slider__handle-area:hover {
  cursor: pointer;
}

.range-slider__scale {
  height: 8px;
  margin-bottom: 10px;
}
.range-slider__scale__item {
  position: absolute;
  border-left: 1px solid #929292;
  height: 4px;
}
.range-slider__scale__item:nth-child(2n) {
  height: 8px;
}

.range-slider__timezone {
  display: table;
  width: 100%;
}
.range-slider__timezone__item {
  display: table-cell;
  width: 20%;
  text-align: center;
  font-size: 13px;
  color: #878787;
}
