/*!
 * jQuery UI CSS Framework 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* 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: 1.2em;
	height: 1.2em;
	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: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.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;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: pinch-zoom; touch-action: pinch-zoom; /* direct pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}

	.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

	.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
	}

	.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
		text-align: center;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }

	.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
	
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
	
	.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }

	.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}

	.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
	.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(mCSB_buttons.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
	
	
	/* theme: "dark-2" */

	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }


	/* theme: "dark-thick" */
	
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
	
	
	/* theme "rounded-dots-dark" */
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
		background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
		background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 8px;
		margin: 4px 0;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
	}

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 8px;
		margin: 4px auto;
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "3d-dark" */
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
	
	
	/* theme: "3d-thick-dark" */
	
	.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
	 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #fff; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
	
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "dark-3" */
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2);
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*
Theme Name: Dans Plants
Theme URI: http://splashbox.com.au
Author: Splashbox
Author URI: http://splashbox.com.au
Description: Splashbox Theme (2016)
Tags: Blank, HTML5, CSS3

License: MIT
License URI: http://opensource.org/licenses/mit-license.php
*/
/*@import "compass";*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #428bca;
  text-decoration: none;
}
a:hover, a:focus {
  /*    color: $link-hover-color;
      text-decoration: underline;*/
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1600px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }

  .col-xl-1 {
    width: 8.33333%;
  }

  .col-xl-2 {
    width: 16.66667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.33333%;
  }

  .col-xl-5 {
    width: 41.66667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.33333%;
  }

  .col-xl-8 {
    width: 66.66667%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33333%;
  }

  .col-xl-11 {
    width: 91.66667%;
  }

  .col-xl-12 {
    width: 100%;
  }

  .col-xl-pull-0 {
    right: auto;
  }

  .col-xl-pull-1 {
    right: 8.33333%;
  }

  .col-xl-pull-2 {
    right: 16.66667%;
  }

  .col-xl-pull-3 {
    right: 25%;
  }

  .col-xl-pull-4 {
    right: 33.33333%;
  }

  .col-xl-pull-5 {
    right: 41.66667%;
  }

  .col-xl-pull-6 {
    right: 50%;
  }

  .col-xl-pull-7 {
    right: 58.33333%;
  }

  .col-xl-pull-8 {
    right: 66.66667%;
  }

  .col-xl-pull-9 {
    right: 75%;
  }

  .col-xl-pull-10 {
    right: 83.33333%;
  }

  .col-xl-pull-11 {
    right: 91.66667%;
  }

  .col-xl-pull-12 {
    right: 100%;
  }

  .col-xl-push-0 {
    left: auto;
  }

  .col-xl-push-1 {
    left: 8.33333%;
  }

  .col-xl-push-2 {
    left: 16.66667%;
  }

  .col-xl-push-3 {
    left: 25%;
  }

  .col-xl-push-4 {
    left: 33.33333%;
  }

  .col-xl-push-5 {
    left: 41.66667%;
  }

  .col-xl-push-6 {
    left: 50%;
  }

  .col-xl-push-7 {
    left: 58.33333%;
  }

  .col-xl-push-8 {
    left: 66.66667%;
  }

  .col-xl-push-9 {
    left: 75%;
  }

  .col-xl-push-10 {
    left: 83.33333%;
  }

  .col-xl-push-11 {
    left: 91.66667%;
  }

  .col-xl-push-12 {
    left: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0%;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

/*@import "bootstrap/dropdowns";*/
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/*@import "bootstrap/navbar";*/
/*
@import "bootstrap/breadcrumbs";
@import "bootstrap/pagination";
@import "bootstrap/pager";
@import "bootstrap/labels";
@import "bootstrap/badges";
@import "bootstrap/jumbotron";
@import "bootstrap/thumbnails";
@import "bootstrap/alerts";
@import "bootstrap/progress-bars";
@import "bootstrap/media";
@import "bootstrap/list-group";
@import "bootstrap/panels";
@import "bootstrap/responsive-embed";
@import "bootstrap/wells";
@import "bootstrap/close";
*/
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
/*@import "bootstrap/carousel";*/
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xl {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl {
    display: block !important;
  }

  table.visible-xl {
    display: table;
  }

  tr.visible-xl {
    display: table-row !important;
  }

  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 1600px) {
  .visible-xl-block {
    display: block !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl-inline {
    display: inline !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .hidden-xl {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}


/*
Theme Name: Dans Plants
Theme URI: http://splashbox.com.au
Author: Splashbox
Author URI: http://splashbox.com.au
Description: Splashbox Theme (2016)
Tags: Blank, HTML5, CSS3

License: MIT
License URI: http://opensource.org/licenses/mit-license.php
*/
/*@import "compass";*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #428bca;
  text-decoration: none;
}
a:hover, a:focus {
  /*    color: $link-hover-color;
      text-decoration: underline;*/
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1600px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }

  .col-xl-1 {
    width: 8.33333%;
  }

  .col-xl-2 {
    width: 16.66667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.33333%;
  }

  .col-xl-5 {
    width: 41.66667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.33333%;
  }

  .col-xl-8 {
    width: 66.66667%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33333%;
  }

  .col-xl-11 {
    width: 91.66667%;
  }

  .col-xl-12 {
    width: 100%;
  }

  .col-xl-pull-0 {
    right: auto;
  }

  .col-xl-pull-1 {
    right: 8.33333%;
  }

  .col-xl-pull-2 {
    right: 16.66667%;
  }

  .col-xl-pull-3 {
    right: 25%;
  }

  .col-xl-pull-4 {
    right: 33.33333%;
  }

  .col-xl-pull-5 {
    right: 41.66667%;
  }

  .col-xl-pull-6 {
    right: 50%;
  }

  .col-xl-pull-7 {
    right: 58.33333%;
  }

  .col-xl-pull-8 {
    right: 66.66667%;
  }

  .col-xl-pull-9 {
    right: 75%;
  }

  .col-xl-pull-10 {
    right: 83.33333%;
  }

  .col-xl-pull-11 {
    right: 91.66667%;
  }

  .col-xl-pull-12 {
    right: 100%;
  }

  .col-xl-push-0 {
    left: auto;
  }

  .col-xl-push-1 {
    left: 8.33333%;
  }

  .col-xl-push-2 {
    left: 16.66667%;
  }

  .col-xl-push-3 {
    left: 25%;
  }

  .col-xl-push-4 {
    left: 33.33333%;
  }

  .col-xl-push-5 {
    left: 41.66667%;
  }

  .col-xl-push-6 {
    left: 50%;
  }

  .col-xl-push-7 {
    left: 58.33333%;
  }

  .col-xl-push-8 {
    left: 66.66667%;
  }

  .col-xl-push-9 {
    left: 75%;
  }

  .col-xl-push-10 {
    left: 83.33333%;
  }

  .col-xl-push-11 {
    left: 91.66667%;
  }

  .col-xl-push-12 {
    left: 100%;
  }

  .col-xl-offset-0 {
    margin-left: 0%;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

/*@import "bootstrap/dropdowns";*/
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/*@import "bootstrap/navbar";*/
/*
@import "bootstrap/breadcrumbs";
@import "bootstrap/pagination";
@import "bootstrap/pager";
@import "bootstrap/labels";
@import "bootstrap/badges";
@import "bootstrap/jumbotron";
@import "bootstrap/thumbnails";
@import "bootstrap/alerts";
@import "bootstrap/progress-bars";
@import "bootstrap/media";
@import "bootstrap/list-group";
@import "bootstrap/panels";
@import "bootstrap/responsive-embed";
@import "bootstrap/wells";
@import "bootstrap/close";
*/
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
/*@import "bootstrap/carousel";*/
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xl {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl {
    display: block !important;
  }

  table.visible-xl {
    display: table;
  }

  tr.visible-xl {
    display: table-row !important;
  }

  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 1600px) {
  .visible-xl-block {
    display: block !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl-inline {
    display: inline !important;
  }
}

@media (min-width: 1600px) {
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .hidden-xl {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*------------------------------------*\
    BASE
\*------------------------------------*/
body,
html {
  height: 100%;
}

body {
  background: white;
  color: #333;
}
body.modal-open {
  padding: 0 !important;
}
body.modal-open #website-alerts {
  position: fixed;
  left: 0;
  right: 0;
  top: 0 !important;
  z-index: 9999;
}

@media only screen and (min-width: 768px) {
  body.homepage #footer {
    padding-top: 190px;
  }
}
@media only screen and (min-width: 992px) {
  body.homepage #footer {
    padding-top: 220px;
  }
}
#wrapper {
  position: relative;
  min-height: 100%;
  margin: 0 auto;
}

.photo .photo-bg {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.photo img {
  display: block;
  width: 100%;
  height: auto;
}
.photo a {
  display: block;
}

.photo--blog {
  max-width: 1140px;
  margin: 0 auto 40px !important;
}

.overflow {
  overflow: hidden;
}

.vmiddle {
  position: relative;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.underline {
  text-decoration: underline;
}

.tx-left {
  text-align: left;
}

.tx-right {
  text-align: right;
}

.tx-center {
  text-align: center;
}

input,
select {
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  box-shadow: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='search'] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

* {
  outline: none;
}

a {
  color: #49891b;
}
a:hover, a:focus {
  color: #325e13;
}

@media only screen and (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    width: 1525px;
  }
  .container.smaller {
    width: 1170px;
  }
}
.container-only-xl {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 1600px) {
  .container-only-xl {
    width: 1800px;
  }
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media only screen and (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
@media only screen and (min-width: 1600px) {
  .col-xl-5ths {
    width: 20%;
    float: left;
  }
}
.row-xs-eqheight {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.row-xs-eqheight > div[class*='col-'] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) {
  .row-sm-eqheight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .row-sm-eqheight > div[class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .row-md-eqheight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .row-md-eqheight > div[class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  .row-lg-eqheight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .row-lg-eqheight > div[class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1600px) {
  .row-xl-eqheight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .row-xl-eqheight > div[class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.row-xs-default {
  display: initial;
}
.row-xs-default > div[class*='col-'] {
  display: initial;
}

@media only screen and (min-width: 768px) {
  .row-sm-default {
    display: initial;
  }
  .row-sm-default > div[class*='col-'] {
    display: initial;
  }
}
@media only screen and (min-width: 992px) {
  .row-md-default {
    display: initial;
  }
  .row-md-default > div[class*='col-'] {
    display: initial;
  }
}
@media only screen and (min-width: 1200px) {
  .row-lg-default {
    display: initial;
  }
  .row-lg-default > div[class*='col-'] {
    display: initial;
  }
}
@media only screen and (min-width: 1600px) {
  .row-xl-default {
    display: initial;
  }
  .row-xl-default > div[class*='col-'] {
    display: initial;
  }
}
.no-padding {
  margin: 0;
}
.no-padding > div[class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.row.small-padding {
  margin: 0 -7px;
}
.row.small-padding > div[class^="col-"] {
  padding: 0 7px;
}

.vcenter > div[class*='col-'] {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.vbottom > div[class*='col-'] {
  display: inline-block;
  vertical-align: bottom;
  float: none;
}

body {
  -webkit-transition: 0.5s 0s left;
  -ms-transition: 0.5s 0s left;
  transition: 0.5s 0s left;
  position: relative;
  left: 0;
}
body #backdrop {
  -webkit-transition: 0.3s 0s opacity, 0.3s 0s background-color;
  -ms-transition: 0.3s 0s opacity, 0.3s 0s background-color;
  transition: 0.3s 0s opacity, 0.3s 0s background-color;
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: -100%;
  right: 0;
  height: 100%;
  opacity: 0;
  background-color: white;
  z-index: 999;
}
body.modal-open {
  padding: 0 !important;
}
body.modal-open #website-alerts {
  position: fixed;
  left: 0;
  right: 0;
  top: 0 !important;
  z-index: 9999;
}
body.sidebar-active {
  overflow: hidden;
}
body.sidebar-active #backdrop {
  background-color: #474747;
  opacity: 0.9;
  top: 0;
}
body.sidebar-active #sidebar .toggle-filter.sidebar {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
body.sidebar-active #products .sidebar {
  left: 0;
}
body.menu-active {
  overflow: hidden;
}
body.menu-active #backdrop {
  background-color: white;
  opacity: 0.9;
  top: 0;
}
body.menu-active #header #menu-bar,
body.menu-active #header #access-bar {
  left: 0;
}
body.menu-active #toggle-menu span {
  background: none;
}
body.menu-active #toggle-menu span::before, body.menu-active #toggle-menu span::after {
  transition-delay: 0s, 0.2s;
}
body.menu-active #toggle-menu span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.menu-active #toggle-menu span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
  body.sidebar-active {
    overflow: initial;
  }
  body.sidebar-active #sidebar .toggle-filter {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  body.sidebar-active #products {
    left: 0;
  }
  body.sidebar-active #products #sidebar {
    margin-left: -280px;
  }
  body.sidebar-active #products .sidebar {
    width: 0;
  }
  body.sidebar-active #products .main-helper {
    padding-left: calc((100% - 750px + 30px) / 2);
    padding-right: calc((100% - 750px + 30px) / 2);
  }
}
@media only screen and (min-width: 992px) {
  body.sidebar-active #backdrop {
    display: none;
  }
  body.sidebar-active #products .main-helper {
    padding-left: calc((100% - 970px + 30px) / 2);
    padding-right: calc((100% - 970px + 30px) / 2);
  }
}
@media only screen and (min-width: 1200px) {
  body.sidebar-active #products .main-helper {
    padding-left: calc((100% - 1170px + 30px) / 2);
    padding-right: calc((100% - 1170px + 30px) / 2);
  }
}
@media only screen and (min-width: 1600px) {
  body.sidebar-active #products .main-helper {
    padding-left: calc((100% - 1600px + 30px) / 2);
    padding-right: calc((100% - 1600px + 30px) / 2);
  }
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
#header {
  position: relative;
  min-height: 45px;
  background: white;
  text-align: center;
}
#header .back-button {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin: 2px 0 0 0;
  color: black;
  letter-spacing: 0.1em;
}
#header .back-button:hover span, #header .back-button:focus span {
  opacity: 1;
}
#header .back-button .icon {
  display: inline-block;
  margin: 0 10px 0 0;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
#header .back-button span {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) {
  #header {
    position: relative;
    padding: 0 0 56px 0;
  }
  #header.checkout {
    padding: 0;
  }
  #header.checkout #header-content {
    padding: 15px 0;
  }
}
#header-content {
  position: fixed;
  width: 100%;
  padding: 13px 0;
  min-height: 45px;
  background: #FFF;
  box-shadow: 0 1px 0 #c8c8c8;
  z-index: 1015;
}

@media only screen and (min-width: 768px) {
  #header-content {
    position: static;
    height: 45px;
    border: none;
    padding: 30px 0 15px;
    height: auto;
  }
}
#access-bar {
  -webkit-transition: 0.3s 0s left;
  -ms-transition: 0.3s 0s left;
  transition: 0.3s 0s left;
  position: fixed;
  left: -100%;
  bottom: 0;
  width: 90%;
  line-height: 40px;
  z-index: 1010;
}
#access-bar .discount {
  font-size: 0.65em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}
#access-bar .discount .icon {
  position: relative;
  display: inline-block;
  top: 3px;
  margin: 0 5px 0 0;
  font-size: 1.5em;
}

@media only screen and (min-width: 768px) {
  #access-bar {
    position: static;
    width: 100%;
    line-height: 39px;
  }
}
.access-bar-account {
  background: #f0f0f0;
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 800;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.access-bar-account a {
  color: black;
}

.access-bar-info {
  background: black;
  color: white;
}

.social-nav {
  text-align: left;
  display: block;
}
.social-nav a {
  font-size: 12px;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
  opacity: 1;
  margin: 0 8px 0 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 22px;
  border: 1px solid #fff;
  text-align: center;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
}
.social-nav a:hover, .social-nav a:focus {
  border-color: #fff;
  background: #fff;
  color: #000;
}

@media only screen and (min-width: 768px) {
  .social-nav a {
    display: inline-block;
  }
  .social-nav a:hover, .social-nav a:focus {
    opacity: 1;
  }
}
#footer .social-nav {
  margin-top: 12px;
}
#footer .social-nav a {
  border-color: #a7a7a9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #footer .social-nav {
    margin-top: 0;
  }
}
#access-nav {
  display: block;
  text-align: right;
}
#access-nav a {
  font-size: 0.688em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
  opacity: 1;
}

