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

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

.range-bar {

  background-image: url('../images/age-progressbar.png');
  display: block;
  height: 43px;
  position: relative;
  width: 335px;
}

.range-quantity {
	background-color: #d70b36;
	border-bottom-left-radius: 5px;
	display: block;
	height: 7px;
	border-top-left-radius: 5px;
	margin-left: 8px;
}

.range-handle {
  background-color: #adadad;
	border-radius: 100%;
	cursor: move;
	height: 20px;
	left: 0;
	top: -8px;
	position: absolute;
	width: 20px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	border: 1px solid #919191;
	background: #c6c6c6;
}

.range-min,
.range-max {
  	color: #393939;
	font-size: 14px;
	height: 20px;
	padding-top: 4px;
	position: absolute;
	text-align: center;
	top: 22px;
	width: 24px;
	font-family: 'FuturaReg';
}

.range-min {
  left: -8px;
}

.range-max {
  right: -7px;
}

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