/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-slider {
	position: relative;
	text-align: left;
	cursor: pointer;
}
.ui-slider .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider .ui-slider-handle:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	width: 32px;
	height: 32px;

}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: 4px;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -6px;
    margin-left: -8px;
}



.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}



/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}

.ui-widget-content {
	background: #D0D2D3;
	margin-left: 16px;
}
.ui-widget-content:before{
	content: '';
	position: absolute;
	top: 0;
	left: -16px;
	height: 100%;
	width: 16px;
	background: #414141;
}
.box.active .ui-widget-content:before{
	background: #e51e31;
}

.box__slider--lg .ui-widget-content {
	margin-left: 24px;
}

.box__slider--lg .ui-widget-content:before{
	left: -24px;
	width: 24px;
}


.box.active .ui-widget-header{
	background: #e51e31;
}


/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	cursor: pointer;
	background: #f02e41;
	font-weight: normal;
	color: #454545;
	outline: none;
	background: #606066;
}

.box.active .ui-state-default,
.box.active .ui-widget-content .ui-state-default,
.box.active .ui-widget-header .ui-state-default,
.box.active .ui-button{
	background: #f02e41;
}