/*! jQuery UI - v1.11.4 - 2016-06-06
* http://jqueryui.com
* Includes: core.css, slider.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */


.slider-container {
	margin-top: 50px;
	transition: all 600ms ease;
	height: 100px;
}

#image-container.active .slider-container {
	margin-top: 0;
} 

#slider {
    margin-right: 5px;
    background: #187B2E;
    /* duplicated height for loading */
    height: 42px;
    /* falls behind text box on mobile */
    z-index: 1;
}

#slider .ui-slider-range {
    background: #B32E2B;
}

#slider .ui-slider-handle, #slider .ui-slider-handle:focus {
    border: 1px solid #525252;
    border-radius: 5px;
    background: #ddd;
    background: rgba(0, 0, 0, 0.1);
    outline: 0;
    -webkit-box-shadow: 3px 3px 6px rgba(0,0,0,0.25);
    -moz-box-shadow: 3px 3px 6px rgba(0,0,0,0.25);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.25);
}

#slider .left-arrow {
    font-size: 84px;
    color: #B32E2B;
    position: absolute;
    left: -62px;
    top: -19px;
}

#slider .right-arrow {
    font-size: 84px;
    color: #187B2E;
    position: absolute;
    right: -62px;
    top: -19px;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 26px;
	height: 50px;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.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: 42px;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -4px;
	margin-left: -13px;
}
.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;
}