@media only screen and (min-width: 992px) {
  #access-nav a {
    font-size: 0.825em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin: 0 0 0 15px;
    width: auto;
  }
  #access-nav a:hover, #access-nav a:focus {
    opacity: 1;
  }
}
#shopping-nav {
  float: right;
  z-index: 1;
  color: #7C7C7C;
  text-transform: none;
}
#shopping-nav.affix {
  position: static;
}
#shopping-nav > div {
  font-size: 0.688em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 0 0;
}
#shopping-nav > div > a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: relative;
  display: block;
  margin: -5px;
  padding: 5px;
  color: #000;
}
#shopping-nav > div > a.counter span {
  position: absolute;
  top: -5px;
  right: -5px;
  display: block;
  background: #49891b;
  color: white;
  border-radius: 8px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.75em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
#shopping-nav > div > a.loading .icon,
#shopping-nav > div > a.loading span {
  visibility: hidden;
}
#shopping-nav > div > a .icon {
  font-size: 1.5em;
  color: black;
}

@media only screen and (min-width: 768px) {
  #shopping-nav {
    margin-top: 5px;
    line-height: 12px;
  }
  #shopping-nav:before, #shopping-nav:after {
    content: " ";
    display: table;
  }
  #shopping-nav:after {
    clear: both;
  }
  #shopping-nav.affix {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1010;
  }
  #shopping-nav.affix .account .icon {
    display: block !important;
  }
  #shopping-nav.affix .account span {
    display: none !important;
  }
  #shopping-nav > div {
    font-size: 0.75em;
    font-weight: 600;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    float: left;
    margin: 0;
    padding: 0 17px;
    /*            > ul {
                    z-index: 1001;
                }*/
  }
  #shopping-nav > div:after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    bottom: 5%;
    border-right: 1px solid #aaa;
  }
  #shopping-nav > div:last-child {
    padding-right: 0;
  }
  #shopping-nav > div:last-child:after {
    display: none;
  }
  #shopping-nav > div.account {
    line-height: 20px;
  }
  #shopping-nav > div.account:before {
    content: none;
  }
  #shopping-nav > div > a {
    float: left;
  }
  #shopping-nav > div > a:hover, #shopping-nav > div > a:focus {
    color: black;
  }
  #shopping-nav > div > a .icon {
    font-size: 1em;
  }
}
.site-logo {
  position: absolute;
  top: -17px;
  display: block;
  max-width: 130px;
  width: 100%;
  margin: 0 0 0 30px;
}
.site-logo img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .site-logo {
    position: static;
    margin: -30px auto 15px auto;
    max-width: 300px;
  }
}
#search-form {
  display: none;
  position: relative;
  margin: 0 -20px 0 -20px;
  padding: 0 15px 20px 15px;
  background: white;
}
#search-form .field-label {
  border-bottom: 1px solid #d4d4d4;
}
#search-form .field, #search-form .login-area > form input, .login-area > form #search-form input {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 40px;
  height: 40px;
  color: #000;
  padding: 0 60px 0 0;
}
#search-form .form-submit {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 0;
  right: 15px;
  float: right;
  width: 30px;
  background: white;
  line-height: 40px;
  height: 40px;
  color: black;
  margin: 0;
  opacity: 0.6;
}

@media only screen and (min-width: 768px) {
  #search-form {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    max-width: 160px;
    width: 100%;
  }
  #search-form .field, #search-form .login-area > form input, .login-area > form #search-form input {
    font-size: 0.8em;
    line-height: 28px;
    height: 28px;
  }
  #search-form .form-submit {
    font-size: 0.8em;
    right: 0;
    line-height: 28px;
    height: 28px;
  }
  #search-form .form-submit:hover, #search-form .form-submit:focus {
    opacity: 1;
  }
}
#menu-bar {
  -webkit-transition: 0.3s 0s left;
  -ms-transition: 0.3s 0s left;
  transition: 0.3s 0s left;
  position: fixed;
  top: 45px;
  left: -100%;
  bottom: 0;
  width: 90%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1005;
}
#menu-bar > div {
  height: 100%;
}
#menu-bar .site-logo {
  display: none;
}
#menu-bar.affix .site-logo {
  display: block;
  position: absolute;
  left: 15px;
  z-index: 18988;
  display: inline-block;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  #menu-bar.affix .site-logo {
    top: 15px;
    max-width: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  #menu-bar.affix .site-logo {
    top: 15px;
    max-width: 160px;
  }
}

#menu {
  min-height: 100%;
  background: white;
  list-style: none;
  padding: 15px 0 55px 0;
  margin: 0 -15px;
  text-align: left;
}
#menu > li {
  margin: 0 15px;
  border-top: 1px solid #E5E5E5;
}
#menu > li:first-child {
  border: none;
}
#menu > li.sub.active > a:after {
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
#menu > li.sub > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  margin-top: -2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}
#menu > li > a {
  font-size: 0.8em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: relative;
  display: block;
  padding: 12px 0;
  color: black;
  text-transform: uppercase;
}
#menu > li > a:hover, #menu > li > a:focus {
  color: #49891b;
}
#menu > li > a.active {
  font-weight: bold;
}
#menu > li > a.sale {
  color: #c30000;
}
#menu > li > a.sale:hover, #menu > li > a.sale:focus {
  color: #49891b;
}

@media only screen and (min-width: 768px) {
  #menu-bar {
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    bottom: auto;
    padding: 20px 0 0 0;
    background: white;
    overflow: visible;
    box-shadow: none;
  }
  #menu-bar.affix, #menu-bar.affix-bottom {
    position: fixed;
    top: 0 !important;
    -webkit-box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.65);
    -moz-box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.65);
    box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.65);
  }
  #menu-bar.affix #menu, #menu-bar.affix-bottom #menu {
    margin-right: 150px;
  }

  #menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  #menu > li {
    float: left;
    margin: 0;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    padding: 0;
    border: none;
  }
  #menu > li.sub.active > a:after, #menu > li.sub.active > a:before {
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    bottom: -10px;
    opacity: 1;
  }
  #menu > li.sub.active > a:before {
    bottom: -11px;
  }
  #menu > li.sub > a:after, #menu > li.sub > a:before {
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: 0.2s 0s bottom;
    -ms-transition: 0.2s 0s bottom;
    transition: 0.2s 0s bottom;
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0;
    display: block;
    margin: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    opacity: 0;
    z-index: 1;
  }
  #menu > li.sub > a:before {
    border-top-color: #cfcfcf;
  }
  #menu > li > a {
    font-size: 0.75em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    display: inline-block;
    padding: 0 0 20px 0;
  }
}
@media only screen and (min-width: 992px) {
  #menu > li > a {
    font-size: 0.785em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
  }

  #menu-bar.affix #menu, #menu-bar.affix-bottom #menu {
    margin-right: 100px;
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  #menu > li > a {
    font-size: 0.85em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
  }

  #menu-bar.affix #menu, #menu-bar.affix-bottom #menu {
    margin-right: 80px;
    margin-left: 80px;
  }
}
@media only screen and (min-width: 1600px) {
  #menu {
    display: inline-block;
    margin: 0 0 -2px 0;
  }
  #menu > li {
    padding: 0 27.5px;
  }
}
.submenu-bar {
  display: none;
}
.submenu-bar > div {
  padding: 0;
}

.submenu {
  border-left: 1px solid #E8E8E8;
  padding: 0 0 0 15px;
  margin-bottom: 10px;
  list-style: none;
}
.submenu > li {
  padding: 5px 0;
}
.submenu > li > a {
  font-size: 0.688em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: block;
  padding: 2px 0;
  color: black;
  opacity: 0.6;
  letter-spacing: 0.1em;
}
.submenu > li img {
  display: none;
}
.submenu ul {
  border-left: 1px solid #E8E8E8;
  padding: 0 0 0 15px;
  margin: 5px 0 0 0;
  list-style: none;
}
.submenu ul > li {
  padding: 5px 0;
}
.submenu ul > li > a {
  font-size: 0.688em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: block;
  padding: 2px 0;
  color: black;
  opacity: 0.6;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 768px) {
  .submenu-bar {
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #d4d4d4;
    border-width: 1ox 0 1px 0;
    text-align: left;
    overflow: hidden;
  }
  .submenu-bar > div {
    padding: 0 15px;
  }

  .submenu {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: none;
    justify-content: flex-start;
    align-content: center;
    text-align: center;
  }
  .submenu.accessories {
    text-align: left;
  }
  .submenu.accessories ul > li > a {
    font-size: 0.625em;
  }
  .submenu.column {
    text-align: left;
    flex-flow: column wrap;
  }
  .submenu.column > li {
    width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
  }
  .submenu.edits {
    display: block;
    text-align: center;
  }
  .submenu.edits .owl-stage {
    margin: 0 auto;
  }
  .submenu.edits .slick-prev,
  .submenu.edits .slick-next {
    -webkit-transition: 0.3s 0s opacity;
    -ms-transition: 0.3s 0s opacity;
    transition: 0.3s 0s opacity;
    font-family: "icomoon";
    font-size: 3em;
    position: absolute;
    width: 10%;
    top: 40px;
    bottom: 80px;
    overflow: hidden;
    opacity: 0.5;
  }
  .submenu.edits .slick-prev:before,
  .submenu.edits .slick-next:before {
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    content: "\e91a";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    border-radius: 2px;
    text-shadow: 3px 0 0 rgba(0, 0, 0, 0.6);
  }
  .submenu.edits .slick-prev {
    left: -10%;
  }
  .submenu.edits .slick-next {
    right: -10%;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
  .submenu.edits li {
    padding: 0;
  }
  .submenu.edits li > a {
    font-size: 0.625em;
    font-weight: 600;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    -webkit-transition: 0.2s 0s;
    -ms-transition: 0.2s 0s;
    transition: 0.2s 0s;
    display: inline-block;
    margin: 0 2px;
    padding: 8px;
    color: black;
    background: #FFF;
    box-sizing: border-box;
    max-width: 110px;
    letter-spacing: 0.1em;
  }
  .submenu.edits li > a figure {
    background: black;
  }
  .submenu.edits li > a figure img {
    opacity: 0.95;
  }
  .submenu.edits li > a span {
    display: block;
    line-height: 120%;
    height: 32px;
  }
  .submenu.edits li img {
    display: block;
    width: 100%;
    margin: 0 0 8px 0;
  }
  .submenu.alphabet {
    height: 420px;
  }
  .submenu.alphabet > li {
    padding: 0 20px 0 40px;
  }
  .submenu.alphabet > li > a {
    font-size: 0.625em;
  }
  .submenu.clothing {
    height: 300px;
  }
  .submenu.clothing ul {
    height: 136px;
  }
  .submenu.clothing ul > li {
    width: 50%;
  }
  .submenu.clothing ul > li > a {
    font-size: 0.625em;
  }
  .submenu > li {
    position: relative;
    padding: 0;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    box-sizing: border-box;
  }
  .submenu > li.first:before {
    font-size: 1.25em;
    font-weight: 600;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    position: absolute;
    left: 0;
    top: 6px;
    content: attr(data-letter);
    display: block;
    text-transform: uppercase;
    opacity: 0.15;
  }
  .submenu > li > a {
    display: block;
    padding: 8px 0;
    opacity: 1;
    border: none;
    line-height: 120%;
  }
  .submenu > li > a:hover, .submenu > li > a:focus {
    opacity: 0.4;
  }
  .submenu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 0 0;
    padding: 5px 0 0 0;
    border-left: none;
    border-top: 1px solid #d4d4d4;
    flex-flow: column wrap;
  }
  .submenu ul > li {
    padding: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
  }
  .submenu ul > li > a {
    font-size: 0.75em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    -webkit-transition: 0.2s 0s;
    -ms-transition: 0.2s 0s;
    transition: 0.2s 0s;
    opacity: 0.6;
    padding: 8px 0;
  }
  .submenu ul > li > a:before {
    display: none;
  }
  .submenu ul > li > a:hover, .submenu ul > li > a:focus {
    opacity: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .submenu.alphabet {
    height: 350px;
  }
  .submenu.clothing {
    height: 250px;
  }
}
#toggle-search {
  font-size: 0.688em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: right;
  display: block;
  color: black;
  margin: 0 -5px 0 5px;
  box-sizing: border-box;
  color: #7C7C7C;
}
#toggle-search .icon {
  position: relative;
  font-size: 1.5em;
  color: black;
}
#toggle-search span {
  display: block;
}

#toggle-menu {
  position: absolute;
  top: -31px;
  left: 0;
  display: block;
  height: 45px;
  width: 45px;
  color: black;
}
#toggle-menu span {
  display: block;
  position: absolute;
  top: 45%;
  left: 15px;
  right: 15px;
  height: 2px;
  background: black;
  transition: background 0 0.2s;
}
#toggle-menu span:before, #toggle-menu span:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}
#toggle-menu span:before {
  top: -5px;
  transition-property: top, transform;
}
#toggle-menu span:after {
  bottom: -5px;
  transition-property: bottom, transform;
}

#navshop {
  visibility: hidden;
  position: fixed;
}
#navshop.affix {
  position: relative;
}
#navshop.affix a .icon {
  color: black;
}
#navshop.affix #shopnav {
  display: inline-block;
  background: white;
  padding: 10px 15px 7px 10px;
}
#navshop.affix > div {
  float: left;
  margin-right: 15px;
  position: relative;
}
#navshop.affix > div:last-of-type {
  margin-right: 0;
}
#navshop.affix > div > a.counter span {
  position: absolute;
  top: -6px;
  right: -11px;
  display: block;
  background: #49891b;
  color: white;
  border-radius: 8px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: normal;
  font-size: 9px;
}

@media only screen and (min-width: 1200px) {
  #navshop.affix {
    visibility: visible;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1010;
    text-align: right;
  }
}
/*------------------------------------*\
    BANNER
\*------------------------------------*/
#banner .banner-item {
  height: 375px;
  align-self: center;
}
#banner .banner-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: white;
  max-width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
#banner .banner-text .title {
  font-size: 1.5em;
  font-weight: normal;
  font-weight: 700;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
}
#banner .banner-text .subtitle {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  line-height: 165%;
}
#banner .button, #banner .login-area > form .action, .login-area > form #banner .action {
  font-size: 0.825em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: white;
  border-radius: 3px;
  color: #333;
  padding: 0 20px;
  max-width: 100%;
}
#banner .button:hover, #banner .login-area > form .action:hover, .login-area > form #banner .action:hover, #banner .button:focus, #banner .login-area > form .action:focus, .login-area > form #banner .action:focus, #banner .button:active, #banner .login-area > form .action:active, .login-area > form #banner .action:active {
  background: #3e7417;
  color: #fff;
}
#banner .banner-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-block;
  color: white;
  font-size: 3em;
}
#banner .banner-prev {
  left: 5%;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
#banner .banner-next {
  right: 5%;
}
#banner .responsive-banner {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#banner .responsive-banner img {
  height: 100%;
  width: auto;
}
#banner .helper {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  #banner .banner-container {
    background-image: none !important;
  }
}
@media only screen and (min-width: 992px) {
  #banner .banner-item {
    height: 500px;
  }
  #banner .banner-text .title {
    font-size: 1.75em;
    font-weight: normal;
    font-weight: 700;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  #banner .banner-text .subtitle {
    font-size: 1em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
  #banner .button, #banner .login-area > form .action, .login-area > form #banner .action {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1200px) {
  #banner .banner-item {
    height: 500px;
  }
  #banner .banner-text .title {
    font-size: 2em;
    font-weight: normal;
    font-weight: 700;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
  }
  #banner .banner-text .subtitle {
    font-size: 1em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin-bottom: 40px;
  }
  #banner .button, #banner .login-area > form .action, .login-area > form #banner .action {
    padding: 0 40px;
    line-height: 55px;
  }
}
@media only screen and (min-width: 1600px) {
  #banner .banner-item {
    height: 650px;
  }
  #banner .banner-container {
    width: 1800px;
  }
  #banner .banner-text .title {
    font-size: 3em;
    font-weight: normal;
    font-weight: 700;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  #banner .banner-text .subtitle {
    font-size: 1em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
  #banner .button, #banner .login-area > form .action, .login-area > form #banner .action {
    padding: 0 60px;
  }
}
/*------------------------------------*\
    CONTENT
\*------------------------------------*/
#content {
  position: relative;
  padding: 0 0 20px 0;
  overflow: hidden;
  background: white;
}
#content.full {
  padding-bottom: 0;
}
#content.line {
  border-top: 1px solid #ccc;
}

section {
  -webkit-transition: 0.3s 0s left;
  -ms-transition: 0.3s 0s left;
  transition: 0.3s 0s left;
  position: relative;
  left: 0;
}

