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

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

.range-bar {
  float: left;
  position: relative;
  background-color: #f45256;  /*красный*/
  /*background-color: #4492f9; /*синий*!/*/
  border-radius: 15px;
  display: block;
  height: 4px;
  position: relative;
  width: 100%;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.15), 0px 1px 0px rgba(255, 255, 255, 0.1);
}


.range-quantity {
  float: left;
  /*background-color: #f45256;  /*красный*!/*/
  background-color: #4492f9; /*синий*/
  border-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  height: 100%;
  width: 0;  
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 0.1);
}

.range-handle {
  background: #eee;
  background: linear-gradient(to top, #fff, #ddd);
  border-radius: 100%;
  cursor: pointer;
  height: 24px;
  left: 0;
  top: -10px;
  position: absolute;
  width: 24px;
 -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.range-min,
.range-max {
  /*color: rgba(255, 255, 255, .25);*/
  color: rgba(0, 0, 0, .2);
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  height: 20px;
  position: absolute;
  top: -32px;
  width: 50px;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none !important;
}

.range-min {
  left: -0px;
  text-align: left;
}

.range-max {
  right: -0px;
  text-align: right;
}

/**
 * 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;
}