/**
 *  * Rangeslider
 *   */
.rangeslider {
  margin: 5px 0 10px;
  position: relative;
  background: #e6e6e6;
}

.rangeslider .rangeslider__fill,
.rangeslider .rangeslider__handle {
  position: absolute;
}

.rangeslider,
.rangeslider .rangeslider__fill {
  display: block;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rangeslider .rangeslider__handle {
  background: #fff;
  border: 1px solid #888;
  cursor: pointer;
  display: inline-block;
  position: absolute;
}

.rangeslider .rangeslider__handle:active {
  background: #999;
}

/**
 *  * Rangeslider - Horizontal slider
 *   */
.rangeslider-horizontal {
  height: 10px;
  border-radius: 4px;
}

.rangeslider-horizontal .rangeslider__fill {
  height: 100%;
  background: var(--brand-color);
  border-radius: 4px;
  top: 0;
}

.rangeslider-horizontal .rangeslider__handle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: -5px;
}

/**
 *  * Rangeslider - Vertical slider
 *   */
.rangeslider-vertical {
  margin: 20px auto;
  height: 150px;
  max-width: 10px;
  background: none;
}

.rangeslider-vertical .rangeslider__fill {
  width: 100%;
  background: var(--brand-color);
  box-shadow: none;
  bottom: 0;
}

.rangeslider-vertical .rangeslider__handle {
  width: 30px;
  height: 10px;
  left: -10px;
}

.rangeslider-vertical .rangeslider__handle:active {
  box-shadow: none;
}