.section {
  padding: 32.5px 0;
  overflow: hidden;
}
.section.section-map {
  margin-bottom: -50px;
  padding: 0;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .section.section-map {
    margin-bottom: -135px;
  }
}
@media only screen and (min-width: 992px) {
  .section {
    padding: 70px 0;
  }
}
.content-block {
  border-top: 3px solid black;
  padding: 20px 0;
}
.content-block .text-box {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) {
  .content-block {
    padding: 60px 0;
  }
}
.button, .login-area > form .action {
  font-size: 0.688em;
  font-weight: 800;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: inline-block;
  padding: 0;
  background: #49891b;
  color: white;
  text-transform: uppercase;
  line-height: 50px;
  text-align: center;
  border: none;
  letter-spacing: 0.05em;
}
.button:hover, .login-area > form .action:hover, .button:focus, .login-area > form .action:focus, .button:active, .login-area > form .action:active {
  opacity: 1;
  background: #3e7417;
  color: #fff;
}
.button.grey, .login-area > form .grey.action {
  font-size: 0.688em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  color: #818181;
  letter-spacing: 0.1em;
}
.button.warning, .login-area > form .warning.action {
  display: block;
  background: #a22020;
  line-height: 145%;
  padding: 15px 20px;
  cursor: default;
}
.button.product-warning, .login-area > form .product-warning.action {
  margin-top: 30px;
}
.button .icon, .login-area > form .action .icon {
  font-size: 0.750em;
  margin: 0 5px 0 0;
}

@media only screen and (min-width: 768px) {
  .button.grey:hover, .login-area > form .grey.action:hover, .button.grey:focus, .login-area > form .grey.action:focus {
    background-color: #E8E8E8;
  }
}
.button-plants {
  display: inline-block;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  padding: 30px 30px 30px 30px;
  text-align: left;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
}
.button-plants:after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  top: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.button-plants:hover, .button-plants:focus {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.button-plants .title {
  font-size: 1.3em;
  font-weight: normal;
  font-weight: 700;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  display: block;
  text-transform: uppercase;
  color: #010101;
}
.button-plants .subtitle {
  font-size: 0.875em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 10px;
  color: #333;
  opacity: 0.6;
  line-height: 130%;
}
.button-plants .icon {
  position: absolute;
  top: 50%;
  right: 17.5px;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  font-size: 2em;
  color: #000;
  opacity: 0.8;
}

.button-plants-container {
  position: relative;
  margin-top: 90px;
  margin-bottom: 80px;
}
.button-plants-container:before {
  content: '';
  background: url("../img/button-plant-2.png") no-repeat;
  position: absolute;
  bottom: -20px;
  left: -130px;
  width: 298px;
  height: 224px;
}
.button-plants-container:after {
  content: '';
  background: url("../img/button-plant-1.png") no-repeat;
  position: absolute;
  bottom: -107px;
  left: 0px;
  width: 372px;
  height: 127px;
}

@media only screen and (min-width: 420px) and (max-width: 767px) {
  .button-plants-container {
    text-align: center;
  }

  .button-plants {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .button-plants {
    padding: 30px 30px 30px 30px;
    margin-left: 105px;
    width: 250px;
  }
  .button-plants .title {
    font-size: 1.35em;
    font-weight: normal;
    font-weight: 700;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .button-plants .subtitle {
    font-size: 0.75em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 120%;
    margin-top: 15px;
  }
  .button-plants .icon {
    right: 32px;
  }

  .button-plants-container {
    float: right;
    padding-top: 60px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .button-plants-container:before {
    left: 20px;
  }
  .button-plants-container:after {
    left: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .button-plants {
    padding: 40px 30px 40px 30px;
    margin-left: 180px;
  }
  .button-plants .title {
    font-size: 1.5em;
    font-weight: normal;
    font-weight: 700;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .button-plants .subtitle {
    font-size: 0.875em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
}
@media only screen and (min-width: 1200px) {
  .button-plants {
    padding: 40px 40px 40px 60px;
    margin-left: 200px;
    width: 380px;
  }
}
#homepage-about .main-title {
  font-size: 1.325em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  padding-top: 0;
  margin-bottom: 20px;
  line-height: 145%;
}

@media only screen and (min-width: 768px) {
  #homepage-about .main-title {
    font-size: 1.5em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
}
@media only screen and (min-width: 992px) {
  #homepage-about .main-title {
    font-size: 1.75em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  #homepage-about .main-title {
    margin-bottom: 45px;
  }
}
.content-footer {
  display: inline-block;
  border-top: 2px solid black;
  padding: 20px 20px 0 20px;
}
.content-footer a {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 768px) {
  .content-footer a:hover, .content-footer a:focus {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 992px) {
  .content-footer {
    padding: 20px 40px 0 40px;
    margin: 30px 0 0 0;
  }
}
/*------------------------------------*\
    INDEX
\*------------------------------------*/
.features-list {
  margin: 0;
}

.features-item {
  position: relative;
  display: block;
  margin: 0 0 40px 0;
}
.features-item img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.features-item .title {
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  line-height: 140%;
  margin-bottom: 12px;
  text-align: center;
}
.features-item .info {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 200%;
}

@media only screen and (min-width: 420px) and (max-width: 767px) {
  .features-item:last-of-type {
    margin: 0 0 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .features-item {
    margin: 0 7px;
  }
  .features-item:hover:before, .features-item:focus:before {
    width: 250%;
    height: 200%;
  }
  .features-item img {
    margin-bottom: 35px;
  }
  .features-item .title {
    font-size: 1.25em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    line-height: 140%;
    margin-bottom: 12px;
  }
  .features-item .info {
    font-size: 0.875em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 200%;
  }
}
@media only screen and (min-width: 1600px) {
  .features-list {
    margin: 0 -90px;
  }

  .features-item {
    margin: 0 90px;
  }
}
.features-area {
  position: relative;
  background-color: #aaa;
  background-size: cover;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
.features-area:before {
  content: '';
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.features-area .features-area-content {
  position: relative;
  z-index: 1;
}
.features-area .title {
  font-size: 1.3em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 130%;
}
.features-area .subtitle {
  font-size: 0.875em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  line-height: 155%;
}
.features-area .button, .features-area .login-area > form .action, .login-area > form .features-area .action {
  background: #fff;
  color: #333;
  width: 230px;
  max-width: 100%;
  text-align: center;
  border-radius: 3px;
  letter-spacing: 0.15em;
  font-size: 0.875em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.features-area .button:hover, .features-area .login-area > form .action:hover, .login-area > form .features-area .action:hover, .features-area .button:focus, .features-area .login-area > form .action:focus, .login-area > form .features-area .action:focus, .features-area .button:active, .features-area .login-area > form .action:active, .login-area > form .features-area .action:active {
  background: #3e7417;
  color: #fff;
}

#instagram {
  text-align: center;
}
#instagram .title {
  position: relative;
  text-transform: uppercase;
  font-size: 1.325em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}

.instagram-list {
  margin: 20px -7px;
}

.instagram-item {
  position: relative;
  display: block;
  text-align: center;
  margin: 7px;
  color: black;
}
.instagram-item:before {
  content: '';
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: black;
  opacity: 0;
}
.instagram-item:hover, .instagram-item:focus {
  outline: none;
}
.instagram-item:hover:before, .instagram-item:focus:before {
  opacity: 0.8;
}
.instagram-item:hover .action, .instagram-item:focus .action {
  opacity: 1;
}
.instagram-item .photo {
  padding-bottom: 100%;
  background-color: black;
  background: center center no-repeat;
  background-size: cover;
}
.instagram-item .photo img {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: none;
}
.instagram-item .action {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  opacity: 0;
}
.instagram-item .action .icon {
  font-size: 0.750em;
}

@media only screen and (min-width: 768px) {
  #instagram .title a {
    font-size: 1em;
    display: inline-block;
    padding: 0 55px;
  }
  #instagram .title a:hover .icon,
  #instagram .title a:hover span, #instagram .title a:focus .icon,
  #instagram .title a:focus span {
    opacity: 0.6;
  }
  #instagram .action {
    display: block;
  }

  .instagram-list {
    margin: 20px -15px;
  }

  .instagram-item {
    margin: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .instagram-list {
    margin: 50px -22.5px;
  }

  .instagram-item {
    margin: 22.5px;
  }
}
#latest-news {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  padding: 50px 0;
  max-width: 100%;
}
#latest-news .container {
  max-width: 100%;
}
#latest-news h2 {
  font-size: 1.325em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
#latest-news .more-news {
  text-align: center;
}
#latest-news .more-news .button, #latest-news .more-news .login-area > form .action, .login-area > form #latest-news .more-news .action {
  display: inline-block;
  background: #49891b;
  color: #fff;
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  width: 170px;
  max-width: 100%;
  letter-spacing: 0.15em;
}
#latest-news .more-news .button:hover, #latest-news .more-news .login-area > form .action:hover, .login-area > form #latest-news .more-news .action:hover, #latest-news .more-news .button:focus, #latest-news .more-news .login-area > form .action:focus, .login-area > form #latest-news .more-news .action:focus, #latest-news .more-news .button:active, #latest-news .more-news .login-area > form .action:active, .login-area > form #latest-news .more-news .action:active {
  background: #3e7417;
}

@media only screen and (min-width: 768px) {
  #latest-news {
    margin-left: auto;
    margin-right: auto;
  }
  #latest-news h2 {
    margin-bottom: 50px;
  }
  #latest-news .news-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  #latest-news .news {
    margin-left: 15px;
    margin-right: 15px;
  }
  #latest-news .more-news .button, #latest-news .more-news .login-area > form .action, .login-area > form #latest-news .more-news .action {
    width: 185px;
  }
}
@media only screen and (min-width: 992px) {
  #latest-news .news-list {
    margin-left: -25px;
    margin-right: -25px;
  }
  #latest-news .news {
    margin-left: 25px;
    margin-right: 25px;
  }
  #latest-news .more-news .button, #latest-news .more-news .login-area > form .action, .login-area > form #latest-news .more-news .action {
    font-size: 0.825em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
}
@media only screen and (min-width: 1200px) {
  #latest-news {
    width: 1340px;
    padding: 70px 0;
  }
  #latest-news .container {
    width: 1070px;
  }
}
@media only screen and (min-width: 1600px) {
  #latest-news {
    width: 1725px;
    padding: 100px 0;
  }
  #latest-news .container {
    width: 1370px;
  }
  #latest-news .more-news .button, #latest-news .more-news .login-area > form .action, .login-area > form #latest-news .more-news .action {
    width: 235px;
  }
}
.news {
  margin-bottom: 40px;
}
.news.extra:before, .news.extra:after {
  content: " ";
  display: table;
}
.news.extra:after {
  clear: both;
}
.news.extra .photo {
  float: left;
  margin-right: 20px;
  width: 145px;
  height: 140px;
  background-size: cover;
}
.news.extra .photo img {
  display: none;
}
.news.extra .heading {
  margin-bottom: 18px;
}
.news.extra .content p {
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  height: 44px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .photo {
  margin-bottom: 20px;
}
.news .heading {
  margin-bottom: 22px;
}
.news .title {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.news .subtitle {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #737373;
}
.news .content {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 195%;
}
.news .read-more {
  display: inline-block;
  color: #49891b;
  font-style: italic;
  margin-top: 3px;
}

@media only screen and (min-width: 768px) {
  .news.extra .photo {
    width: 200px;
    height: 160px;
  }
  .news.extra .content p {
    height: 54px;
    /* Fallback for non-webkit */
  }
  .news .title {
    font-size: 1.063em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .news .subtitle {
    font-size: 0.875em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
  .news .content {
    font-size: 0.875em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
}
@media only screen and (min-width: 1600px) {
  .news {
    margin-bottom: 55px;
  }
}
#accreditations h2 {
  font-size: 1.125em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  text-align: center;
}
#accreditations .accreditations {
  text-align: center;
}
#accreditations .accreditations .accreditation {
  display: inline-block;
  margin: 0 3px;
  width: 30%;
}
#accreditations .accreditations .accreditation img {
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  #accreditations h2 {
    font-size: 1.313em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    margin-bottom: 50px;
  }
  #accreditations .accreditations .accreditation {
    width: 210px;
    margin: 0 10px;
  }
}
@media only screen and (min-width: 992px) {
  #accreditations .accreditations .accreditation {
    margin: 0 50px;
  }
}
@media only screen and (min-width: 1200px) {
  #accreditations .accreditations .accreditation {
    margin: 0 70px;
  }
}
/*------------------------------------*\
    SIDEBAR
\*------------------------------------*/
#sidebar {
  -webkit-transition: 0.3s 0s margin-left;
  -ms-transition: 0.3s 0s margin-left;
  transition: 0.3s 0s margin-left;
  box-sizing: border-box;
  height: 100%;
  overflow: auto;
}
#sidebar .toggle-filter.close {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #c8c8c8;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 28px;
  text-align: center;
  color: black;
  z-index: 100;
}
#sidebar .toggle-filter.chevron {
  -webkit-transition: 0.3s 0s left;
  -ms-transition: 0.3s 0s left;
  transition: 0.3s 0s left;
  position: absolute;
  left: 100%;
  top: 45%;
  padding: 20px 10px;
  font-size: 0.75em;
  background: #d4d4d4;
  color: #000;
}
#sidebar .text-box {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin: 15px 0 0 0;
  line-height: 160%;
}
#sidebar .text-box p {
  padding: 0 0 5px 0;
}
#sidebar .products-list {
  margin: 15px 0 0 0;
}

@media only screen and (min-width: 768px) {
  #sidebar {
    position: relative;
    height: auto;
    overflow: visible;
    z-index: 1;
  }
  #sidebar .toggle-filter.chevron {
    top: 200px;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
  #sidebar .text-box {
    margin: 20px 0 0 0;
    line-height: 200%;
  }
  #sidebar .products-list {
    margin: 30px -10px 0 -10px;
  }
  #sidebar .products-item {
    width: 50%;
    border-width: 0 10px 10px 10px;
  }
}
.sidebar .mCSB_container {
  margin: 0 0 0 35px;
}
.sidebar .mCSB_scrollTools {
  left: -5px;
  right: auto;
}
.sidebar .mCSB_scrollTools .mCSB_draggerContainer {
  top: 5px;
  bottom: 5px;
}
.sidebar .mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
}
.sidebar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 7px;
  background: black;
  border-radius: 0;
}

