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

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

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

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

.range-handle {
  background-color: #F05A72;
  cursor: move;
  height: 20px;
  left: 0;
  top: -9px;
  position: absolute;
  width: 12px;
}
.range-value {
  left: 0;
  top: -28px;
  position: absolute;
  width: 12px;
}

.range-min,
.range-max {
  color: #181819;
  font-size: 12px;
  height: 30px;
  padding-top: 4px;
  
  margin-top: -10px;
  margin-right:-150px;
  line-height: 32px;
  position: absolute;
  top: -9px;
  width: 150px;
}

.range-min {
  left: -30px;
  display:none;
}

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

/**
 * 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;
}
.slider-text{
	margin-top:15px;
}
.slider-text .slider-text-area{
	/*float:left;*/
	width:100%;
}
.slider-text .slider-text-area textarea{
	width:100%;
	height:100px;
}
.slider-text .slider-text-buttons{
	float:right;
	padding-left:15px;

}
@media (max-width: 960px) {
	.range-min, .range-max{
		top:-40px;
		margin:0;
		padding:0;
	}
	.slider-text .slider-text-area{
		width:100%;
	}
	.slider-text .slider-text-area textarea{
		
	}
}