/* ----- ui range ----- */
.ui-range {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.ui-range__col {
  width: -webkit-calc(50% - 12px);
  width: calc(50% - 12px);
  height: 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  border: 2px solid #e7e7e7;
  border-radius: 2px;
}

.ui-range__col:first-child {
  margin-right: 24px;
}

.ui-range__col span {
  color: #898989;
}

.ui-range__val {
  min-width: 1px;
  padding: 0 10px 0 5px;
  font-size: 14px;
  border: none;
  text-align: center;
  outline: none;
}

.ui-range__slider {
  width: -webkit-calc(100% - 18px);
  width: calc(100% - 18px);
  height: 2px;
  margin-top: 20px;
  position: relative;
  color: #e7e7e7;
  background-color: currentColor;
}

.ui-range__slider::before {
  content: '';
  display: block;
  width: 18px;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background: currentColor;
}

.ui-range__slider .ui-slider-range {
  position: absolute;
  height: 2px;
  background: #2dc964;
}

.ui-range .ui-slider-handle {
  width: 18px;
  height: 18px;
  border: 2px solid #e7e7e7;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(8, 7, 7, 0.09);
          box-shadow: 0 6px 10px rgba(8, 7, 7, 0.09);
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
  top: 0;
  cursor: pointer;
}