.side-box {
  position: relative;
  width: 100%;
}
.side-box.shop-the-look {
  display: none;
  z-index: 1;
}
.side-box.shop-the-look.active .products-item {
  -webkit-transition: 0.3s 0s;
  -ms-transition: 0.3s 0s;
  transition: 0.3s 0s;
  top: 0;
  opacity: 1;
}
.side-box.shop-the-look.active .products-item:nth-child(1) {
  transition-delay: 0s;
}
.side-box.shop-the-look.active .products-item:nth-child(2) {
  transition-delay: 0.1s;
}
.side-box.shop-the-look.active .products-item:nth-child(3) {
  transition-delay: 0.2s;
}
.side-box.shop-the-look.active .products-item:nth-child(4) {
  transition-delay: 0.3s;
}
.side-box.shop-the-look.active .products-item:nth-child(5) {
  transition-delay: 0.4s;
}
.side-box.shop-the-look.active .products-item:nth-child(6) {
  transition-delay: 0.5s;
}
.side-box.shop-the-look.active .products-item:nth-child(7) {
  transition-delay: 0.6s;
}
.side-box.shop-the-look.active .products-item:nth-child(8) {
  transition-delay: 0.7s;
}
.side-box.shop-the-look .products-item {
  position: relative;
  top: -30px;
  opacity: 0;
}
.side-box.product-info .price {
  font-size: 1em;
  margin-bottom: 20px;
}
.side-box .close {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: absolute;
  top: 20px;
  right: 20px;
  color: black;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .side-box:last-child, .side-box.shop-the-look {
    border: none;
    box-shadow: none;
  }
  .side-box.product-info .price {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .side-box .close {
    top: 30px;
    right: 30px;
    font-size: 1.250em;
  }
  .side-box .close:hover, .side-box .close:focus {
    opacity: 0.6;
  }
}
.side-header {
  position: relative;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d4d4d4;
}
.side-header:before, .side-header:after {
  content: " ";
  display: table;
}
.side-header:after {
  clear: both;
}
.side-header .title {
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  float: left;
  text-transform: uppercase;
}
.side-header a {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: right;
  color: black;
  opacity: 0.5;
  text-transform: lowercase;
}

@media only screen and (min-width: 768px) {
  .side-header {
    padding-bottom: 15px;
  }
  .side-header a:hover, .side-header a:focus {
    opacity: 1;
  }
}
.filter-box {
  margin: 10px 0 0 0;
}
.filter-box:after {
  content: "";
  display: block;
  margin: 10px 0 0 35px;
  border-bottom: 1px solid #d4d4d4;
}
.filter-box.active .side-header:before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.filter-box .side-header {
  border: none;
  padding-bottom: 0;
}
.filter-box .side-header:before {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  content: "\e910";
  position: absolute;
  left: -4px;
  top: 2px;
  display: block;
  font-size: 0.625em;
  font-family: 'icomoon';
}
.filter-box .side-header .title {
  font-size: 0.825em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  position: relative;
  text-transform: uppercase;
  padding: 0 0 0 35px;
  cursor: pointer;
  border: none;
  z-index: 1;
}

.filter-content {
  max-height: 350px;
  padding: 10px 0 0 0;
}

.filter-list {
  list-style: none;
}
.filter-list.links li a.active:before {
  content: none;
}
.filter-list ul {
  list-style: none;
  padding: 0 0 0 15px;
}
.filter-list ul li a {
  font-weight: 400;
}
.filter-list li.sub.active > a {
  opacity: 1;
}
.filter-list li.sub.active > a:after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.filter-list li.sub.active > ul {
  display: block;
}
.filter-list li.sub > a:after {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  content: "\e910";
  font-family: 'icomoon';
  display: inline-block;
  font-size: 0.625em;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
.filter-list li.sub > ul {
  display: none;
}
.filter-list li a {
  font-size: 0.625em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: block;
  padding: 8px 0;
  color: black;
  opacity: 0.75;
  font-weight: 600;
}
.filter-list li a.active {
  opacity: 1;
}
.filter-list li a.active {
  font-weight: 800;
}
.filter-list li a.active:before {
  content: "\e902";
  float: right;
  display: block;
  padding: 3px 0 0 0;
  font-size: 0.625em;
  font-family: 'icomoon';
}

@media only screen and (min-width: 768px) {
  .filter-box:after {
    margin-top: 25px;
  }
  .filter-box .side-header {
    padding-bottom: 12px;
  }
  .filter-box .side-header .title {
    font-size: 0.875em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .filter-box .side-header .title.bigger {
    font-size: 1em;
  }

  .filter-list li a {
    padding: 10px 0;
    font-size: 0.813em;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 600;
  }
  .filter-list li a:hover, .filter-list li a:focus {
    opacity: 1;
  }
}
.breadcrumbs {
  margin: 0 0 10px 0;
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.breadcrumbs a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
}
.breadcrumbs > * {
  display: inline-block;
  margin-right: 3px;
}
.breadcrumbs > span {
  font-size: 1em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) {
  .breadcrumbs a:hover, .breadcrumbs a:focus {
    opacity: 0.5;
  }
}
#price-range {
  overflow: hidden;
}
#price-range .field-lane {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
#price-range .field-lane > * {
  margin: 0 5px 10px 5px;
}
#price-range .field-label span {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  display: block;
  margin: 0 0 2px 0;
}
#price-range .field, #price-range .login-area > form input, .login-area > form #price-range input {
  padding: 0 25px 0 5px;
}
#price-range .form-submit {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  float: right;
  text-transform: uppercase;
  background: none;
}
#price-range .form-submit[disabled] {
  opacity: 0.3;
  cursor: default;
}

#slider-range {
  margin: 10px 0;
  padding: 0 8px;
  background: #e0e0e0;
  border-radius: 8px;
  height: 12px;
  border: none;
  overflow: hidden;
}
#slider-range .ui-slider-range {
  background: black;
  top: 2px;
  bottom: 2px;
  height: auto;
}
#slider-range .ui-slider-handle {
  top: 2px;
  bottom: 2px;
  margin: 0 0 0 -5px;
  height: auto;
  border: none;
  width: 10px;
  border-radius: 10px;
  background: black;
}
#slider-range .ui-slider-handle:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 10px;
  margin: 2px 3px;
  background: #d4d4d4;
}

#price-value {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  float: left;
}
#price-value var {
  font-style: normal;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
h1 {
  font-size: 1.3em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  position: relative;
  display: block;
  line-height: 120%;
}

h2 {
  font-size: 1em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  position: relative;
  display: block;
  line-height: 120%;
}
h2.bold {
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
h2.lane {
  padding-bottom: 15px;
}
h2.lane:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #ccc;
}
h2.lane > span {
  display: block;
  position: relative;
  background: white;
  z-index: 1;
}

h3 {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  position: relative;
  display: block;
}

@media only screen and (min-width: 992px) {
  h1 {
    font-size: 2em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }

  h2 {
    font-size: 1em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }

  h3 {
    font-size: 0.875em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
}
.text-box {
  font-size: 0.875em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 200%;
  text-transform: none;
}
.text-box.margin {
  margin: 0 0 20px 0;
}
.text-box.important {
  text-align: center;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #d4d4d4;
  letter-spacing: 0.1em;
}
.text-box img {
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.text-box > .photo-lane {
  display: table;
  margin: 0 -10px 20px -10px;
}
.text-box > .photo-lane .photo {
  display: table-cell;
  padding: 0 10px;
}
.text-box > .photo {
  margin: 0 0 20px 0;
}
.text-box > .photo.half {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
}
.text-box > h2 {
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  font-size: 1.35em;
  padding: 10px 0;
}
.text-box > h3 {
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  padding: 10px 0;
}
.text-box > h4 {
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  margin-top: 15px;
}
.text-box > p,
.text-box > table p {
  padding: 0 0 20px 0;
}
.text-box > p:last-child,
.text-box > table p:last-child {
  padding: 0;
}
.text-box > ul,
.text-box > ol {
  text-align: left;
  padding: 0 0 25px 20px;
}
.text-box > ul li,
.text-box > ol li {
  padding: 0 0 5px 0;
}
.text-box b,
.text-box strong {
  font-weight: 700;
}
.text-box a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: #888888;
}
.text-box table {
  text-align: left;
}
.text-box table th {
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.text-box table td {
  padding: 3px;
}
.text-box table .button, .text-box table .login-area > form .action, .login-area > form .text-box table .action {
  display: block;
  color: white;
  line-height: 25px;
}
.text-box .afterpay {
  opacity: 1 !important;
}
.text-box .afterpay img {
  max-width: 80px;
  display: inline;
  vertical-align: middle;
}

@media only screen and (max-width: 992px) {
  .text-box table {
    display: block;
    margin: 0 -5px;
  }
  .text-box table thead,
  .text-box table tbody,
  .text-box table tr {
    display: block;
  }
  .text-box table thead,
  .text-box table th {
    display: none;
  }
  .text-box table tr {
    padding: 10px;
  }
  .text-box table tr:nth-child(even) {
    background: #F2F2F2;
  }
  .text-box table td {
    display: block;
  }
  .text-box table td[data-title]:before {
    font-size: 0.875em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    display: inline-block;
    content: attr(data-title);
    width: 30%;
  }
}
@media only screen and (min-width: 768px) {
  .text-box.margin {
    margin: 0 0 30px 0;
  }
  .text-box.important {
    font-size: 1em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    padding: 0 0 40px 0;
    margin: 0 0 50px 0;
  }
  .text-box a:hover, .text-box a:focus {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 992px) {
  .text-box.contact {
    margin: 80px 0 0 0;
  }
  .text-box > .photo-lane {
    margin: 0 -95px 30px -95px;
  }
  .text-box > .photo-lane .photo {
    padding: 0 15px;
  }
  .text-box > .photo {
    margin: 0 -80px 30px -80px;
  }
  .text-box > h2, .text-box h3 {
    padding: 20px 0;
  }
  .text-box > p,
  .text-box > table p {
    padding: 0 0 20px 0;
  }
  .text-box > p:last-child,
  .text-box > table p:last-child {
    padding: 0;
  }
}
.category {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 120%;
  color: #444444;
}
.category a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  opacity: 0.6;
  color: black;
}

@media only screen and (min-width: 768px) {
  .category a:hover, .category a:focus {
    opacity: 1;
  }
}
.price {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.1em;
  line-height: 120%;
  padding: 3px 0;
}
.price .old {
  font-size: 0.875em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-decoration: line-through;
}
.price .sale {
  font-size: 1.125em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #a22020;
  display: block;
}

.table {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .table {
    display: table;
    width: 100%;
  }

  .table-cell {
    display: table-cell;
    vertical-align: top;
    box-sizing: border-box;
  }
}
.main-helper {
  -webkit-transition: 0.3s 0s padding-left, 0.3s 0s padding-right;
  -ms-transition: 0.3s 0s padding-left, 0.3s 0s padding-right;
  transition: 0.3s 0s padding-left, 0.3s 0s padding-right;
  position: relative;
  box-sizing: border-box;
  /*overflow: hidden;*/
  padding: 0 15px;
  background: #f5f5f5;
}
.main-helper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  opacity: 0.9;
}

@media only screen and (min-width: 768px) {
  .main-helper {
    padding-right: calc((100% - 750px + 280px + 30px) / 2);
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .main-helper {
    padding-right: calc((100% - 970px + 280px + 30px) / 2);
  }
}
@media only screen and (min-width: 1200px) {
  .main-helper {
    padding-right: calc((100% - 1170px + 280px + 30px) / 2);
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-helper {
    padding-right: calc((100% - 1600px + 280px + 30px) / 2);
    padding-left: 120px;
  }
}
#main-header .title,
#main-header-full .title {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  float: left;
  line-height: 28px;
  margin: 0 10px 0 0;
}
#main-header .title strong,
#main-header .title b,
#main-header-full .title strong,
#main-header-full .title b {
  font-weight: normal;
}
#main-header .pagination a,
#main-header-full .pagination a {
  line-height: 28px;
}
#main-header .view-box .title,
#main-header-full .view-box .title {
  display: none;
}

#main-header {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d4d4d4;
}
#main-header .toggle-filter {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.3s 0s;
  -ms-transition: 0.3s 0s;
  transition: 0.3s 0s;
  border: 1px solid #e9e9e9;
  background: white;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 28px;
  text-align: center;
  color: black;
  z-index: 100;
}
#main-header .toggle-filter .icon {
  margin: 0 0 0 10px;
}

#main-header-full {
  padding: 5px 0;
}
#main-header-full .breadcrumbs {
  margin: 10px 0 0;
}

@media only screen and (min-width: 768px) {
  #main-header,
  #main-header-full {
    padding: 15px 0;
  }
  #main-header .title.results,
  #main-header-full .title.results {
    font-size: 0.75em;
  }

  #main-header-full {
    border-bottom: 1px solid #d4d4d4;
  }
}
#main {
  margin: 20px 0 0 0;
}

@media only screen and (min-width: 1200px) {
  #main {
    margin: 40px 0 0 0;
  }
}
#main-footer {
  border-top: 1px solid #d4d4d4;
  padding: 15px 0;
}
#main-footer .title {
  float: left;
  text-transform: uppercase;
  line-height: 28px;
}
#main-footer .pagination a {
  line-height: 28px;
}

.results {
  font-size: 0.625em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: none !important;
}

@media only screen and (min-width: 768px) {
  .results {
    font-size: 0.75em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
}
.pagination {
  font-size: 0.625em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-align: center;
}
.pagination > * {
  display: inline-block;
}
.pagination .pager a {
  display: inline-block;
  padding: 0 5px;
}
.pagination a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: #9d9d9d;
}
.pagination a.active {
  color: black;
  font-weight: 700;
}
.pagination .prev,
.pagination .next {
  min-width: 85px;
}

@media only screen and (min-width: 768px) {
  .pagination {
    font-size: 0.75em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
}
@media only screen and (min-width: 992px) {
  .pagination .prev,
  .pagination .next {
    min-width: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .pagination .prev,
  .pagination .next {
    min-width: 0;
    padding: 0 20px;
  }
  .pagination a:hover, .pagination a:focus {
    opacity: 0.6;
  }
}
.sort-box {
  float: right;
  margin: 0 10px 0 0;
  width: 90px;
}
.sort-box .title {
  display: none;
}

.form-sort {
  float: left;
  width: 90px;
}
.form-sort .form-submit {
  display: none;
}
.form-sort .field-label:before {
  padding: 0 5px 0 0;
}
.form-sort .field-label.select .field, .form-sort .field-label.select .login-area > form input, .login-area > form .form-sort .field-label.select input {
  line-height: 28px;
  height: 28px;
  padding: 0 5px 0 5px;
}
.form-sort .field, .form-sort .login-area > form input, .login-area > form .form-sort input {
  padding: 0 10px;
}
.form-sort .field option, .form-sort .login-area > form input option, .login-area > form .form-sort input option {
  padding: 0 5px;
}

@media only screen and (min-width: 768px) {
  .sort-box {
    margin: 0 20px 0 0;
    width: 140px;
  }
  .sort-box .title {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .sort-box {
    margin: 0 30px 0 0;
  }
}
.view-box {
  float: right;
}

.view-list {
  float: left;
  margin: 0 0 0 -5px;
}
.view-list a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: left;
  margin: 0 0 0 5px;
  padding: 0 4px;
  color: black;
  height: 28px;
  line-height: 28px;
  font-size: 1em;
  opacity: 0.3;
  border: 1px solid black;
  box-sizing: border-box;
}
.view-list a.active {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .view-list a:hover, .view-list a:focus {
    opacity: 1;
  }
}
.item-per-page-box {
  float: left;
  margin-left: 10px;
}
.item-per-page-box .title {
  font-size: 0.750em;
}

.item-per-page-list {
  float: left;
  margin: 0 0 0 -5px;
}
.item-per-page-list a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: left;
  margin: 0 0 0 3px;
  padding: 0 4px;
  color: black;
  height: 28px;
  line-height: 28px;
  font-size: 0.750em;
  opacity: 0.3;
  box-sizing: border-box;
  text-transform: uppercase;
}
.item-per-page-list a:hover, .item-per-page-list a:focus {
  opacity: 1;
}
.item-per-page-list a.active {
  opacity: 1;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #main-header .item-per-page-box .title,
  #main-header-full .item-per-page-box .title,
  .item-per-page-box .title {
    font-size: 0.75em;
    opacity: 0.3;
    margin: 0 10px 0 0;
  }

  .item-per-page-list a {
    font-size: 0.75em;
  }
}
@media only screen and (min-width: 992px) {
  .item-per-page-box {
    margin-left: 20px;
  }

  .item-per-page-list a {
    margin: 0 0 0 5px;
  }
}
/*------------------------------------*\
    PRODUCTS
\*------------------------------------*/
#products {
  padding-bottom: 30px;
  background: #f5f5f5;
}
#products .header-box {
  margin: 0 0 20px 0;
  height: 20px;
}
#products .sidebar {
  -webkit-transition: 0.3s 0s width, 0.3s 0s left;
  -ms-transition: 0.3s 0s width, 0.3s 0s left;
  transition: 0.3s 0s width, 0.3s 0s left;
  position: fixed;
  top: 45px;
  bottom: 0;
  left: -70%;
  width: 70%;
  background: #FFF;
  z-index: 1000;
}
#products .side-box {
  padding: 20px;
}
#products #product-banner {
  margin-top: 20px;
}
#products .no-items {
  text-align: center;
  padding: 50px 0;
}

.products-list {
  list-style: none;
  margin: 0 0 50px 0;
}
.products-list:before, .products-list:after {
  content: " ";
  display: table;
}
.products-list:after {
  clear: both;
}
.products-list.xs-1 {
  margin-left: -5px;
  margin-right: -5px;
}
.products-list.xs-1 .products-item {
  width: 100%;
  border-width: 0 0 7px 0;
}
.products-list.xs-2 {
  margin-left: -12px;
  margin-right: -12px;
}
.products-list.xs-2 .products-item {
  width: 50%;
  border-width: 0 7px 15px 7px;
}
.products-list .form-add-cart {
  margin: 10px 0 0 0;
}
.products-list .form-add-cart .field-label {
  float: none;
  width: auto;
}

