/**
 *
 * Main stylesheet for Powerange.
 * http://abpetkov.github.io/powerange/
 *
 */

/**
 * Horizontal slider style (default).
 */

.range-bar {
  background-color: #1B1B1B;
  border:1px solid white;
  border-radius: 15px;
  display: block;
  height: 12px;
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.range-quantity {
  background-color: #D5BA85;
  border-radius: 15px;
  display: block;
  height: 100%;
  width: 0;
}

.range-handle {
  background-color: transparent;
  cursor: move;
  height: 32px;
  left: 0;
  top: -10px;
  position: absolute;
  width: 32px;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-size: 32px 32px;
}

.range-min,
.range-max {
  font-size: 14px;
  font-weight: 600;
  height: 20px;
  padding-top: 4px;
  position: absolute;
  text-align: center;
  top: 13px;
  width: 24px;
}

.range-min {
  left: 0px;
}

.range-max {
  right: 0px;
}

/**
 * Vertical slider style.
 */

.vertical {
  height: 100%;
  width: 4px;
}

.vertical .range-quantity {
  bottom: 0;
  height: 0;
  position: absolute;
  width: 100%;
}

.vertical .range-handle {
  bottom: 0;
  left: -13px;
  top: auto;
}

.vertical .range-min,
.vertical .range-max {
  left: -10px;
  right: auto;
  top: auto;
}

.vertical .range-min {
  bottom: -30px;
}

.vertical .range-max {
  top: -30px;
}

/**
 * Style for disabling text selection on handle move.
 */

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * Style for handle cursor on disabled slider.
 */

.range-disabled {
  cursor: default;
}