/*	General CSS resets;
 *		The target itself is not affected, allowing
 *		the remainder of the document to use an
 *		alternate box-sizing model;
 *		Support for box-sizing is wide spread:
 *		http://caniuse.com/#search=box-sizing
 */
 .search_val .noUi-base{width:85%;}
 
 
	.noUi-target * {
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
		box-sizing: border-box;
-webkit-touch-callout: none;
    -ms-touch-action: none;
-webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
		cursor: default;
	}

/*	Main slider bar;
 *		Use box-shadow instead of border to keep absolute
 *		positioning unrelated to the styling.
 */
	.noUi-base {
		width: 99%;
		margin: 1px;
		height: 38px;
		position: relative;
		
		background: #ccc;
background: -webkit-linear-gradient(top, #bbb, #ddd);
background: -moz-linear-gradient(top, #bbb, #ddd);
background: linear-gradient(top, #bbb, #ddd);
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);

/*-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
*/
border: 1px solid #aaa;
height: 7px;

margin-top:5px;
}
	

/*	Handles + active state;
 */
	.noUi-handle {
		top: -7px;
		left: -6px;
		width: 44px;
		height: 44px;
		z-index: 1;
		position: relative;
		background: #EEE;
		border: 1px solid #015d9a;
		
/*		
		
		background: #e5e5e5;
background: -webkit-linear-gradient(top, #e5e5e5, #ddd);
background: -moz-linear-gradient(top, #e5e5e5, #ddd);
background: linear-gradient(top, #e5e5e5, #ddd);
-webkit-box-shadow: inset 0 2px 2px rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.2);
-moz-box-shadow: inset 0 2px 2px rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.2);
box-shadow: inset 0 2px 2px rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.2);

-webkit-border-radius: 13px;
-moz-border-radius: 13px;
border-radius: 13px;
border: 1px solid #999;*/
background:#0071bc;
width: 8px;
height: 18px;
z-index: 10;

	}
	.noUi-active {
		background: #0071bc;
		
	}

/*	Styling-only classes;
 *		Structured to prevent double declarations
 *		for various states of the slider.
 */
	.noUi-connect {
background-color: #9a9a9a;
/*
background: -webkit-linear-gradient(top, #3492c8, #2983b6);
background: -moz-linear-gradient(top, #3492c8, #2983b6);
background: linear-gradient(top, #3492c8, #2983b6);
*/
border-color: #166592;
	}
	.noUi-background {
		background: #DDD;
	}

/*	Functional styles for handle positioning;
 *		Note that the origins will inherit border radius
 *		from the parent, even though the default theme
 *		doesn't use curved borders.
 */
	.noUi-origin {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		border-radius: inherit;
	}
	
	.noUi-origin span{ display:block;
		white-space:nowrap;
		position:absolute;
		bottom: -22px;
		left: -42px;
		width: 80px;
		text-align: center;
		color:#ccc
	} 
	.noUi-origin span b{color:#ccc}
	
	.noUi-origin span b{font-weight:normal; font-size:16px; padding-left:1px}
	
	.noUi-origin span.rightsss {left:-35px}
	
	.noUi-origin + .noUi-origin {
		background: inherit !important;
	}
	.noUi-z-index {
		z-index: 10;
	}

/*	Adaptations for the vertical slider;
 *		Some standard styles have been extended to keep
 *		exceptions for the vertical slider as minimal as possible.
 */
	.noUi-vertical {
		width: 38px;
		height: 100%;
	}
	.noUi-vertical .noUi-origin {
		bottom: 0;
		left: 0;
	}
	.noUi-vertical .noUi-handle  {
		top: -23px;
		left: -3px;
	}

/*	Slider disabled state;
 */
	[disabled] .noUi-base {
		background: #DDD;
	}
	[disabled] .noUi-handle {
		background: #F7F7F7;
		cursor: not-allowed;
	}
	[disabled] .noUi-connect {
		background: #EEE;
	}

/*	Transition states;
 *		Support for transition is widely available,
 *		Only IE7, IE8 and IE9 will ignore these rules.
 *		Since this is merely a progressive enhancement,
 *		this is no problem at all.
 *		http://caniuse.com/#search=transition
 */
	.noUi-state-tap .noUi-origin {
		-webkit-transition: left 0.3s, top 0.3s;
		transition: left 0.3s, top 0.3s;
	}
	.noUi-state-blocked .noUi-connect {
		background: #7f8c8d;
	}