.products-item {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: left;
  border: 0 solid transparent;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.products-item a {
  color: black;
}
.products-item a.category {
  color: #777;
}
.products-item .photo {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.products-item .photo > a {
  padding-bottom: 131%;
  /*background: black;*/
}
.products-item .photo > a span {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: white;
  opacity: 0;
  border: 1px solid #e8e8e8;
}
.products-item .photo > a span:first-child {
  /*opacity: 0.95;*/
  opacity: 1;
}
.products-item .photo img {
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.products-item .info-wrapper {
  height: 70px;
}
.products-item .info.extra-spacing {
  margin-bottom: 4px;
}
.products-item .info .title {
  font-size: 0.825em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products-item .info .remove-button {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  float: right;
  position: relative;
  font-size: 0.875em;
  padding: 0 2px;
  opacity: 0.6;
}
.products-item .info .remove-button.loading {
  color: transparent;
}
.products-item .info .wishlist-button {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  position: relative;
  font-size: 0.875em;
  padding: 0 2px;
  opacity: 0.6;
}
.products-item .info .wishlist-button.loading svg {
  opacity: 0;
}
.products-item .info .wishlist-button.active {
  opacity: 1;
}
.products-item .info .wishlist-button.active svg {
  stroke: #C00;
  fill: #C00;
}
.products-item .info .wishlist-button svg {
  height: 14px;
  stroke-width: 4px;
  stroke: black;
  fill: transparent;
}
.products-item .info .category,
.products-item .info .wishlist-button {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products-item .info .price {
  padding: 0;
  height: 38px;
  line-height: 140%;
  margin-bottom: 4px;
}
.products-item .badges {
  position: absolute;
  top: 0;
  right: 0;
}
.products-item .sizes {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  right: 0;
  top: 50%;
  background: #e4e4e4;
  padding: 15px 10px;
  opacity: 0;
}
.products-item .sizes a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  padding: 5px 0;
}
.products-item .sizes a.disabled {
  color: #c8c8c8;
}

@media only screen and (min-width: 768px) {
  #products {
    padding-bottom: 50px;
  }
  #products .header-box {
    margin: 0;
    height: auto;
  }
  #products .sidebar {
    position: static;
    width: 282px;
  }

  .products-list.sm-1 {
    margin-left: 0;
    margin-right: 0;
  }
  .products-list.sm-1 .products-item {
    width: 100%;
    border-width: 0 0 15px 0;
  }
  .products-list.sm-2 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .products-list.sm-2 .products-item {
    width: 50%;
    border-width: 0 15px 15px 15px;
  }
  .products-list .form-add-cart {
    margin: 0;
  }

  .products-item .photo:hover .sizes, .products-item .photo:focus .sizes {
    opacity: 1;
  }
  .products-item .photo:hover span:last-child, .products-item .photo:focus span:last-child {
    opacity: 1;
  }
  .products-item .sizes a:hover, .products-item .sizes a:focus {
    text-decoration: underline;
  }
  .products-item .info .title {
    overflow: visible;
    text-overflow: initial;
    white-space: initial;
  }
  .products-item .info .price {
    text-align: right;
    height: auto;
  }
  .products-item .info .remove-button:focus, .products-item .info .remove-button:hover {
    opacity: 1;
  }
  .products-item .info .wishlist-button:focus, .products-item .info .wishlist-button:hover {
    opacity: 1;
  }
  .products-item .info .category {
    font-size: 0.750em;
    padding: 3px 0;
  }
}
@media only screen and (min-width: 992px) {
  .products-list.md-2 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .products-list.md-2 .products-item {
    width: 50%;
    border-width: 0 30px 30px 30px;
  }
  .products-list.md-3 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .products-list.md-3 .products-item {
    width: 33.33%;
    border-width: 0 15px 15px 15px;
  }

  .products-item .info.extra-spacing {
    margin-bottom: 7.5px;
  }
  .products-item .info .title {
    font-size: 0.938em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .products-item .info .price {
    font-size: 0.75em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .products-item .info .category {
    font-size: 0.875em;
    padding: 3px 0;
  }
  .products-item .info.info--cat {
    height: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  #products {
    padding-bottom: 75px;
  }

  .products-list.lg-2 {
    margin-left: -60px;
    margin-right: -60px;
  }
  .products-list.lg-2 .products-item {
    width: 50%;
    border-width: 0 60px 60px 60px;
  }
  .products-list.lg-3 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .products-list.lg-3 .products-item {
    width: 33.33%;
    border-width: 0 30px 30px 30px;
  }

  .products-item .info .title {
    font-size: 1em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    height: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .products-list.xl-3 {
    margin-left: -60px;
    margin-right: -60px;
  }
  .products-list.xl-3 .products-item {
    width: 33.33%;
    border-width: 0 60px 60px 60px;
  }
  .products-list.xl-4 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .products-list.xl-4 .products-item {
    width: 25%;
    border-width: 0 30px 30px 30px;
  }
}
.listing-content {
  margin: auto auto 30px;
  max-width: 100%;
  width: 650px;
  text-align: center;
  color: #c8c8c8;
}

.listing-footer-content h2 {
  font-size: 1.5em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 225%;
  margin: 0 0 5px;
  display: inline-block;
}
.listing-footer-content p {
  margin: 0 0 15px;
}
.listing-footer-content p + h2 {
  margin: 15px 0 5px;
}

@media only screen and (min-width: 768px) {
  .listing-footer-content {
    margin: 50px 0 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .listing-content {
    margin-bottom: 50px;
    line-height: 225%;
  }
}
@media only screen and (min-width: 1600px) {
  .listing-content {
    margin-bottom: 50px;
    line-height: 225%;
  }
}
.listing-intro {
  position: relative;
  margin-bottom: 10px;
}

.listing-intro-bg {
  position: relative;
  padding: 30px 0;
  max-width: 100%;
  margin: 0 auto;
  color: white;
  background-size: cover;
  background-repeat: no-repeat;
}
.listing-intro-bg a {
  color: #999;
}
.listing-intro-bg .title {
  font-size: 1.3em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
}
.listing-intro-bg .breadcrumbs {
  color: #999;
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
}
.listing-intro-bg .text-box {
  font-size: 0.750em;
}

@media only screen and (min-width: 768px) {
  .listing-intro {
    margin-bottom: 30px;
  }

  .listing-intro-bg {
    padding: 50px 0;
  }
  .listing-intro-bg .title {
    font-size: 2.15em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .listing-intro-bg .text-box {
    font-size: 0.875em;
  }
}
@media only screen and (min-width: 1600px) {
  .listing-intro {
    margin-bottom: 70px;
  }

  .listing-intro-bg {
    padding: 65px 0;
  }
  .listing-intro-bg .container {
    width: 1200px;
  }
}
.listing-container {
  margin: 30px 0 30px 0;
}

@media only screen and (min-width: 992px) {
  .listing-container {
    margin: 50px 0 50px 0;
  }
}
.listing-item {
  color: black;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #E8E8E8;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.listing-item .photo {
  margin-bottom: 20px;
}
.listing-item .text-box {
  padding-bottom: 20px;
}
.listing-item .text-box p {
  font-size: 0.75em;
  line-height: 200%;
}
.listing-item .button, .listing-item .login-area > form .action, .login-area > form .listing-item .action {
  font-size: 0.75em;
  display: block;
  line-height: 35px;
  margin: 20px 0 0 0;
  color: white;
}
.listing-item:hover {
  background: #f5faf1;
}

@media only screen and (min-width: 992px) {
  .listing-item {
    padding: 30px;
    margin: 0 0 30px 0;
    border: 1px solid #E8E8E8;
    background: #fbfbfb;
  }
  .listing-item .text-box {
    padding-bottom: 0;
  }
  .listing-item .button, .listing-item .login-area > form .action, .login-area > form .listing-item .action {
    margin: 0;
  }
}
.listing-title {
  font-size: 1.15em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0 0 5px 0;
  line-height: 140%;
}
.listing-title a {
  color: inherit;
}

.listing-date {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0;
  color: #999;
}
.listing-date span {
  color: black;
}

@media only screen and (min-width: 992px) {
  .listing-date {
    margin: 0 0 30px 0;
  }
}
@media only screen and (min-width: 992px) {
  .listing-details {
    padding: 10px 0 0 0;
  }
}
.listing-details-item {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  display: inline-block;
  margin: 0 20px 0 0;
  color: #E8E8E8;
}
.listing-details-item a {
  color: inherit;
}
.listing-details-item span {
  color: black;
}

@media only screen and (min-width: 992px) {
  .listing-details-item a:hover, .listing-details-item a:focus {
    color: black;
  }
}
.homepage-content {
  margin: 100px 0;
  color: #c8c8c8;
  line-height: 225%;
}
.homepage-content h1 {
  color: #000;
  margin-bottom: 20px;
}

.homepage-footer-content {
  width: 850px;
  max-width: 100%;
  margin: 100px auto 100px;
  color: #c8c8c8;
}

.homepage-footer-content-title {
  color: #000;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  line-height: 155%;
}

@media only screen and (min-width: 768px) {
  .homepage-content {
    margin: 60px 0;
  }

  .homepage-footer-content {
    margin: 60px auto 60px;
  }
}
@media only screen and (min-width: 992px) {
  .homepage-content {
    margin: 60px 0;
  }

  .homepage-footer-content {
    margin: 60px auto 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .homepage-content {
    margin: 80px 0;
    line-height: 225%;
  }

  .homepage-footer-content {
    margin: 80px auto 80px;
    line-height: 225%;
  }

  .homepage-footer-content-title {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  .homepage-content {
    margin: 100px 0;
    line-height: 225%;
  }

  .homepage-footer-content {
    margin: 100px auto 100px;
    line-height: 225%;
  }

  .homepage-footer-content-title {
    margin-bottom: 40px;
  }
}
#product-banner {
  position: relative;
  margin: 0 -10px;
}
#product-banner img {
  margin: 0 0 10px 0;
}
#product-banner h1 {
  margin: 0;
}
#product-banner .info {
  text-align: center;
}
#product-banner .info > * {
  color: black;
}
#product-banner .text-box {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  line-height: 140%;
  letter-spacing: 0.05em;
  margin: 20px 0 0 0;
}

@media only screen and (min-width: 768px) {
  #product-banner {
    background: black;
    margin: 0;
  }
  #product-banner img {
    margin: 0;
  }
  #product-banner h1 {
    font-size: 2em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  #product-banner .info {
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    box-sizing: border-box;
    color: white;
  }
  #product-banner .info > * {
    color: inherit;
  }
  #product-banner .text-box {
    margin: 30px 0 0 0;
  }
}
#form-category {
  margin: 10px 0 0 0;
}

.badges {
  font-size: 0.5em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  list-style: none;
  letter-spacing: 0.05em;
}
.badges:before, .badges:after {
  content: " ";
  display: table;
}
.badges:after {
  clear: both;
}
.badges > li {
  float: left;
  margin: 5px;
  padding: 5px;
  background: black;
  color: white;
}
.badges > li.new {
  /*                background: black;
              color: white;*/
}
.badges > li.red {
  background: #a22020;
  color: #fff;
}

/*------------------------------------*\
    DETAILS
\*------------------------------------*/
#details h1 {
  font-size: 1.5em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
#details .category {
  margin: 0 0 20px 0;
  font-style: italic;
}
#details .category a {
  opacity: 1;
}
#details .sidebar {
  background: #fff;
}
#details #sidebar .side-box {
  padding: 20px 15px;
}
#details #sidebar .category {
  font-size: 1em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
#details #sidebar .category a {
  opacity: 0.6;
}
#details #sidebar .products-list .category {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
#details #sidebar .breadcrumbs {
  color: #999;
  margin: 0 0 30px;
}
#details #sidebar .breadcrumbs a {
  color: #999;
}
#details .price p {
  display: inline;
}
#details .price span {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 200;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}
#details .main-helper {
  padding: 0;
}
#details .main-helper .side-box {
  border: none;
}
#details .main-helper .owl-height {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
}
#details .back-button {
  font-size: 0.5em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  display: inline-block;
  color: black;
  margin: 0 0 40px -20px;
  letter-spacing: 0.1em;
}
#details .back-button .icon {
  display: inline-block;
  margin: 0 10px 0 0;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
#details .back-button span {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  opacity: 0.5;
}
#details .nav-tabs {
  margin-top: 20px;
}
#details .nav-tabs > li.active a,
#details .nav-tabs > li.active a:hover,
#details .nav-tabs > li.active a:focus {
  border: 0;
  opacity: 1;
}
#details .nav-tabs > li > a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: black;
  opacity: 0.7;
  padding: 10px 0;
  margin-right: 18px;
}
#details .nav-tabs > li > a:hover, #details .nav-tabs > li > a:focus {
  opacity: 1;
  background: transparent;
}
#details .form-submit {
  font-size: 0.85em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-top: 10px;
  border-radius: 2px;
}
#details .product-carousel-container {
  min-width: 0;
  min-height: 0;
}
#details #product-detail-carousel {
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  #details {
    margin: 30px 0;
  }
  #details h1 {
    font-size: 1.75em;
  }
  #details #sidebar {
    width: 100%;
  }
  #details #sidebar .side-box {
    padding: 15px 30px 30px 30px;
  }
  #details #sidebar .side-box.shop-the-look {
    padding: 30px;
  }
  #details #sidebar .breadcrumbs {
    margin: 0 0 30px;
  }
  #details #sidebar .category {
    font-size: 1.125em;
  }
  #details .sidebar {
    position: static;
    width: 40%;
  }
  #details .sidebar.secondary {
    width: 282px;
  }
  #details .back-button:hover span, #details .back-button:focus span {
    opacity: 1;
  }
  #details .main-helper .side-box {
    padding-bottom: 1px;
    padding-right: 1px;
  }
  #details .nav-tabs {
    margin-top: 30px;
  }
  #details .nav-tabs > li > a {
    padding: 12px 0;
    margin-right: 12px;
  }
  #details .text-box {
    font-size: 0.750em;
    margin-top: 15px;
  }
  #details .form-submit {
    font-size: 0.9em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 52.5px;
  }
}
@media only screen and (min-width: 1200px) {
  #details h1 {
    font-size: 2em;
  }
  #details #sidebar .side-box {
    padding: 15px 70px 30px 70px;
  }
  #details #sidebar .breadcrumbs {
    margin: 0 0 50px;
  }
  #details .sidebar {
    width: 562px;
    max-width: 562px;
  }
  #details .sidebar.secondary .side-box {
    padding: 20px;
  }
  #details .nav-tabs {
    margin-top: 50px;
  }
  #details .nav-tabs > li > a {
    padding: 12px 0;
    margin-right: 25px;
    font-size: 0.875em;
  }
  #details .nav-tabs > li > a {
    padding: 14px 0;
    margin-right: 50px;
  }
  #details .text-box {
    font-size: 0.875em;
    margin-top: 20px;
  }
  #details .form-submit {
    font-size: 0.913em;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 57px;
  }
}
.body .slick-prev,
.body .slick-next {
  -webkit-transition: 0.3s 0s opacity;
  -ms-transition: 0.3s 0s opacity;
  transition: 0.3s 0s opacity;
  background: transparent;
  border: 0;
  font-family: "icomoon";
  font-size: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 10%;
  height: 100%;
  overflow: hidden;
  opacity: 0.7;
}
.body .slick-prev:before,
.body .slick-next:before {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  content: "\e90e";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
  color: black;
}
.body .slick-prev:hover, .body .slick-prev:focus,
.body .slick-next:hover,
.body .slick-next:focus {
  opacity: 1;
}
.body .slick-prev {
  left: 0;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.body .slick-next {
  right: 0;
}

.product-options {
  list-style: none;
  margin-top: 10px;
}
.product-options.row {
  margin-left: -10px;
  margin-right: -10px;
}
.product-options.row .col-xs-6 {
  padding-left: 10px;
  padding-right: 10px;
}
.product-options a {
  -webkit-transition: 0.3s 0s;
  -ms-transition: 0.3s 0s;
  transition: 0.3s 0s;
  display: block;
  background: #ebebeb;
  border: 1px solid #ccc;
  padding: 12px 5px;
  font-size: 0.625em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
}
.product-options a.loading {
  padding-left: 30px;
}
.product-options a.loading .icon {
  display: none;
}
.product-options a .icon {
  margin: 0 5px 0 0;
}
.product-options a:hover, .product-options a:focus {
  background: #dfdfdf;
}

@media only screen and (min-width: 768px) {
  .product-options a {
    letter-spacing: 0.05em;
    font-size: 0.7em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-options.row .col-xs-6 {
    margin-bottom: 7px;
  }
}
.faq-social {
  margin: 20px 0 10px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #e3e3e3;
}
.faq-social > a {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  text-transform: uppercase;
  color: black;
  letter-spacing: 0.15em;
}
.faq-social .social-buttons {
  float: right;
}
.faq-social .social-buttons a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
  margin: 0 0 0 10px;
}

@media only screen and (min-width: 768px) {
  .faq-social {
    margin-top: 30px;
    padding-top: 30px;
  }
  .faq-social > a {
    font-size: 0.75em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .faq-social > a:hover, .faq-social > a:focus {
    opacity: 0.6;
  }
  .faq-social .social-buttons a:hover, .faq-social .social-buttons a:focus {
    opacity: 0.6;
  }
}
.toggle-size {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: relative;
  top: -5px;
  display: block;
  width: 90px;
  margin: 0 0 0 auto;
  text-transform: uppercase;
  color: black;
  letter-spacing: 0.15em;
}
.toggle-size .icon {
  font-size: 0.800em;
}

@media only screen and (min-width: 768px) {
  .toggle-size:hover, .toggle-size:focus {
    opacity: 0.6;
  }
}
.form-add-cart {
  margin: 10px 0 0 0;
}
.form-add-cart .field-box:before, .form-add-cart .field-box:after {
  content: " ";
  display: table;
}
.form-add-cart .field-box:after {
  clear: both;
}
.form-add-cart .field-box.vertical .field-label {
  margin: 0;
}
.form-add-cart .field-box .field-label:first-child {
  margin-left: 0;
}
.form-add-cart .field-box .field, .form-add-cart .field-box .login-area > form input, .login-area > form .form-add-cart .field-box input,
.form-add-cart .field-box .field-control {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  height: 35px;
  line-height: 35px;
}
.form-add-cart .field-box .field-control {
  padding: 0;
}
.form-add-cart .field-box .field-label {
  border: 1px solid #c8c8c8;
  margin: 0 0 0 -1px;
}
.form-add-cart .field-label {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.form-add-cart .field-label.alert {
  border-color: #a22020;
  z-index: 1;
}
.form-add-cart .field-label.select:before {
  top: 6px;
  bottom: auto;
}
.form-add-cart .field-label.select .field, .form-add-cart .field-label.select .login-area > form input, .login-area > form .form-add-cart .field-label.select input {
  border: none;
}
.form-add-cart .field-label.quantity:before, .form-add-cart .field-label.quantity:after {
  content: " ";
  display: table;
}
.form-add-cart .field-label.quantity:after {
  clear: both;
}
.form-add-cart .field-label.quantity > * {
  float: left;
}
.form-add-cart .field-label.quantity .field-control {
  font-size: 1em;
  width: 20%;
  text-align: center;
  cursor: pointer;
  line-height: 140%;
}
.form-add-cart .field-label.quantity .field-control ~ .field, .form-add-cart .field-label.quantity .login-area > form .field-control ~ input, .login-area > form .form-add-cart .field-label.quantity .field-control ~ input {
  width: 60%;
  border: 1px solid #c8c8c8;
  border-width: 0 1px;
}
.form-add-cart .field-label .alert-message {
  position: absolute;
  bottom: 100%;
  left: -1px;
  right: -1px;
}

@media only screen and (min-width: 768px) {
  .form-add-cart {
    margin: 20px 0 0 0;
  }
  .form-add-cart .field-box .field-label:first-child {
    margin-left: 0;
  }
  .form-add-cart .field-label.select:before {
    top: 8px;
    bottom: auto;
  }
}
/*------------------------------------*\
    RELATED
\*------------------------------------*/
#related-products {
  background: white;
  padding: 20px 0;
}
#related-products .products-list {
  margin: 20px 0 0 0;
}
#related-products .products-item {
  margin: 0 15px;
}
#related-products .owl-stage-outer {
  margin: 0 0 0 -7.5px;
}
#related-products .owl-stage {
  margin: 0 auto;
}
#related-products .owl-item {
  margin: 0 7.5px !important;
}
#related-products .slick-prev,
#related-products .slick-next {
  -webkit-transition: 0.3s 0s opacity;
  -ms-transition: 0.3s 0s opacity;
  transition: 0.3s 0s opacity;
  border: 0;
  background: transparent;
  font-family: "icomoon";
  font-size: 0;
  position: absolute;
  width: 10%;
  height: 55%;
  top: 0;
  overflow: hidden;
  opacity: 0.5;
}
#related-products .slick-prev:before,
#related-products .slick-next:before {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  content: "\e91a";
  font-size: 72px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  border-radius: 2px;
  text-shadow: 3px 0 0 rgba(0, 0, 0, 0.6);
}
#related-products .slick-prev {
  left: 0;
}
#related-products .slick-next {
  right: 0;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media only screen and (min-width: 768px) {
  #related-products {
    padding: 40px 0 70px 0;
  }
  #related-products .products-list {
    margin: 30px 0 0 0;
  }
  #related-products .products-item {
    margin: 0 30px;
  }
  #related-products .owl-stage-outer {
    margin: 0 0 0 -15px;
  }
  #related-products .owl-item {
    margin: 0 15px !important;
  }
  #related-products .slick-prev,
  #related-products .slick-next {
    height: 73%;
  }
  #related-products .slick-prev:hover,
  #related-products .slick-next:hover {
    opacity: 1;
  }
  #related-products .slick-prev {
    left: -10%;
  }
  #related-products .slick-next {
    right: -10%;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
}
@media only screen and (min-width: 992px) {
  #related-products .owl-stage-outer {
    margin: 0 0 0 -25px;
  }
  #related-products .owl-item {
    margin: 0 25px !important;
  }

  h2.lane {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1600px) {
  #related-products .owl-stage-outer {
    margin: 0 0 0 -37.5px;
  }
  #related-products .owl-item {
    margin: 0 37.5px !important;
  }
  #related-products .products-item {
    margin: 0 50px;
  }
}
/*------------------------------------*\
    ARTICLE
\*------------------------------------*/
#article .photo {
  margin-top: 30px;
}

