
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target *{
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;

	-webkit-touch-callout: none;
	-ms-touch-action: none;
}
.noUi-target{
	position: relative;

	direction: ltr;
}
.noUi-base{
	position: relative;
	z-index: 1; /* Fix 401 */
	width: 100%;
	height: 100%;
}
.noUi-origin{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.noUi-handle{
	position: relative;
	z-index: 1;
}
.noUi-stacking .noUi-handle{
	/* This class is applied to the lower origin when
   its values is > 50%. */
	z-index: 10;
}
.noUi-state-tap .noUi-origin{
	-webkit-transition: left .3s, top .3s;
	        transition: left .3s, top .3s;
}
.noUi-state-drag *{
	cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base{
	-webkit-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal{
	height: 18px;
}
.noUi-horizontal .noUi-handle{
	top: -6px;
	left: -17px;
	width: 34px;
	height: 28px;
}
.noUi-vertical{
	width: 18px;
}
.noUi-vertical .noUi-handle{
	top: -17px;
	left: -6px;
	width: 28px;
	height: 34px;
}

/* Styling;
 */
.noUi-background{
	background: #fafafa;
	box-shadow: inset 0 1px 1px #f0f0f0;
}
.noUi-connect{
	-webkit-transition: background 450ms;
	        transition: background 450ms;
	background: #3fb8af;
	box-shadow: inset 0 0 3px rgba(51,51,51,.45);
}
.noUi-origin{
	border-radius: 2px;
}
.noUi-target{
	border: 1px solid #d3d3d3;
	border-radius: 4px;
	box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}
.noUi-target.noUi-connect{
	box-shadow: inset 0 0 3px rgba(51,51,51,.45), 0 3px 6px -5px #bbb;
}

/* Handles and cursors;
 */
.noUi-dragable{
	cursor: w-resize;
}
.noUi-vertical .noUi-dragable{
	cursor: n-resize;
}
.noUi-handle{
	cursor: default;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	box-shadow: inset 0 0 1px #fff,
	inset 0 1px 7px #ebebeb,
	0 3px 6px -3px #bbb;
}
.noUi-active{
	box-shadow: inset 0 0 1px #fff,
	inset 0 1px 7px #ddd,
	0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after{
	position: absolute;
	top: 6px;
	left: 14px;
	display: block;
	width: 1px;
	height: 14px;
	content: '';
	background: #e8e7e6;
}
.noUi-handle:after{
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after{
	top: 14px;
	left: 6px;
	width: 14px;
	height: 1px;
}
.noUi-vertical .noUi-handle:after{
	top: 17px;
}

/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect{
	background: #b8b8b8;
}
[disabled].noUi-origin,
[disabled] .noUi-handle{
	cursor: not-allowed;
}
