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

#slider-absolute {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);

	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 30%;
	border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
	max-width: 300px;
	min-width: 290px;
	background-color: #fff;
	/*border: 1px solid #bbb;*/
	/*-webkit-box-shadow: rgba(0,0,0,0.3) 0px 0 10px;
    -moz-box-shadow: rgba(0,0,0,0.3) 0 0 10px;
    box-shadow: rgba(0,0,0,0.3) 0 0 10px;*/
      -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
	display: block;
	padding: 30px;    /*
	    -webkit-box-shadow: -15px -5px 31px -20px #000;
	    -moz-box-shadow: -15px -5px 31px -20px #000;
	    box-shadow: -15px -5px 31px -20px #000;
	    */
}
#slider-absolute.close {
	-webkit-transform: translate(400px, 0);
	-moz-transform: translate(400px, 0);
	-ms-transform: translate(400px, 0);
	-o-transform: translate(400px, 0);
	transform: translate(400px, 0);
}

.slider-label {
	margin-bottom: 10px;
}
.slider-min {
	position: absolute;
	text-align: left;
}
#slider-space {
	margin-bottom: 10px;
}
.slider-max {
	text-align: right;
}
.noUi-target {
    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;
    -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;
    box-shadow: rgba(0,0,0,0.3) 0 0 10px;
	position: relative;
	direction: ltr;
}
.noUi-base {
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1; /* Fix 401 */
}
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 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 0.2s, top 0.2s;
	transition: left 0.2s, top 0.2s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base, .noUi-handle {
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 18px;
}
.noUi-horizontal .noUi-handle {
	width: 30px;
	height: 30px;
	left: -15px;
	top: -7.5px;
}
.noUi-vertical {
	width: 18px;
}
.noUi-vertical .noUi-handle {
	width: 30px;
	height: 30px;
	left: -7.5px;
	top: -15px;
}

/* Styling;
 */
.noUi-background {
	background: #FFF;
}
.noUi-connect {
	-webkit-transition: background 450ms;
	transition: background 450ms;
}
.noUi-origin {
}
.noUi-target {
	/*border: 1px solid #bbb;*/
}
.noUi-target.noUi-connect {
}

/* Handles and cursors;
 */
.noUi-draggable {
	cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: n-resize;
}
.noUi-handle {
	-webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;
    -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;
    box-shadow: rgba(0,0,0,0.3) 0 0 10px;
    border-radius: 30%;
	cursor: pointer;
	/*border: 1px solid #bbb;*/
	background: #FFF;
}
.noUi-active {
}

/* Handle stripes;
 */

/* Disabled state;
 */
[disabled].noUi-connect, [disabled] .noUi-connect {
	background: #B8B8B8;
}
[disabled].noUi-origin, [disabled] .noUi-handle {
	cursor: not-allowed;
}