@media only screen and (min-width: 992px) {
  #article .photo {
    margin: 0 0 30px 0;
  }
  #article .photo:last-child {
    margin-bottom: 0;
  }
}
.back-button-box {
  margin: -10px 0 20px 0;
}

@media only screen and (min-width: 992px) {
  .back-button-box {
    margin: -30px 0 30px 0;
  }
}
.back-button {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.back-button .icon-arrow {
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.post-header {
  margin: 0 0 20px 0;
}
.post-header h1 {
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 992px) {
  .post-header {
    margin: 0 0 40px 0;
  }
}
.blog-title {
  margin: 30px 0 5px 0;
}

.footer-button {
  border-top: 1px solid #e2e2e2;
  margin: 50px 0 30px 0;
  padding-top: 25px;
}

.post-date {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0;
  color: #999;
}
.post-date span {
  color: black;
}

/*------------------------------------*\
    TEXT
\*------------------------------------*/
.text-section {
  padding: 20px 0 40px 0;
  background: white;
}
.text-section h1 {
  margin: 0 0 25px 0;
  font-weight: 900;
}
.text-section h2 {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 170%;
}
.text-section h3 {
  line-height: 170%;
  font-weight: 600;
  padding: 20px 0 10px;
}
.text-section img {
  max-width: 100%;
  height: auto;
}
.text-section .photo {
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .text-section {
    padding: 50px 0 100px 0;
  }
  .text-section h1 {
    margin: 0 0 50px 0;
  }
  .text-section h2 {
    font-size: 1.65em;
  }
  .text-section .photo {
    margin-top: 0px;
  }
}
/*------------------------------------*\
    WISHLIST
\*------------------------------------*/
#wishlist .container {
  max-width: none;
}
#wishlist .no-items {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
#wishlist .no-items .text-box {
  margin: 0 0 30px 0;
}
#wishlist .no-items .button, #wishlist .no-items .login-area > form .action, .login-area > form #wishlist .no-items .action {
  display: block;
}
#wishlist .products-list .products-item .info .category {
  font-size: .750em;
}
#wishlist .products-list .products-item .info .price {
  height: auto;
}
#wishlist .products-list .info-title {
  min-height: 45px;
}
#wishlist .products-list .info-title .title {
  line-height: 130%;
  font-size: 0.875em;
}
#wishlist .products-list label.select.alert {
  padding: 0;
  line-height: inherit;
  font-size: inherit;
}
#wishlist .products-list label.select.alert span {
  text-align: left;
}
#wishlist .products-list .tray-details {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin: 5px 0;
  line-height: 140%;
}
#wishlist .products-list .selected-pot-title {
  font-size: 0.75em;
}
#wishlist form.default .select-one, #wishlist .login-area > form .select-one, #wishlist .userform .select-one,
#wishlist .login-area > form .select-one,
#wishlist .userform .select-one {
  margin: 20px 1px 20px 0;
}

.clearfix {
  clear: both;
}

.tray-multiplier {
  width: 100%;
  display: inline-block;
  font-size: 0.875em;
  letter-spacing: 0.05em;
  color: #aaa;
  margin: 4px 0 0;
}

@media only screen and (min-width: 768px) {
  #wishlist .products-list.sm-3 .products-item {
    width: 33.33%;
  }
  #wishlist .products-list .products-item {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  #wishlist .products-list.md-4 .products-item {
    width: 25%;
  }
}
@media only screen and (min-width: 1200px) {
  #wishlist .products-list.lg-4 .products-item {
    width: 25%;
  }
}
/*------------------------------------*\
    ABOUT
\*------------------------------------*/
/*------------------------------------*\
    CREATE ACCOUNT
\*------------------------------------*/
#create-account {
  padding: 0 10px;
}
#create-account .container {
  background: #f0f0f0;
  padding: 20px 15px;
}
#create-account .inside-container {
  max-width: 100%;
  margin: 0 auto 0;
}
#create-account .field-label {
  background: #fff;
}

@media only screen and (min-width: 768px) {
  #create-account {
    padding: 0;
  }
  #create-account .container {
    padding: 30px 20px;
  }
  #create-account .inside-container {
    width: 940px;
  }
}
@media only screen and (min-width: 1200px) {
  #create-account .container {
    padding: 85px 0;
  }
}
#form-create-account h2 {
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 768px) {
  #form-create-account h2 {
    margin: 0 0 40px 0;
  }
}
/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.address-box {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  max-width: 600px;
  margin: 30px auto;
}
.address-box .address-box-item {
  border-bottom: 1px solid #d4d4d4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.address-box a {
  color: black;
}

@media only screen and (min-width: 768px) {
  .address-box {
    font-size: 0.875em;
    margin-top: 50px;
  }
  .address-box .address-box-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .address-box a:hover, .address-box a:focus {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 1200px) {
  .address-box .address-box-item {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
#uff {
  text-align: center;
}
#uff h2 {
  margin: 0 0 20px 0;
}

.gmap {
  height: 300px;
  width: 100%;
}

.marker-desc {
  padding: 0;
}
.marker-desc .title {
  font-size: 1.2em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  line-height: 160%;
  text-transform: uppercase;
}
.marker-desc .subtitle {
  font-size: 11px;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 160%;
}

@media only screen and (min-width: 768px) {
  .gmap {
    height: 400px;
  }

  .marker-desc {
    padding: 15px;
  }
  .marker-desc .title {
    font-size: 1.4em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    line-height: 180%;
  }
  .marker-desc .subtitle {
    font-size: 13px;
    font-weight: 300;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 180%;
  }
}
@media only screen and (min-width: 1200px) {
  .gmap {
    height: 500px;
  }
}
#form-contact {
  margin: 30px 0 0 0;
}

@media only screen and (min-width: 768px) {
  #form-contact {
    margin: 0;
  }
}
/*------------------------------------*\
    OUR TEAM
\*------------------------------------*/
.our-team-list {
  margin-top: 40px;
}

.our-team {
  margin-bottom: 20px;
}
.our-team .photo {
  margin-bottom: 15px;
  background-position: top center;
  background-size: cover;
  height: 225px;
}
.our-team .photo img {
  display: none;
}
.our-team .name {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.our-team .name a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
}
.our-team .name a:hover, .our-team .name a:focus {
  opacity: 0.7;
}
.our-team .job {
  font-size: 0.75em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  opacity: 0.7;
}
.our-team .description {
  display: none;
}

@media only screen and (min-width: 768px) {
  .our-team-list {
    margin-top: 60px;
  }
  .our-team-list .photo {
    height: 250px;
  }
  .our-team-list .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .our-team-list .col-lg-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .our-team {
    margin-bottom: 80px;
  }
  .our-team .name {
    font-size: 1em;
    margin-bottom: 12px;
  }
  .our-team .job {
    font-size: 0.875em;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 992px) {
  .our-team-list .photo {
    height: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .our-team-list {
    margin-top: 70px;
  }
  .our-team-list .photo {
    height: 270px;
  }
}
@media only screen and (min-width: 1600px) {
  .our-team-list .photo {
    height: 320px;
  }
  .our-team-list .row {
    margin-left: -55px;
    margin-right: -55px;
  }
  .our-team-list .col-lg-3 {
    padding-left: 55px;
    padding-right: 55px;
  }

  .our-team {
    margin-bottom: 85px;
  }
}
/*------------------------------------*\
    DESIGNERS
\*------------------------------------*/
#category-list,
.top-menu {
  margin: 0 0 20px 0;
  text-align: center;
}
#category-list > .select .field, #category-list > .select .login-area > form input, .login-area > form #category-list > .select input,
.top-menu > .select .field,
.top-menu > .select .login-area > form input,
.login-area > form .top-menu > .select input {
  height: 30px;
  line-height: 30px;
}
#category-list > div,
.top-menu > div {
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
#category-list a,
.top-menu a {
  font-size: 0.875em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
}
#category-list a.disabled,
.top-menu a.disabled {
  opacity: 0.2;
}

@media only screen and (min-width: 768px) {
  #category-list,
  .top-menu {
    padding: 20px 0;
    border: 1px solid #d4d4d4;
    border-width: 1px 0 1px 0;
    margin: 0 0 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #category-list a:hover,
  .top-menu a:hover {
    opacity: 0.6;
  }
}
#designers-list {
  margin: 0 auto;
}
#designers-list > div {
  padding: 0 0 20px 0;
}
#designers-list > div > div {
  padding: 10px 0;
  border-bottom: 1px solid #d4d4d4;
}
#designers-list > div h3 {
  font-size: 1.25em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
#designers-list > div a {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: block;
  letter-spacing: 0.1em;
  color: black;
}
#designers-list > div a.disabled {
  opacity: 0.2;
}

@media only screen and (min-width: 768px) {
  #designers-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  #designers-list > div {
    display: table;
    padding: 0 15px 50px 15px;
  }
  #designers-list > div > div {
    padding: 15px 0 0 0;
    border: none;
  }
  #designers-list > div a:hover, #designers-list > div a:focus {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 992px) {
  #designers-list {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
}
/*------------------------------------*\
    MODAL
\*------------------------------------*/
.modal-backdrop.in {
  opacity: 0.9;
  background-color: #474747;
}

