.noUi-target, .noUi-target * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.noUi-target {
	vertical-align: middle;
	width: 100%;
	position: relative;
	direction: ltr;
	cursor: pointer;
	border-radius: 10px; // Height/2
	moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
	display: inline-block;
	margin: 10px 0px;
}

.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.noUi-origin {
	position: absolute;
	right: -0.5%;
	top: 0;
	left: 0;
	bottom: 0;
	border-radius: 10px;
}

.noUi-background {
	background: #E6E6E6;
	-moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.noUi-handle {
	position: relative;
	z-index: 1;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	background: #FFFFFF;
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-stacking .noUi-handle {
	z-index: 10;
}

.noUi-state-tap .noUi-origin {
	-webkit-transition: left 0.3s, top 0.3s;
	transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
	cursor: inherit !important;
}

.noUi-base, .noUi-handle {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.noUi-horizontal {
	height: 8px;
}

.noUi-horizontal .noUi-handle {
	width: 22px;
	height: 22px;
	left: -11px;
	top: -8px;
}

.noUi-vertical {
	width: 7px;
}

.noUi-vertical .noUi-handle {
	width: 22px;
	height: 22px;
	left: -11px;
	top: -8px;
}

.noUi-connect {

	/*
	  #C0EDEA
	  #69D2E7
	  #A7DBD8
	  #4ECDC4
	  #CFF09E
	  #A8DBA8
	  #79BD9A


	*/

	background: #CFF09E;
	-webkit-transition: background 450ms;
	transition: background 450ms;
}

.noUi-active {
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

[disabled].noUi-connect, [disabled] .noUi-connect {
	background: #B8B8B8;
}

[disabled].noUi-origin, [disabled] .noUi-handle {
	cursor: not-allowed;
}
