/* 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 * {
	box-sizing: border-box;
}

.noUi-target {
	position: relative;
	direction: ltr;
}

.noUi-base {
	position: relative;
	z-index: 1;
	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 {
	z-index: 10;
}

.noUi-state-tap .noUi-origin {
	transition: left .3s, top .3s;
}

.noUi-state-drag * {
	cursor: inherit !important;
}

.noUi-base {
	transform: translate3d(0,0,0);
}


.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;
}


.noUi-background {
	background: #fafafa;
	box-shadow: inset 0 1px 1px #f0f0f0;
}

.noUi-connect {
	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;
}

.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].noUi-connect, [disabled] .noUi-connect {
	background: #b8b8b8;
}

[disabled].noUi-origin, [disabled] .noUi-handle {
	cursor: not-allowed;
}