.modal {
  padding-right: 0 !important;
}
.modal h2 {
  text-align: center;
  margin: 0 0 20px 0;
}
.modal .container {
  padding: 0 10px;
}
.modal .close {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: absolute;
  display: block;
  font-size: 1em;
  color: black;
  z-index: 10;
}
.modal .close.top {
  top: -28px;
  right: 10px;
  color: white;
}
.modal .close.bottom {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin-left: -17px;
}
.modal .vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
  /* This makes sure that we can still click outside of the modal to close it */
}
.modal .vertical-align-center {
  display: table-cell;
  vertical-align: middle;
  pointer-events: none;
}
.modal .modal-open {
  padding-right: 0 !important;
}
.modal .modal-dialog {
  width: auto;
}
.modal .modal-content {
  border-radius: 0;
  border: none;
  pointer-events: all;
  margin: 40px auto 30px auto;
  padding: 20px 10px 60px 10px;
  box-sizing: border-box;
  box-shadow: none;
}
.modal .modal-backdrop {
  background: #010b13;
}
.modal .modal-backdrop.in {
  opacity: 0.9;
}
.modal .products-list {
  margin: 20px 0 0 0;
  list-style: none;
}
.modal .products-list > li {
  border-top: 1px solid #e0e0e0;
  overflow: visible;
}
.modal .products-list > li.removed {
  overflow: hidden;
}
.modal .products-list > li.removed > .row {
  -webkit-transition: 0.3s 0s opacity, 0.6s 0s left;
  -ms-transition: 0.3s 0s opacity, 0.6s 0s left;
  transition: 0.3s 0s opacity, 0.6s 0s left;
  left: -100%;
  opacity: 0;
}
.modal .products-list > li > a {
  display: block;
  padding: 6px 0;
  color: black;
}
.modal .products-list > li > .row {
  position: relative;
  left: 0;
  display: block;
  padding: 6px 0;
  color: black;
}
.modal .products-list > li > .message {
  font-size: 0.688em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-align: center;
  min-height: 72px;
  line-height: 72px;
}
.modal .products-list > li .photo {
  position: relative;
  width: 60px;
  max-width: 100%;
}
.modal .products-list > li .photo > div,
.modal .products-list > li .photo > a {
  padding-bottom: 131%;
  background: black;
}
.modal .products-list > li .photo > div span,
.modal .products-list > li .photo > a span {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: white;
  opacity: 0;
}
.modal .products-list > li .photo > div span:first-child,
.modal .products-list > li .photo > a span:first-child {
  opacity: 0.95;
}
.modal .products-list > li .photo img {
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.modal .products-list > li .title {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
.modal .products-list > li .subtitle {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-top: 5px;
  color: #939393;
}
.modal .products-list > li .action {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
.modal .products-list > li .action a {
  position: relative;
  color: inherit;
}
.modal .products-list > li .action a.loading .icon {
  opacity: 0;
}
.modal .products-list > li .add {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  display: inline-block;
  margin-right: 10px;
  color: black;
  text-transform: uppercase;
  box-sizing: border-box;
}
.modal .products-list > li .add.loading {
  border-color: transparent;
  background-color: transparent !important;
  color: transparent;
}
.modal .products-list > li .add span {
  position: relative;
}
.modal .total {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-align: right;
  padding: 20px 20px 0 20px;
  border-top: 1px solid #d4d4d4;
  letter-spacing: 0.1em;
}
.modal .total span {
  font-size: 1.5em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  padding: 0 0 0 10px;
}
.modal .cart-options {
  margin-top: 20px;
}
.modal .cart-options .button, .modal .cart-options .login-area > form .action, .login-area > form .modal .cart-options .action {
  margin: 10px 0 0 0;
  width: 100%;
}
.modal .no-items {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.modal .no-items .text-box {
  margin: 0 0 30px 0;
}
.modal .no-items .button, .modal .no-items .login-area > form .action, .login-area > form .modal .no-items .action {
  display: block;
}

@media only screen and (min-width: 768px) {
  .modal h2 {
    margin: 0 0 60px 0;
  }
  .modal .close:hover, .modal .close:focus {
    opacity: 0.6;
  }
  .modal .products-list > li > .row,
  .modal .products-list > li > a {
    -webkit-transition: 0.2s 0s;
    -ms-transition: 0.2s 0s;
    transition: 0.2s 0s;
  }
  .modal .products-list > li > .row:hover, .modal .products-list > li > .row:focus,
  .modal .products-list > li > a:hover,
  .modal .products-list > li > a:focus {
    margin: 0 -6px;
    padding: 6px;
    background: #F0F0F0;
  }
  .modal .products-list > li .action {
    font-size: 0.750em;
  }
  .modal .products-list > li .action:hover, .modal .products-list > li .action:focus {
    opacity: 1;
  }
  .modal .products-list > li .add {
    border: 1px solid #d4d4d4;
    padding: 10px;
    margin: 0;
  }
  .modal .products-list > li .add:hover, .modal .products-list > li .add:focus {
    background: white;
  }
  .modal .products-list > li .title {
    font-size: 1em;
  }
  .modal .products-list > li .subtitle {
    font-size: 0.813em;
    margin-top: 10px;
  }
  .modal .cart-options {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 992px) {
  .modal .close {
    margin: 0;
  }
  .modal .close.top {
    top: 60px;
    right: 80px;
    color: black;
  }
  .modal .modal-content {
    padding: 60px 80px;
  }
  .modal .vertical-align-center {
    padding: 20px 0;
  }
  .modal .products-list {
    margin: 60px 0 0 0;
  }
  .modal .cart-options .button, .modal .cart-options .login-area > form .action, .login-area > form .modal .cart-options .action {
    margin: 0;
  }
}
#announce .modal-content {
  max-width: 860px;
}
#announce .photo {
  margin-bottom: 30px;
}
#announce form {
  margin: 20px 0 0 0;
}

@media only screen and (min-width: 992px) {
  #announce h2 {
    font-size: 1.375em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
    margin: 0 0 20px 0;
    text-align: left;
  }
  #announce .close.top {
    top: 30px;
    right: 30px;
  }
  #announce .modal-content {
    padding: 30px;
  }
  #announce .photo {
    margin-bottom: 0;
  }
}
#new-item .modal-content {
  max-width: 700px;
  padding-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  #new-item .modal-content {
    padding-bottom: 60px;
  }
}
#shop-the-look .container {
  padding: 0;
}
#shop-the-look .close.top {
  top: 22px;
  color: black;
}
#shop-the-look .modal-content {
  margin: 0;
}
#shop-the-look .products-list {
  margin: 0;
}
#shop-the-look .products-list > li .photo {
  max-width: none;
  width: auto;
}
#shop-the-look .products-list > li .title {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}

.modal.instagram {
  text-align: center;
}
.modal.instagram .modal-content {
  display: inline-block;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.modal.instagram .content {
  text-align: left;
  overflow-y: auto;
}
.modal.instagram .info {
  padding: 20px 10px 0 10px;
  box-sizing: border-box;
}
.modal.instagram .info .text-box {
  padding-right: 30px;
  line-height: 160%;
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.modal.instagram .info .text-box b,
.modal.instagram .info .text-box strong {
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .modal.instagram .info .text-box {
    font-size: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .modal.instagram .modal-content {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .modal.instagram .modal-content > .photo {
    float: left;
    padding: 30px;
    max-width: 550px;
  }
  .modal.instagram .content {
    float: right;
    width: 400px;
  }
  .modal.instagram .info {
    padding: 30px 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .modal.instagram .modal-content > .photo {
    min-width: 500px;
    padding: 40px;
    max-width: 550px;
  }
  .modal.instagram .content {
    width: 600px;
  }
  .modal.instagram .info {
    padding: 40px 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .modal.instagram .modal-content {
    width: auto;
  }
}
#sign-in .modal-content {
  max-width: 500px;
}
#sign-in form {
  margin: 0;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
}
#sign-in form .form-options {
  margin: 10px 0 0 0;
  text-align: right;
}
#sign-in form .form-swap {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  text-transform: none;
  color: black;
}
#sign-in #form-recover-password {
  display: none;
}

@media only screen and (min-width: 768px) {
  #sign-in form .field-label {
    margin: 0 0 20px 0;
  }
  #sign-in form .form-swap:hover, #sign-in form .form-swap:focus {
    opacity: 0.6;
  }
}
.new-account {
  margin: 20px 0 0 0;
}
.new-account h2 {
  margin: 0 0 20px 0;
}
.new-account .button, .new-account .login-area > form .action, .login-area > form .new-account .action {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .new-account {
    margin: 60px 0 0 0;
  }
}
#question .modal-content, #notify-stock .modal-content {
  max-width: 800px;
}
#question .photo, #notify-stock .photo {
  position: relative;
  max-width: 100%;
  margin: 0 0 10px 0;
}
#question .photo > div, #notify-stock .photo > div {
  padding-bottom: 111%;
  background: black;
}
#question .photo > div span, #notify-stock .photo > div span {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: white;
  opacity: 0;
}
#question .photo > div span:first-child, #notify-stock .photo > div span:first-child {
  opacity: 0.95;
}
#question .photo img, #notify-stock .photo img {
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
#question .photo, #notify-stock .photo {
  margin: 0 0 10px 0;
  background: black;
}
#question .photo img, #notify-stock .photo img {
  opacity: 0.95;
}
#question .field-label, #notify-stock .field-label {
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  #question .photo, #notify-stock .photo {
    float: left;
    width: 109px;
    margin: 0 20px 20px 0;
  }
}
#our-team .vertical-alignment-helper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-content: center;
  align-items: center;
  min-height: 100%;
  max-width: 100%;
}
#our-team .vertical-align-center {
  position: relative;
  flex: 1;
  align-self: center;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
#our-team .modal-dialog {
  margin: 0;
  height: 100%;
}
#our-team .modal-content {
  max-width: 100%;
  margin: 0;
  min-height: 100%;
}
#our-team .modal-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
#our-team .container {
  position: relative;
  max-width: 100%;
}
#our-team h2 {
  text-align: left;
  font-size: 1.3em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
}
#our-team .job {
  font-weight: 100;
  font-size: 0.875em;
  letter-spacing: 0.05em;
  line-height: 150%;
  height: 20px;
}
#our-team .our-team-header {
  margin-bottom: 20px;
}
#our-team .photo {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 10px;
}
#our-team .photo img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#our-team .close {
  font-size: 1.5em;
}
#our-team .close.top {
  color: black;
  top: 20px;
  right: 40px;
}

@media only screen and (min-width: 768px) {
  #our-team h2 {
    font-size: 1.6em;
    margin-bottom: 8px;
  }
  #our-team .job {
    font-size: 1em;
    height: 40px;
  }
  #our-team .our-team-header {
    margin-bottom: 30px;
  }
  #our-team .close {
    font-size: 1.75em;
  }
  #our-team .modal-content {
    height: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  #our-team h2 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  #our-team .job {
    font-size: 1.3em;
  }
  #our-team .our-team-header {
    margin-bottom: 50px;
  }
  #our-team .close {
    font-size: 2.5em;
  }
  #our-team .close.top {
    color: black;
    top: 60px;
    right: 80px;
  }
  #our-team .row {
    margin-left: -40px;
    margin-right: -40px;
  }
  #our-team .row .col-xs-6 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  #our-team .modal-container {
    width: 1600px;
  }
  #our-team .container {
    position: relative;
    width: 1400px;
  }
}
/*------------------------------------*\
    ALERTS
\*------------------------------------*/
#website-alerts {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 999;
}
#website-alerts.affix, #website-alerts.affix-bottom {
  position: fixed;
  top: 45px;
}

@media only screen and (min-width: 768px) {
  #website-alerts.affix, #website-alerts.affix-bottom {
    top: 57px !important;
  }
}
#general-alerts .alert {
  display: none;
  background: black;
  color: white;
  text-align: center;
}
#general-alerts .alert .container {
  position: relative;
}
#general-alerts .alert .close {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: absolute;
  top: 13px;
  right: 15px;
  color: white;
  font-size: 0.750em;
}
#general-alerts p {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  line-height: 140%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 30px;
}
#general-alerts p a {
  color: white;
  border-bottom: 1px solid white;
}

@media only screen and (min-width: 768px) {
  #general-alerts .alert .close {
    top: 22px;
    right: 0;
    font-size: 1em;
  }
  #general-alerts .alert .close:hover, #general-alerts .alert .close:focus {
    opacity: 0.6;
  }
  #general-alerts p {
    padding: 20px 30px;
  }
}
/*------------------------------------*\
    FOOTER
\*------------------------------------*/
#footer {
  position: relative;
  padding: 70px 0 20px;
  margin-top: -1px;
  background: url("../img/footer-bg.jpg") bottom center;
  background-size: cover;
  color: #a7a7a9;
  z-index: 1;
}
#footer .links {
  text-align: center;
}

@media only screen and (min-width: 992px) {
  #footer {
    padding: 100px 0 0;
  }
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top {
    padding-bottom: 0;
  }
}
.footer-bottom {
  padding-top: 30px;
}
.footer-bottom h3 {
  font-size: 1em;
  color: #fff;
  margin-bottom: 17px;
}

@media only screen and (min-width: 992px) {
  .footer-bottom {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-bottom {
    padding-top: 70px;
  }
}
.footer-item {
  font-size: 0.7em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 180%;
  position: relative;
  color: inherit;
}
.footer-item.footer-phone {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.footer-item.footer-phone span {
  display: inline-block;
  margin-right: 8px;
}
.footer-item a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: inherit;
}
.footer-item a.footer-view-map {
  color: #606056;
}
.footer-item a:hover, .footer-item a:focus {
  color: #fff;
}

.footer-item-holder {
  margin-bottom: 20px;
}

.footer-nav {
  font-size: 0.7em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav > li {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .footer-nav > li {
    margin-bottom: 20px;
  }
}
.footer-nav > li > a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: #a7a7a9;
  line-height: 150%;
}
.footer-nav > li > a:hover, .footer-nav > li > a:focus {
  color: #fff;
}

#form-newsletter:before, #form-newsletter:after {
  content: " ";
  display: table;
}
#form-newsletter:after {
  clear: both;
}
#form-newsletter .field-label {
  margin-bottom: 20px;
}
#form-newsletter .field-label.alert .field, #form-newsletter .field-label.alert .login-area > form input, .login-area > form #form-newsletter .field-label.alert input {
  background-color: rgba(255, 0, 0, 0.1);
}
#form-newsletter .alert-message {
  display: none !important;
}
#form-newsletter .field, #form-newsletter .login-area > form input, .login-area > form #form-newsletter input {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: transparent;
  border: 1px solid #fff;
  line-height: 160%;
  min-height: 38px;
  color: #fff;
}
#form-newsletter .field::-moz-placeholder, #form-newsletter .login-area > form input::-moz-placeholder, .login-area > form #form-newsletter input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
#form-newsletter .field:-ms-input-placeholder, #form-newsletter .login-area > form input:-ms-input-placeholder, .login-area > form #form-newsletter input:-ms-input-placeholder {
  color: #fff;
}
#form-newsletter .field::-webkit-input-placeholder, #form-newsletter .login-area > form input::-webkit-input-placeholder, .login-area > form #form-newsletter input::-webkit-input-placeholder {
  color: #fff;
}
#form-newsletter .form-submit {
  font-size: 0.875em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
  line-height: 160%;
  height: 38px;
  width: 130px;
  max-width: 100%;
}

@media only screen and (min-width: 992px) {
  #form-newsletter .field, #form-newsletter .login-area > form input, .login-area > form #form-newsletter input {
    padding: 10px 20px;
  }
}
#copyright {
  font-size: 0.7em;
  font-weight: 300;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 20px 0 0 0;
  padding: 20px 0;
  line-height: 140%;
  color: #a7a7a9;
  text-align: center;
}
#copyright .block {
  display: block;
}
#copyright a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  color: #a7a7a9;
}
#copyright .copy-left {
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) {
  #copyright {
    margin: 30px 0 0 0;
  }
  #copyright .block {
    display: inline;
  }
  #copyright a:hover, #copyright a:focus {
    color: #fff;
  }

  .copy-left {
    text-align: left;
  }

  .copy-right {
    text-align: right;
  }
}
/*------------------------------------*\
    FORMS
\*------------------------------------*/
.field-label {
  display: block;
  position: relative;
}
.field-label.disabled {
  background: #F2F2F2;
}
.field-label.disabled .field, .field-label.disabled .login-area > form input, .login-area > form .field-label.disabled input {
  color: #848484;
}
.field-label.select.loading .field, .field-label.select.loading .login-area > form input, .login-area > form .field-label.select.loading input {
  background-image: none;
}
.field-label.select option {
  padding: 2px 15px;
}
.field-label.radio, .field-label.checkbox {
  border: none;
  cursor: pointer;
}
.field-label.radio .field, .field-label.radio .login-area > form input, .login-area > form .field-label.radio input, .field-label.checkbox .field, .field-label.checkbox .login-area > form input, .login-area > form .field-label.checkbox input {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  line-height: normal;
}

.field, .login-area > form input {
  font-size: 0.625em;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  width: 100%;
  padding: 0 15px;
  border: none;
  box-sizing: border-box !important;
  box-shadow: none;
  background-color: white;
}

