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

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

.slider-wrapper {height: 50px;}

.range-bar {
  background-color: #232323;
  border-radius: 15px;
  display: block;
  height: 3px;
  position: relative;
  width: 100%;
}

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

.range-handle {
  background-color: #026273;
  border-radius: 100%;
  cursor: pointer;
  height: 23px;
  left: 0;
  top: -10px;
  position: absolute;
  width: 23px;
}

.range-min,
.range-max {
  color: #232323;
  font-size: 12px;
  font-weight: 900;
  height: 20px;
  padding-top: 4px;
  position: absolute;
  text-align: center;
  top: 8px;
  width: 40px;
}

.range-max {
  right: 10px;
}

/**
 * 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;
}
.pull-right {
    float: right !important;
}