.form-submit {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  position: relative;
  border: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
}
.form-submit.loading span {
  padding-left: 20px;
}
.form-submit span {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .field-lane {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .field-lane > * {
    flex: 1;
  }
}
form.default .message, .login-area > form .message, .userform .message {
  text-transform: none;
  padding: 12px;
  margin-bottom: 15px;
  background: #f0f0f0;
  font-size: 0.85em;
}
form.default .message.bad, .login-area > form .message.bad, .userform .message.bad {
  background: #C00;
  color: #fff;
}
form.default .spacer, .login-area > form .spacer, .userform .spacer {
  padding: 10px 0;
}
form.default .field-label, .login-area > form .field-label, .userform .field-label {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  margin: 0 0 10px 0;
  border: 1px solid #c8c8c8;
}
form.default .field-label.focus, .login-area > form .field-label.focus, .userform .field-label.focus {
  border-color: #999;
}
form.default .field-label.alert, .login-area > form .field-label.alert, .userform .field-label.alert {
  position: relative;
  border-color: #a22020;
}
form.default .field-label.alert .alert-message, .login-area > form .field-label.alert .alert-message, .userform .field-label.alert .alert-message {
  -webkit-transition: 0.2s 0s opacity;
  -ms-transition: 0.2s 0s opacity;
  transition: 0.2s 0s opacity;
  height: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  opacity: 1;
}
form.default .field-label.small span, .login-area > form .field-label.small span, .userform .field-label.small span,
form.default .field-label.small .field,
.login-area > form .field-label.small .field,
.userform .field-label.small .field,
form.default .field-label.small .login-area > form input,
.login-area > form form.default .field-label.small input,
.login-area > form .field-label.small input,
.userform .field-label.small .login-area > form input,
.login-area > form .userform .field-label.small input {
  padding-left: 10px;
  padding-right: 10px;
}
form.default .field-label.select .field, .login-area > form .field-label.select .field, .userform .field-label.select .field, form.default .field-label.select .login-area > form input, .login-area > form form.default .field-label.select input, .login-area > form .field-label.select input, .userform .field-label.select .login-area > form input, .login-area > form .userform .field-label.select input {
  border-width: 0;
  padding-right: 13px;
  padding-left: 13px;
  text-transform: initial;
  -webkit-appearance: initial;
  -moz-appearance: initial;
  appearance: initial;
}
form.default .field-label.select option.disabled, .login-area > form .field-label.select option.disabled, .userform .field-label.select option.disabled,
form.default .field-label.select option[disabled],
.login-area > form .field-label.select option[disabled],
.userform .field-label.select option[disabled] {
  color: #AAA;
}
form.default .field-label.radio, .login-area > form .field-label.radio, .userform .field-label.radio, form.default .field-label.checkbox, .login-area > form .field-label.checkbox, .userform .field-label.checkbox {
  padding: 10px;
  overflow: visible;
}
form.default .field-label.radio.checked, .login-area > form .field-label.radio.checked, .userform .field-label.radio.checked, form.default .field-label.checkbox.checked, .login-area > form .field-label.checkbox.checked, .userform .field-label.checkbox.checked {
  border-color: #000;
}
form.default .field-label.radio.checked span, .login-area > form .field-label.radio.checked span, .userform .field-label.radio.checked span, form.default .field-label.checkbox.checked span, .login-area > form .field-label.checkbox.checked span, .userform .field-label.checkbox.checked span {
  opacity: 1;
}
form.default .field-label.radio.row span, .login-area > form .field-label.radio.row span, .userform .field-label.radio.row span, form.default .field-label.checkbox.row span, .login-area > form .field-label.checkbox.row span, .userform .field-label.checkbox.row span {
  padding: 0;
}
form.default .field-label.radio.row > div:first-child span, .login-area > form .field-label.radio.row > div:first-child span, .userform .field-label.radio.row > div:first-child span, form.default .field-label.checkbox.row > div:first-child span, .login-area > form .field-label.checkbox.row > div:first-child span, .userform .field-label.checkbox.row > div:first-child span {
  padding-left: 25px;
}
form.default .field-label.radio .field, .login-area > form .field-label.radio .field, .userform .field-label.radio .field, form.default .field-label.radio .login-area > form input, .login-area > form form.default .field-label.radio input, .login-area > form .field-label.radio input, .userform .field-label.radio .login-area > form input, .login-area > form .userform .field-label.radio input, form.default .field-label.checkbox .field, .login-area > form .field-label.checkbox .field, .userform .field-label.checkbox .field, form.default .field-label.checkbox .login-area > form input, .login-area > form form.default .field-label.checkbox input, .login-area > form .field-label.checkbox input, .userform .field-label.checkbox .login-area > form input, .login-area > form .userform .field-label.checkbox input {
  top: -1px;
  width: auto;
  height: auto;
  line-height: normal;
}
form.default .field-label.radio span, .login-area > form .field-label.radio span, .userform .field-label.radio span, form.default .field-label.checkbox span, .login-area > form .field-label.checkbox span, .userform .field-label.checkbox span {
  font-size: 0.625em;
  padding: 0 15px 0 25px;
  letter-spacing: normal;
}
form.default .field-label.checkbox, .login-area > form .field-label.checkbox, .userform .field-label.checkbox {
  border: none;
  padding: 0;
}
form.default .field-label.checkbox span, .login-area > form .field-label.checkbox span, .userform .field-label.checkbox span {
  text-transform: none;
  font-size: 0.688em;
}
form.default .field-label span, .login-area > form .field-label span, .userform .field-label span {
  font-size: 0.5em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  display: block;
  padding: 6px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
form.default .field-label span, .login-area > form .field-label span, .userform .field-label span,
form.default .field-label .field,
.login-area > form .field-label .field,
.userform .field-label .field,
form.default .field-label .login-area > form input,
.login-area > form form.default .field-label input,
.login-area > form .field-label input,
.userform .field-label .login-area > form input,
.login-area > form .userform .field-label input {
  padding-left: 13px;
  padding-right: 13px;
}
form.default .field-label .alert-message, .login-area > form .field-label .alert-message, .userform .field-label .alert-message {
  font-size: 0.625em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  display: none;
  background: #a22020;
  color: white;
  height: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  text-align: center;
  line-height: 120%;
}
form.default textarea.field, .login-area > form textarea.field, .userform textarea.field {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 35px;
  line-height: 140%;
  height: 200px;
  max-height: 240px;
  resize: vertical;
  transition: none;
}
form.default textarea.field.half-height, .login-area > form textarea.field.half-height, .userform textarea.field.half-height {
  height: 100px;
}
form.default .field, .login-area > form .field, .userform .field, form.default .login-area > form input, .login-area > form form.default input, .login-area > form input {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  padding: 0;
  line-height: 35px;
  height: 35px;
  background: none;
}
form.default .form-submit, .login-area > form .form-submit, .userform .form-submit {
  width: 100%;
}
form.default .form-submit.loading span, .login-area > form .form-submit.loading span, .userform .form-submit.loading span {
  padding-left: 40px;
}

@media only screen and (min-width: 768px) {
  form.default h2, .login-area > form h2, .userform h2,
  form.default h3,
  .login-area > form h3,
  .userform h3 {
    text-align: center;
  }
  form.default .field-label, .login-area > form .field-label, .userform .field-label {
    margin: 0 0 20px 0;
  }
  form.default .field-lane, .login-area > form .field-lane, .userform .field-lane {
    margin-left: -10px;
    margin-right: -10px;
  }
  form.default .field-lane > *, .login-area > form .field-lane > *, .userform .field-lane > * {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.login-area > form {
  margin-top: 20px;
  margin: 20px auto 0 auto;
  max-width: 400px;
}
.login-area > form .message {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-transform: none;
  margin: 0 0 20px 0;
  line-height: 120%;
}
.login-area > form .field.radio, .login-area > form input.radio, .login-area > form .field.checkbox, .login-area > form input.checkbox {
  border: none;
  padding: 0;
  margin: 0 0 20px 0;
  height: auto;
  line-height: normal;
}
.login-area > form .field.radio.checked label, .login-area > form input.radio.checked label, .login-area > form .field.checkbox.checked label, .login-area > form input.checkbox.checked label {
  opacity: 1;
}
.login-area > form .field.radio input, .login-area > form input.radio input, .login-area > form .field.checkbox input, .login-area > form input.checkbox input {
  float: left;
  width: auto;
  height: auto;
  line-height: normal;
  margin: 0;
  padding-left: 13px;
  padding-right: 13px;
}
.login-area > form .field.radio label, .login-area > form input.radio label, .login-area > form .field.checkbox label, .login-area > form input.checkbox label {
  cursor: pointer;
  display: block;
  font-size: 0.786em;
  padding: 0 15px 0 25px;
  letter-spacing: normal;
  text-transform: none;
  opacity: 0.5;
}
.login-area > form .action {
  width: 100%;
  height: 50px;
}
.login-area .text-box {
  line-height: 140%;
}

#ForgotPassword {
  margin: 10px 0 0 0;
  text-align: right;
}
#ForgotPassword a {
  -webkit-transition: 0.2s 0s;
  -ms-transition: 0.2s 0s;
  transition: 0.2s 0s;
  font-size: 0.75em;
  font-weight: normal;
  font-family: "Helvetica Neue LT W01_55 Roman";
  transition: 0.2s 0s;
  text-transform: none;
  color: black;
}

@media only screen and (min-width: 768px) {
  .login-area .text-box {
    text-align: center;
  }

  #ForgotPassword a:hover, #ForgotPassword a:focus {
    opacity: 0.6;
  }
}
#ShopAccountForm_EditAccountForm {
  margin: 0 0 30px 0;
}

.mobile-after-menu > a {
  display: inline-block;
  background: #d4d4d4;
  color: #000;
  padding: 18px 0;
  font-size: 0.7em;
  font-weight: 800;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.7px;
  text-align: center;
  width: 50%;
  border-left: 1px solid #bfbfbf;
}
.mobile-after-menu > a:first-child {
  border-left: 0;
}
.mobile-after-menu > a.sale {
  color: #a22020;
}
.mobile-after-menu > a:hover, .mobile-after-menu > a:focus {
  background: #e5e5e5;
}

/*------------------------------------*\
    PRODUCT DETAILS
\*------------------------------------*/
.qty-available {
  font-size: 1em;
  font-weight: 600;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
  padding-top: 15px;
}

.selected-pot-title {
  margin: 0 0 15px;
  display: block;
  font-size: 0.875em;
  line-height: 140%;
}

/*------------------------------------*\
    MODAL SUMMARY
\*------------------------------------*/
.summary h2 {
  margin: 0 0 25px 0;
}
.summary .close {
  top: 15px;
  right: 15px;
}
.summary.modal-content {
  padding: 15px;
}
@media only screen and (min-width: 768px) {
  .summary.modal-content {
    padding: 30px;
  }
}
.summary .summary-header {
  background: #f3f3f3;
  padding: 15px 5px;
  font-weight: bold;
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
}
.summary .summary-row {
  padding: 10px 5px;
  border-bottom: 1px solid #ddd;
  line-height: 140%;
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
.summary .summary-row .product-title {
  font-weight: 600;
}
.summary .summary-row img {
  max-width: 100%;
  width: 80px;
  padding-right: 10px;
}
.summary .summary-row__pot {
  background: #fcfcfc;
  padding: 7px 0;
}
.summary .summary-row__pot img {
  width: 60px;
  padding-right: 10px;
}
.summary .summary-row:last-of-type {
  border-bottom: 0;
}
.summary .summary-row .pot-item {
  margin-bottom: 5px;
}
.summary .summary-total {
  padding: 15px 5px;
  border-top: 1px solid #ddd;
  font-size: 1em;
  font-weight: normal;
  font-weight: 700;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}

@media only screen and (min-width: 768px) {
  .summary .close {
    top: 20px;
    right: 20px;
  }
  .summary .summary-header {
    font-size: 0.875em;
    font-weight: normal;
    font-weight: 600;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .summary .summary-row {
    font-size: 0.875em;
    font-weight: normal;
    font-weight: 400;
    font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  }
  .summary .summary-row img {
    padding-right: 0;
  }
  .summary .summary-row__pot img {
    margin-right: 25px;
    float: right;
  }
}
/*------------------------------------*\
    CHECKOUT PAGE
\*------------------------------------*/
.checkout .site-logo {
  top: 0;
  margin: 0 auto;
  max-width: 180px;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.checkout .site-logo:hover {
  opacity: 0.6;
}
.checkout .site-logo span {
  padding: 0;
}
.checkout .site-logo img {
  display: inline-block;
}

.alert-box.alert-warning {
  line-height: 150%;
}

#process-step1 .item {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
#process-step1 .item .product-title {
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 140%;
  position: relative;
  padding-right: 15px;
  margin: 0 0 5px;
}
#process-step1 .item .product-title a {
  color: #000;
}
#process-step1 .item .info-wrapper {
  position: relative;
  height: 100%;
}
#process-step1 .item .info-wrapper .icon-wishlist-o {
  font-weight: 600;
}
#process-step1 .item .photo > a {
  padding-bottom: 0;
}
#process-step1 .item .photo > a span {
  position: relative;
}
#process-step1 .item .photo img {
  top: 0;
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  max-height: 115px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#process-step1 .item .field-label .field, #process-step1 .item .field-label .login-area > form input, .login-area > form #process-step1 .item .field-label input {
  padding-top: 13px;
  padding-bottom: 1px;
  height: 34px;
  background-position: right 20px;
  margin-top: 5px;
}
#process-step1 .item .tray-multiplier {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin: 0 0 0 10px;
  display: inline;
}
#process-step1 .item .price {
  margin: 0;
}
#process-step1 .item .delete {
  margin: 0 0 30px;
}
#process-step1 .item .main-item {
  margin-bottom: 20px;
}
#process-step1 .item .remove {
  color: #888;
  font-size: 0.7em;
  margin: 0 0 0 10px;
  position: absolute;
  top: 2px;
  right: 0;
}
#process-step1 .item div.pots {
  margin-bottom: 30px;
}
#process-step1 .item div.pots:last-of-type {
  margin-bottom: 0;
}
#process-step1 .item div.pots__image {
  text-align: center;
}
#process-step1 .item div.pots__image img {
  max-width: 100%;
}
#process-step1 .item div.pots .product-title {
  text-transform: none;
  letter-spacing: 0.05em;
  font-weight: 400;
}
#process-step1 .item div.pots .quantity {
  font-size: 0.813em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
#process-step1 .item .options {
  width: 100%;
  position: relative;
}

#process-step2b .paylater-alert {
  display: none;
  color: #e01717;
}
#process-step2b .paylater-alert td {
  text-transform: none;
  font-weight: 600;
}
#process-step2b .eway-alert {
  color: #e01717;
}
#process-step2b .eway-alert td {
  text-transform: none;
  font-weight: 600;
}
#process-step2b button.disabled {
  background: #aaa;
  color: #ddd;
}
#process-step2b .img-icon.card:before {
  background-image: url(../img/ic-credit-cards-noamex.svg);
  width: 74px;
  padding-bottom: 29.8%;
}

#process-step2b form.default .field-label span, #process-step2b .login-area > form .field-label span, #process-step2b .userform .field-label span,
#process-step2b .login-area > form .field-label
.userform .field-label span {
  font-size: 0.75em;
  letter-spacing: 0;
}
#process-step2b form.default .field-label.focus span, #process-step2b .login-area > form .field-label.focus span, #process-step2b .userform .field-label.focus span,
#process-step2b form.default .field-label.notEmpty span,
#process-step2b .login-area > form .field-label.notEmpty span,
#process-step2b .userform .field-label.notEmpty span {
  font-size: .5em;
  letter-spacing: 0.05em;
}

#available-coupons.text-box {
  line-height: 150%;
}
#available-coupons.text-box code {
  font-size: 0.875em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}

.new-address {
  display: none;
}

.field-box.options {
  margin: 0 0 10px;
}

table.orderhistory thead > th {
  background: #f7f7f7;
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #eee;
  padding: 0 5px;
}
table.orderhistory td {
  border-bottom: 1px solid #eee;
  padding: 5px;
}

form.default .select-one, .login-area > form .select-one, .userform .select-one {
  margin: 20px 0;
}
form.default .select-one__title, .login-area > form .select-one__title, .userform .select-one__title {
  font-size: 1em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  margin: 0 0 10px 0;
}
form.default .select-one__item, .login-area > form .select-one__item, .userform .select-one__item {
  -webkit-transition: 0.2s border-color;
  -ms-transition: 0.2s border-color;
  transition: 0.2s border-color;
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #c8c8c8;
  margin: 0 -1px -1px 0;
  cursor: pointer;
}
form.default .select-one__item.checked, .login-area > form .select-one__item.checked, .userform .select-one__item.checked {
  border-color: black;
  z-index: 1;
  cursor: auto;
}
form.default .select-one__image, .login-area > form .select-one__image, .userform .select-one__image {
  display: block;
  width: 100%;
  position: relative;
  z-index: -1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
form.default .select-one__input, .login-area > form .select-one__input, .userform .select-one__input {
  display: none;
}

#summary-content .table td {
  font-size: 0.875em;
}
#summary-content .table tr.parent td {
  border-bottom: 0 !important;
  padding: 10px 10px 0;
}
#summary-content .table tr.parent td:first-child {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table tr.parent td:first-child {
    width: 290px;
  }
}
#summary-content .table tr.single td:first-child {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table tr.single td:first-child {
    width: 290px;
  }
}
#summary-content .table tr.addons td {
  padding: 4px 10px;
}
#summary-content .table tfoot th, #summary-content .table tfoot td {
  display: table-cell;
  border-bottom: 0;
  font-weight: bold;
  font-size: 1em;
  font-weight: normal;
  font-weight: 600;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
}
@media only screen and (min-width: 992px) {
  #summary-content .table tfoot th, #summary-content .table tfoot td {
    display: table-cell;
    border-bottom: 1px solid #ddd;
  }
}
#summary-content .table-inline {
  width: 100%;
}
#summary-content .table-inline tr td {
  padding: 5px 0;
  border-bottom: 1px dotted #ebebeb;
  font-size: 1em;
}
#summary-content .table-inline tr td:last-child {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table-inline tr td:last-child {
    width: 118px;
  }
}
#summary-content .table-inline tr td:nth-child(4) {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table-inline tr td:nth-child(4) {
    width: 74px;
  }
}
#summary-content .table-inline tr td:nth-child(3) {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table-inline tr td:nth-child(3) {
    width: 138px;
  }
}
#summary-content .table-inline tr td:nth-child(2) {
  width: auto;
}
@media only screen and (min-width: 992px) {
  #summary-content .table-inline tr td:nth-child(2) {
    width: 107px;
  }
}
#summary-content .table-inline tr:last-child td {
  border-bottom: 0;
}

div.alert {
  font-size: 0.75em;
  font-weight: normal;
  font-weight: 400;
  font-family: "Soleil W01", Arial, Helvetica, sans-serif;
  background: #fafafa;
  line-height: 140%;
  padding: 15px;
  text-align: center;
}
div.alert.alert-info {
  background: #039BE5;
  color: #fff;
}
div.alert.alert-warning {
  background: #FBC02D;
  color: #fff;
}


/*# sourceMappingURL=dansplants.css.map */