/*
== 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("/static/images/mCSB_buttons.78c45cf1a4b0.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); }
	
	/* ---------------------------------------- */
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url("#default#VML");
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url("/static/images/layers.a6137456ed16.png");
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url("/static/images/layers-2x.4f0283c6ce28.png");
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url("/static/images/marker-icon.2273e3d8ad92.png");
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
.leaflet-routing-container, .leaflet-routing-error {
    width: 320px;
    background-color: white;
    padding-top: 4px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.leaflet-control-container .leaflet-routing-container-hide {
    width: 32px;
    height: 32px;
}

.leaflet-routing-container h2 {
    font-size: 14px;
}

.leaflet-routing-container h3 {
    font-size: 12px;
    font-weight: normal;
}

.leaflet-routing-collapsible .leaflet-routing-geocoders {
    margin-top: 20px;
}

.leaflet-routing-alt, .leaflet-routing-geocoders, .leaflet-routing-error {
    padding: 6px;
    margin-top: 2px;
    margin-bottom: 6px;
    border-bottom: 1px solid #ccc;
    max-height: 320px;
    overflow-y: auto;
    transition: all 0.2s ease;
}

.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-alt, 
.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-geocoders {
    display: none;
}

.leaflet-bar .leaflet-routing-alt:last-child {
    border-bottom: none;
}

.leaflet-routing-alt-minimized {
    color: #888;
    max-height: 64px;
    overflow: hidden;
    cursor: pointer;
}

.leaflet-routing-alt table {
    border-collapse: collapse;
}

.leaflet-routing-alt tr:hover {
    background-color: #eee;
    cursor: pointer;
}

.leaflet-routing-alt::-webkit-scrollbar {
    width: 8px;
}

.leaflet-routing-alt::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #eee;
}

.leaflet-routing-alt::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #888;
}

.leaflet-routing-icon {
    background-image: url("/static/images/leaflet.routing.icons.142d1f83d497.png");
    -webkit-background-size: 240px 20px;
    background-size: 240px 20px;
    background-repeat: no-repeat;
    margin: 0;
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
}

.leaflet-routing-icon-continue         { background-position: 0 0; }
.leaflet-routing-icon-sharp-right      { background-position: -20px 0; }
.leaflet-routing-icon-turn-right       { background-position: -40px 0; }
.leaflet-routing-icon-bear-right       { background-position: -60px 0; }
.leaflet-routing-icon-u-turn           { background-position: -80px 0; }
.leaflet-routing-icon-sharp-left       { background-position: -100px 0; }
.leaflet-routing-icon-turn-left        { background-position: -120px 0; }
.leaflet-routing-icon-bear-left        { background-position: -140px 0; }
.leaflet-routing-icon-depart           { background-position: -160px 0; }
.leaflet-routing-icon-enter-roundabout { background-position: -180px 0; }
.leaflet-routing-icon-arrive           { background-position: -200px 0; }
.leaflet-routing-icon-via              { background-position: -220px 0; }

.leaflet-routing-geocoders div {
    padding: 4px 0px 4px 0px;
}

.leaflet-routing-geocoders input {
    width: 303px;
    width: calc(100% - 4px);
    line-height: 1.67;
    border: 1px solid #ccc;
}

.leaflet-routing-geocoders button {
    font: bold 18px 'Lucida Console', Monaco, monospace;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    margin: 0;
    margin-right: 3px;
    float: right;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.leaflet-routing-add-waypoint:after {
    content: '+';
}

.leaflet-routing-reverse-waypoints:after {
    font-weight: normal;
    content: '\21C5';
}

.leaflet-routing-geocoders button:hover {
    background-color: #eee;
}

.leaflet-routing-geocoders input,.leaflet-routing-remove-waypoint,.leaflet-routing-geocoder {
    position: relative;
}

.leaflet-routing-geocoder-result {
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1000; /* Arbitrary, but try to be above "most" things. */
}

.leaflet-routing-geocoder-result table {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    background-color: white;
    cursor: pointer;
}

.leaflet-routing-geocoder-result-open {
    max-height: 800px;
}

.leaflet-routing-geocoder-selected, .leaflet-routing-geocoder-result tr:hover {
    background-color: #eee;
}

.leaflet-routing-geocoder-no-results {
    font-style: italic;
    color: #888;
}

.leaflet-routing-remove-waypoint {
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.leaflet-routing-remove-waypoint:after {
    position: absolute;
    display: block;
    width: 15px;
    height: 1px;
    z-index: 1;
    right: 1px;
    top: 4px;
    bottom: 0;
    margin: auto;
    padding: 2px;
    font-size: 18px;
    font-weight: bold;
    content: "\D7";
    text-align: center;
    cursor: pointer;
    color: #ccc;
    background: white;
    padding-bottom: 16px;
    margin-top: -16px;
    padding-right: 4px;
    line-height: 1;
}

.leaflet-routing-remove-waypoint:hover {
    color: black;
}

.leaflet-routing-instruction-distance {
    width: 48px;
}

.leaflet-routing-collapse-btn {
    position: absolute;
    top: 0;
    right: 6px;
    font-size: 24px;
    color: #ccc;
    font-weight: bold;
}

.leaflet-routing-collapse-btn:after {
    content: '\D7';
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn {
    position: relative;
    left: 4px;
    top: 4px;
    display: block;
    width: 26px;
    height: 23px;
    background-image: url("/static/images/routing-icon.29cd81d4b564.png");
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn:after {
    content: none;
}

.leaflet-top .leaflet-routing-container.leaflet-routing-container-hide {
    margin-top: 10px !important;
}
.leaflet-right .leaflet-routing-container.leaflet-routing-container-hide {
    margin-right: 10px !important;
}
.leaflet-bottom .leaflet-routing-container.leaflet-routing-container-hide {
    margin-bottom: 10px !important;
}
.leaflet-left .leaflet-routing-container.leaflet-routing-container-hide {
    margin-left: 10px !important;
}

@media only screen and (max-width: 640px) {
    .leaflet-routing-container {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: 100%;
    }
}
/*! nouislider - 10.1.0 - 2017-07-28 13:09:54 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-connect{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-origin{position:absolute;height:0;width:0}.noUi-handle{position:relative;z-index:1}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:top .3s,right .3s,bottom .3s,left .3s;transition:top .3s,right .3s,bottom .3s,left .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base,.noUi-handle{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connect{background:#3FB8AF;border-radius:4px;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);padding-left:25px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
@charset "UTF-8";
/* Fonts */
/* Lato fonts */
/* stylelint-disable */
/* Webfont: Lato-Black */
@font-face {
  font-family: 'LatoWebBlack';
  src: url("/static/fonts/Lato-Black.d2d9ddbd08ae.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Black.d2d9ddbd08ae.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Black.33d5f0d956f3.woff2") format("woff2"), url("/static/fonts/Lato-Black.f80bda6afd19.woff") format("woff"), url("/static/fonts/Lato-Black.a54bddbc1689.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* Webfont: Lato-Bold */
@font-face {
  font-family: 'LatoWebBold';
  src: url("/static/fonts/Lato-Bold.a2fb219c999a.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Bold.a2fb219c999a.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Bold.cccb89748581.woff2") format("woff2"), url("/static/fonts/Lato-Bold.d878b6c29b10.woff") format("woff"), url("/static/fonts/Lato-Bold.5b1b8b856d7a.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* Webfont: Lato-Light */
@font-face {
  font-family: 'LatoWebLight';
  src: url("/static/fonts/Lato-Light.4afee4c98483.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Light.4afee4c98483.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Light.7244318390cc.woff2") format("woff2"), url("/static/fonts/Lato-Light.90301aa07d78.woff") format("woff"), url("/static/fonts/Lato-Light.cf44fd55d704.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* Webfont: Lato-Medium */
@font-face {
  font-family: 'LatoWebMedium';
  src: url("/static/fonts/Lato-Medium.cecc32d267ee.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Medium.cecc32d267ee.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Medium.0996d39c4cf5.woff2") format("woff2"), url("/static/fonts/Lato-Medium.acbd6ecc97c8.woff") format("woff"), url("/static/fonts/Lato-Medium.06e1c8dbe641.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* Webfont: Lato-Regular */
@font-face {
  font-family: 'LatoWeb';
  src: url("/static/fonts/Lato-Regular.8ab18d934cfa.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Regular.8ab18d934cfa.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Regular.bd03a2cc277b.woff2") format("woff2"), url("/static/fonts/Lato-Regular.27bd77b9162d.woff") format("woff"), url("/static/fonts/Lato-Regular.6d4e78225df0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* Webfont: Lato-Semibold */
@font-face {
  font-family: 'LatoWebSemibold';
  src: url("/static/fonts/Lato-Semibold.8bb939ef8812.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/Lato-Semibold.8bb939ef8812.eot?#iefix") format("embedded-opentype"), url("/static/fonts/Lato-Semibold.8b4f872c5de1.woff2") format("woff2"), url("/static/fonts/Lato-Semibold.c2b50f4a7d90.woff") format("woff"), url("/static/fonts/Lato-Semibold.3b0cd7254b3b.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

/* stylelint-enable */
/* Default */
/* stylelint-disable */
*,
body {
  margin: 0;
  padding: 0; }

input,
input:before,
input:after {
  -webkit-user-select: initial;
  -moz-user-select: initial;
   -ms-user-select: initial;
       user-select: initial; }

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  min-width: 1440px;
  overflow-x: hidden;
  /* stylelint-disable */
  /* stylelint-enable */ }
  @media only screen and (min-width: 813px) and (max-width: 990px) {
    body {
      zoom: 0.6 !important;
      overflow-x: auto; } }
  @media only screen and (min-width: 991px) and (max-width: 1279px) {
    body {
      zoom: 0.7 !important;
      overflow-x: auto; } }
  @media only screen and (max-width: 812px) {
    body {
      display: block;
      min-width: 100%;
      overflow-x: auto; } }
  @media only screen and (min-width: 1280px) and (max-width: 1439px) {
    body {
      zoom: 0.9 !important;
      overflow-x: hidden; } }

input {
  -webkit-appearance: none; }

.main {
  width: 100%;
  margin-bottom: auto; }

.fancybox-slide > * {
  padding: 0; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

h1,
h2,
.complex-dynamic__tabs-title.active,
h3 {
  line-height: 1.2;
  font-weight: 700; }


h2,
.complex-dynamic__tabs-title.active {
  font-size: 30px;
  color: #020202; }
  h2.big-title, .big-title.complex-dynamic__tabs-title.active {
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      h2.big-title, .big-title.complex-dynamic__tabs-title.active {
        font-size: 25px; } }

.clearfix:before, .press-list__container:before, .clearfix:after, .press-list__container:after {
  content: " ";
  display: table; }

.clearfix:after, .press-list__container:after {
  clear: both; }

.mt-1 {
  margin-top: 1rem; }

/* Libs */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [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; }

.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .selectric .button, .selectric .button__rounded, .selectric .popup__submit, .selectric .mortgage-manager__request-button, .selectric .partners-form__submit, .selectric .realty-filter__action-button, .selectric .contacts-info__button, .selectric .button__military, .selectric .button-big-rounded {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #F8f8f8;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial; }
    .selectric .button:after, .selectric .button__rounded:after, .selectric .popup__submit:after, .selectric .mortgage-manager__request-button:after, .selectric .partners-form__submit:after, .selectric .realty-filter__action-button:after, .selectric .contacts-info__button:after, .selectric .button__military:after, .selectric .button-big-rounded:after {
      content: " ";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: #BBB;
      border-bottom: none; }

.selectric-focus .selectric {
  border-color: #aaaaaa; }

.selectric-hover .selectric {
  border-color: #c4c4c4; }
  .selectric-hover .selectric .button, .selectric-hover .selectric .button__rounded, .selectric-hover .selectric .popup__submit, .selectric-hover .selectric .mortgage-manager__request-button, .selectric-hover .selectric .partners-form__submit, .selectric-hover .selectric .realty-filter__action-button, .selectric-hover .selectric .contacts-info__button, .selectric-hover .selectric .button__military, .selectric-hover .selectric .button-big-rounded {
    color: #a2a2a2; }
    .selectric-hover .selectric .button:after, .selectric-hover .selectric .button__rounded:after, .selectric-hover .selectric .popup__submit:after, .selectric-hover .selectric .mortgage-manager__request-button:after, .selectric-hover .selectric .partners-form__submit:after, .selectric-hover .selectric .realty-filter__action-button:after, .selectric-hover .selectric .contacts-info__button:after, .selectric-hover .selectric .button__military:after, .selectric-hover .selectric .button-big-rounded:after {
      border-top-color: #a2a2a2; }

.selectric-open {
  z-index: 9999; }
  .selectric-open .selectric {
    border-color: #c4c4c4; }
  .selectric-open .selectric-items {
    display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectric-hide-select select {
    position: absolute;
    left: -100%; }
  .selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10; }
    .selectric-hide-select.selectric-is-native select {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      border: none;
      z-index: 1;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px -6px;
          box-shadow: 0 0 10px -6px; }
  .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto; }
  .selectric-above .selectric-items {
    top: auto;
    bottom: 100%; }
  .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px; }
  .selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer; }
    .selectric-items li.selected {
      background: #E0E0E0;
      color: #444; }
    .selectric-items li.highlighted {
      background: #D0D0D0;
      color: #444; }
    .selectric-items li:hover {
      background: #D5D5D5;
      color: #444; }
  .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    color: #444; }
  .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1; }
  .selectric-items .selectric-group li {
    padding-left: 25px; }

/* Animations */
@-webkit-keyframes callAnimation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }
@keyframes callAnimation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

.scale-line:after, .scale-line-reverse:after, .link:after, .link-color:after, .mortgage-manager__email:after, .commercial-info__phone:after, .contacts-office__phone-number:after, .contacts-office__email-link:after, .common-link:after, .partners-callback__mail:after {
  content: '';
  display: block;
  height: 1px;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: black;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.scale-line:hover:after, .scale-line-reverse:hover:after, .link:hover:after, .link-color:hover:after, .mortgage-manager__email:hover:after, .commercial-info__phone:hover:after, .contacts-office__phone-number:hover:after, .contacts-office__email-link:hover:after, .common-link:hover:after, .partners-callback__mail:hover:after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0); }

.scale-line--white:after {
  background-color: white; }

.scale-line-reverse:after, .link:after, .link-color:after, .mortgage-manager__email:after, .commercial-info__phone:after, .contacts-office__phone-number:after, .contacts-office__email-link:after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0); }

.scale-line-reverse:hover:after, .link:hover:after, .link-color:hover:after, .mortgage-manager__email:hover:after, .commercial-info__phone:hover:after, .contacts-office__phone-number:hover:after, .contacts-office__email-link:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); }

/* UI */
.container, .complex-list-finished__body, .flat-types__wrap, .company-layout__body, .company-chess, .history-layout, .company-history__container, .partners-info__container {
  width: 1440px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 812px) {
    .container, .complex-list-finished__body, .flat-types__wrap, .company-layout__body, .company-chess, .history-layout, .company-history__container, .partners-info__container {
      width: 100%;
      padding: 0 16px; } }

.mfp-gallery .mfp-image-holder .mfp-figure {
  pointer-events: none; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  pointer-events: auto; }

.button, .button__rounded, .popup__submit, .mortgage-manager__request-button, .partners-form__submit, .realty-filter__action-button, .contacts-info__button, .button__military, .button-big-rounded {
  position: relative;
  padding: 11px 23px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  color: #fff;
  font-weight: 500;
  background: #09A09B;
  -webkit-transition: background .3s ease, opacity .3s ease;
  transition: background .3s ease, opacity .3s ease; }
  .button:focus, .button__rounded:focus, .popup__submit:focus, .mortgage-manager__request-button:focus, .partners-form__submit:focus, .realty-filter__action-button:focus, .contacts-info__button:focus, .button__military:focus, .button-big-rounded:focus {
    opacity: .7; }
  .button:active, .button__rounded:active, .popup__submit:active, .mortgage-manager__request-button:active, .partners-form__submit:active, .realty-filter__action-button:active, .contacts-info__button:active, .button__military:active, .button-big-rounded:active {
    opacity: .5; }
    .button:active:focus, .button__rounded:active:focus, .popup__submit:active:focus, .mortgage-manager__request-button:active:focus, .partners-form__submit:active:focus, .realty-filter__action-button:active:focus, .contacts-info__button:active:focus, .button__military:active:focus, .button-big-rounded:active:focus {
      opacity: 1; }
  .button__rounded, .popup__submit, .mortgage-manager__request-button, .partners-form__submit, .realty-filter__action-button, .contacts-info__button {
    padding: 11px 35px;
    min-height: 43px;
    font-size: 16px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    will-change: box-shadow;
    -webkit-transition: opacity .3s ease, -webkit-box-shadow .3s ease;
    transition: opacity .3s ease, -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease, opacity .3s ease;
    transition: box-shadow .3s ease, opacity .3s ease, -webkit-box-shadow .3s ease;
    background: #09A09B;
    background: #09A09B !important;
    outline: none;
    text-decoration: none;
    font-weight: bold; }
    .button__rounded.abit, .abit.popup__submit, .abit.mortgage-manager__request-button, .abit.partners-form__submit, .abit.realty-filter__action-button, .abit.contacts-info__button {
      border-radius: 5px !important; }
    .button__rounded.white, .white.popup__submit, .white.mortgage-manager__request-button, .white.partners-form__submit, .white.realty-filter__action-button, .white.contacts-info__button {
      padding: 11px 25px;
      background: #fff;
      color: #000;
      -webkit-box-shadow: 0 3px 12px rgba(0, 166, 157, 0.25);
              box-shadow: 0 3px 12px rgba(0, 166, 157, 0.25); }
      .button__rounded.white:hover, .white.popup__submit:hover, .white.mortgage-manager__request-button:hover, .white.partners-form__submit:hover, .white.realty-filter__action-button:hover, .white.contacts-info__button:hover {
        background: #fff;
        -webkit-box-shadow: 0 3px 30px rgba(0, 166, 157, 0.25);
                box-shadow: 0 3px 30px rgba(0, 166, 157, 0.25); }
    .button__rounded.dark-gray, .dark-gray.popup__submit, .dark-gray.mortgage-manager__request-button, .dark-gray.partners-form__submit, .dark-gray.realty-filter__action-button, .dark-gray.contacts-info__button {
      background: #4c4c4c; }
    .button__rounded:hover, .popup__submit:hover, .mortgage-manager__request-button:hover, .partners-form__submit:hover, .realty-filter__action-button:hover, .contacts-info__button:hover {
      background: #09A09B;
      -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
              box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45); }
  .button__military {
    display: block;
    min-width: 322px;
    height: 78px;
    background: none;
    border-radius: 6px;
    line-height: 55px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.11);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.11);
    font-size: 18px;
    overflow: hidden; }
    .button__military:hover, .button__military:active {
      background: none; }
    .button__military:hover:after {
      -webkit-transform: translate3d(-50%, -100px, 0);
              transform: translate3d(-50%, -100px, 0); }
    .button__military:focus {
      -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, 0.11);
              box-shadow: 0 4px 32px rgba(0, 0, 0, 0.11); }
    .button__military span {
      display: inline-block;
      position: relative;
      z-index: 2; }
    .button__military:after, .button__military:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-position: center; }
    .button__military:before {
      background-color: #0d6462;
      z-index: 0; }
    .button__military:after {
      top: 50%;
      left: 50%;
      width: 343px;
      height: 445px;
      -webkit-transform: translate3d(-50%, -40px, 0);
              transform: translate3d(-50%, -40px, 0);
      z-index: 1;
      background-image: url("/static/images/military-bg.8ba21c699979.png");
      background-position: center;
      -webkit-transition: -webkit-transform .5s ease;
      transition: -webkit-transform .5s ease;
      transition: transform .5s ease;
      transition: transform .5s ease, -webkit-transform .5s ease;
      will-change: transform;
      background-size: 100%;
      opacity: .5; }
  .button-big-rounded {
    font-size: 16px;
    padding: 17px 40px;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
    border-radius: 50px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    background: #09A09B;
    outline: none; }
    .button-big-rounded:focus {
      outline: none; }
    .button-big-rounded:hover {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0))), #09A09B;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #09A09B;
      -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
              box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3); }
  .button__mobile-flex {
    display: none;
    width: .1px;
    height: .1px;
    text-align: center;
    color: #fff;
    visibility: hidden;
    font-size: 16px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease; }
    @media only screen and (max-width: 812px) {
      .button__mobile-flex {
        display: block;
        height: 50px;
        width: 100%;
        visibility: visible; } }
    .button__mobile-flex.green {
      background: #09A09B; }
    .button__mobile-flex:hover, .button__mobile-flex:active {
      opacity: .7; }

.button-default, .button__mobile-flex, .button-default__white-rounded, .button-more, .circle-button, .intro-slider__mobile-arrow, .complex-media__tab, .realty-list__sort-button, .realty-list__mode-button, .realty-filter-applied__item {
  display: block;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  outline: none; }
  .button-default__white-rounded {
    padding: 13px 20px;
    -webkit-transition: background-color .3s ease, color .3s ease, opacity .3s ease, -webkit-box-shadow .3s ease;
    transition: background-color .3s ease, color .3s ease, opacity .3s ease, -webkit-box-shadow .3s ease;
    transition: background-color .3s ease, box-shadow .3s ease, color .3s ease, opacity .3s ease;
    transition: background-color .3s ease, box-shadow .3s ease, color .3s ease, opacity .3s ease, -webkit-box-shadow .3s ease;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0);
    border-radius: 60px;
    font-size: 14px;
    color: #09A09B; }
    .button-default__white-rounded:focus {
      opacity: .7; }
    .button-default__white-rounded.active {
      background-color: #fff;
      -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
              box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
      color: #000;
      pointer-events: none; }
      .button-default__white-rounded.active:focus {
        opacity: 1; }

.button-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #18a29b;
  padding: 15px;
  color: #fff;
  font-size: 20px;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease; }
  .button-more:hover {
    background-color: #09A09B; }
    .button-more:hover:before {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); }
  .button-more:before {
    content: ''; }

.circle-button {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #545454;
  line-height: 48px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background-color: #fff;
  color: #545454;
  -webkit-transition: background-color .3s ease, color .2s ease;
  transition: background-color .3s ease, color .2s ease; }
  .circle-button:hover {
    background-color: rgba(0, 255, 239, 0.15); }
  .circle-button.active {
    background-color: #09A09B;
    color: #fff; }
    .circle-button.active:hover {
      background-color: #09A09B; }
  .circle-button.disabled {
    opacity: .3;
    background-color: #fff;
    pointer-events: none; }
    .circle-button.disabled:focus {
      opacity: .3; }
  .circle-button:focus {
    opacity: .7; }

.link, .link-color, .mortgage-manager__email, .commercial-info__phone, .contacts-office__phone-number, .contacts-office__email-link {
  -webkit-transition: color .2s ease;
  transition: color .2s ease; }
  .link:after, .link-color:after, .mortgage-manager__email:after, .commercial-info__phone:after, .contacts-office__phone-number:after, .contacts-office__email-link:after {
    height: .1em; }
  .link-color, .mortgage-manager__email, .commercial-info__phone, .contacts-office__phone-number {
    display: inline-block;
    text-decoration: none; }
    .link-color:hover, .mortgage-manager__email:hover, .commercial-info__phone:hover, .contacts-office__phone-number:hover, .link-color:focus, .mortgage-manager__email:focus, .commercial-info__phone:focus, .contacts-office__phone-number:focus {
      color: #18a29b; }
    .link-color:after, .mortgage-manager__email:after, .commercial-info__phone:after, .contacts-office__phone-number:after {
      background-color: #18a29b; }

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center; }
  .nav-item {
    padding: .5rem 1rem;
    margin: 0;
    border-radius: 0;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    border-right: 1px solid #e1e1e1;
    cursor: pointer; }
    .nav-item:first-child {
      border-left: 1px solid #e1e1e1; }
    .nav-item.active {
      background-color: #0baca2;
      color: white; }
    @media only screen and (max-width: 812px) {
      .nav-item {
        border-left: 1px solid #e1e1e1; } }

.title-strong, .title-strong__white {
  font-size: 40px;
  color: #000;
  line-height: 1.15;
  font-weight: bold; }
  @media only screen and (max-width: 812px) {
    .title-strong, .title-strong__white {
      font-size: 24px; } }
  .title-strong__white {
    color: #fff; }

.text-small, .text-small__white {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.7;
  color: #000; }
  @media only screen and (max-width: 812px) {
    .text-small, .text-small__white {
      font-size: 12px; } }
  .text-small p, .text-small__white p {
    margin-bottom: 18px; }
    .text-small p:last-of-type, .text-small__white p:last-of-type {
      margin-bottom: 0; }
  .text-small__white {
    color: #fff; }

.icon-favorite {
  position: relative;
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  border: 1px solid #09A09B;
  background-color: transparent;
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease; }
  .icon-favorite__count {
    position: absolute;
    top: -3px;
    right: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 16px;
    height: 16px;
    background-color: #545454;
    color: #fff;
    border-radius: 100%;
    border: 1px solid #fff;
    font-size: 8px;
    opacity: 0;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease; }
  .icon-favorite:after, .icon-favorite:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16.8px;
    height: 16.8px;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, calc(-50% + 2px));
            transform: translate(-50%, calc(-50% + 2px));
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease; }
  .icon-favorite:after {
    z-index: 0;
    background-image: url("/static/images/icon-heart-green.72a3da18e289.svg"); }
  .icon-favorite:before {
    z-index: 1;
    opacity: 0;
    background-image: url("/static/images/icon-heart-white.0a5a1f78bcc7.svg"); }
  .icon-favorite.active {
    background-color: #09A09B; }
    .icon-favorite.active:before {
      opacity: 1; }
    .icon-favorite.active:after {
      opacity: 0; }
    .icon-favorite.active .icon-favorite__count {
      opacity: 1; }

.icon-heart {
  position: relative;
  display: block;
  width: 20px;
  height: 19px;
  cursor: pointer;
  border: none;
  background: none; }
  .icon-heart.medium {
    width: 26px;
    height: 21px;
    outline: none; }
    .icon-heart.medium:before, .icon-heart.medium:after {
      background-size: 26px 21px; }
  .icon-heart:before, .icon-heart:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 16px;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease; }
  .icon-heart:before {
    opacity: 0;
    background-image: url("/static/images/icon-heart-green.72a3da18e289.svg"); }
  .icon-heart:after {
    background-image: url("/static/images/icon-heart-green-fill.c7270b882694.svg"); }
  .icon-heart.active:before {
    opacity: 1; }
  .icon-heart.active:after {
    opacity: 0; }
  .icon-heart.active:focus:before {
    opacity: 1; }
  .icon-heart:focus:before {
    opacity: .1; }

.icon-update, .button-more:before {
  display: block;
  width: 30px;
  height: 30px;
  background: url("/static/images/update-wheel.fa7c8efbe4b4.svg") center no-repeat;
  background-size: cover;
  margin-right: 12px;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease; }

a.common-link {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  color: #09A09B;
  font-size: 20px;
  cursor: pointer; }
  a.common-link:after {
    margin-top: -2px;
    height: 2px;
    background-color: #09A09B; }

.slider-arrow {
  width: 65px;
  height: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  -webkit-transition: -webkit-transform .25s ease;
  transition: -webkit-transform .25s ease;
  transition: transform .25s ease;
  transition: transform .25s ease, -webkit-transform .25s ease;
  opacity: 0;
  pointer-events: none;
  outline: none;
  border: none;
  background-color: transparent;
  z-index: 2; }
  .slider-arrow.slick-arrow {
    pointer-events: all;
    opacity: 1; }
  .slider-arrow.left-arrow {
    display: none;
    opacity: 0;
    z-index: -999;
    background-image: url("/static/images/arrow-small-left-green.ef37e21e02c2.svg"); }
  .slider-arrow.right-arrow {
    background-image: url("/static/images/arrow-small-right-green.b84317ca82c9.svg"); }
    @media only screen and (max-width: 812px) {
      .slider-arrow.right-arrow {
        background-size: 12px auto;
        background-position: right center;
        z-index: 4; } }

.intro-slider {
  width: 100%;
  position: relative; }
  .intro-slider .slider-controller {
    position: absolute;
    bottom: 47px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    z-index: 2; }
    @media only screen and (max-width: 812px) {
      .intro-slider .slider-controller__arrow {
        display: none;
        width: .1px;
        height: .1px;
        visibility: hidden;
        pointer-events: none; } }
    @media only screen and (max-width: 812px) {
      .intro-slider .slider-controller {
        bottom: 17px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .intro-slider .legend-big {
    opacity: 0; }
  .intro-slider .complex-list-slider__content {
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease; }
  .intro-slider__slider {
    width: 100%; }
  .intro-slider__slide {
    position: relative;
    display: block;
    height: 74vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    outline: none; }
    @media only screen and (max-width: 812px) {
      .intro-slider__slide {
        height: 224px; } }
    .intro-slider__slide:nth-child(1) {
      opacity: 1; }
    .intro-slider__slide.left-slide .complex-list-slider__content-item {
      -webkit-transform: translate3d(-200px, 0, 0);
              transform: translate3d(-200px, 0, 0); }
    .intro-slider__slide.right-slide .complex-list-slider__content-item {
      -webkit-transform: translate3d(200px, 0, 0);
              transform: translate3d(200px, 0, 0); }
    .intro-slider__slide.slick-active .complex-list-slider__content {
      opacity: 1;
      -webkit-transition: opacity .4s ease .2s;
      transition: opacity .4s ease .2s; }
    .intro-slider__slide.parallax.left-slide .complex-list-slider__content-item, .intro-slider__slide.parallax.right-slide .complex-list-slider__content-item {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: -webkit-transform 1s ease;
      transition: -webkit-transform 1s ease;
      transition: transform 1s ease;
      transition: transform 1s ease, -webkit-transform 1s ease; }
    .intro-slider__slide.parallax.left-slide .complex-list-slider__content-item:nth-child(1) {
      -webkit-transition-delay: .1s;
              transition-delay: .1s; }
    .intro-slider__slide.parallax.left-slide .complex-list-slider__content-item:nth-child(2) {
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
    .intro-slider__slide.parallax.right-slide .complex-list-slider__content-item:nth-child(1) {
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
    .intro-slider__slide.parallax.right-slide .complex-list-slider__content-item:nth-child(2) {
      -webkit-transition-delay: .1s;
              transition-delay: .1s; }
    .intro-slider__slide.b-lazy {
      opacity: 0;
      -webkit-transition: opacity .5s ease;
      transition: opacity .5s ease; }
    .intro-slider__slide.b-loaded {
      opacity: 1; }
    .intro-slider__slide:before, .intro-slider__slide:after {
      content: '';
      display: block; }
    @media only screen and (max-width: 812px) {
      .intro-slider__slide:after {
        display: none; } }
  .intro-slider__bottom-gradient, .intro-slider__slide:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 164px;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    opacity: .8;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    z-index: 0; }
    @media only screen and (max-width: 812px) {
      .intro-slider__bottom-gradient, .intro-slider__slide:before {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
        height: 139px; } }
  .intro-slider__aside-gradient, .intro-slider__slide:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 541px;
    height: 307px;
    background: linear-gradient(322.7deg, #000 24.65%, transparent 61.57%);
    -webkit-transform: translate(186px, 0);
            transform: translate(186px, 0);
    pointer-events: none;
    opacity: .6;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    z-index: 0; }
  .intro-slider__mobile-arrows {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 0 18px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 29px; }
    @media only screen and (max-width: 812px) {
      .intro-slider__mobile-arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .intro-slider__mobile-arrow {
    width: 14px;
    height: 29px;
    outline: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto; }
    .intro-slider__mobile-arrow.prev-arrow {
      background-image: url("/static/images/m-arrow-left-white.fded79a72332.svg"); }
    .intro-slider__mobile-arrow.next-arrow {
      background-image: url("/static/images/m-arrow-right-white.a12464d8feeb.svg"); }

.legend-big {
  display: block;
  position: relative;
  padding: 31px 28px;
  height: 201px;
  min-width: 267px;
  background-color: #09A09B;
  color: #fff;
  text-decoration: none;
  outline: none; }
  .legend-big:after {
    content: '';
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 201px 78px 0 0;
    border-color: #09A09B transparent transparent transparent;
    pointer-events: all; }
  .legend-big__subtitle {
    font-weight: 300;
    font-size: 18px;
    pointer-events: all; }
  .legend-big__main-title {
    margin-top: 4px;
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 50px;
    pointer-events: all;
    color: #fff !important; }

.legend-big-transparent {
  display: block;
  position: relative;
  padding: 31px 28px;
  height: 201px;
  min-width: 267px;
  color: #fff;
  text-decoration: none;
  outline: none; }
  .legend-big-transparent__subtitle {
    font-weight: 300;
    font-size: 18px;
    pointer-events: all; }
  .legend-big-transparent__main-title {
    margin-top: 4px;
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 50px;
    pointer-events: all;
    color: #fff !important; }

.common-slider {
  position: relative;
  width: 100%;
  height: 100%; }
  .common-slider__slider {
    width: 100%;
    height: 100%; }
    .common-slider__slider .slick-list,
    .common-slider__slider .slick-track {
      height: 100%; }
  .common-slider__slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    outline: none; }

.slider-controller {
  width: 100%;
  max-width: 1440px; }
  .slider-controller.black-btn .slider-controller__button:after {
    background-color: #000; }
  .slider-controller.black-btn .slider-controller__button.active:after {
    background-color: #09A09B; }
  .slider-controller.gray-btn .slider-controller__button:after {
    background-color: #a1a1a1; }
  .slider-controller.white-btn .slider-controller__button:hover:after {
    background-color: #fff; }
  .slider-controller.white-btn .slider-controller__button:after {
    background-color: #fff; }
  .slider-controller.white-btn .slider-controller__arrow.prev-arrow {
    background-image: url("/static/images/arrow-small-left-white.1f99db97ecbd.svg"); }
  .slider-controller.white-btn .slider-controller__arrow.next-arrow {
    background-image: url("/static/images/arrow-small-right-white.5480234a8661.svg"); }
  .slider-controller__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .slider-controller__arrow {
    min-width: 31px;
    height: 31px;
    background-color: transparent;
    border: none;
    outline: none;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
    @media only screen and (max-width: 812px) {
      .slider-controller__arrow {
        width: 21px;
        height: 21px; } }
    .slider-controller__arrow.prev-arrow {
      background-image: url("/static/images/arrow-small-left-green.ef37e21e02c2.svg");
      padding-right: 33px; }
      @media only screen and (max-width: 812px) {
        .slider-controller__arrow.prev-arrow {
          padding-right: 0; } }
      .slider-controller__arrow.prev-arrow:focus, .slider-controller__arrow.prev-arrow:hover {
        -webkit-transform: translate3d(-3px, 0, 0);
                transform: translate3d(-3px, 0, 0); }
    .slider-controller__arrow.next-arrow {
      background-image: url("/static/images/arrow-small-right-green.b84317ca82c9.svg");
      padding-left: 33px; }
      @media only screen and (max-width: 812px) {
        .slider-controller__arrow.next-arrow {
          padding-left: 0; } }
      .slider-controller__arrow.next-arrow:focus, .slider-controller__arrow.next-arrow:hover {
        -webkit-transform: translate3d(3px, 0, 0);
                transform: translate3d(3px, 0, 0); }
  .slider-controller__button {
    position: relative;
    padding: 0 9px;
    height: 21px;
    width: 2px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
    @media only screen and (max-width: 812px) {
      .slider-controller__button {
        height: 14px;
        padding: 0 5px;
        width: 1px; } }
    .slider-controller__button.active {
      -webkit-transform: scaleY(1.52);
              transform: scaleY(1.52);
      pointer-events: none; }
      .slider-controller__button.active:after {
        background-color: #09A09B; }
      .slider-controller__button.active:hover {
        -webkit-transform: scaleY(1.52);
                transform: scaleY(1.52); }
    .slider-controller__button:hover {
      -webkit-transform: scaleY(1.2);
              transform: scaleY(1.2); }
    .slider-controller__button:after {
      content: '';
      display: block;
      width: 2px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      height: 100%;
      background-color: #fff;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      -webkit-transition: background-color .4s ease;
      transition: background-color .4s ease; }

.big-slider-btn {
  width: 61px;
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #09A09B;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  border-bottom: 1px solid #fff; }
  .big-slider-btn.slick-arrow {
    opacity: 1;
    pointer-events: all; }
  .big-slider-btn--prev {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .big-slider-btn:hover:after {
    -webkit-transform: translate3d(3px, 0, 0);
            transform: translate3d(3px, 0, 0); }
  .big-slider-btn:after {
    content: '';
    display: block;
    width: 10px;
    height: 43px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-image: url("/static/images/arrow-right-white.e4e0071b0462.svg");
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }

.tab, .tab-bordered, .partners-tabs__tab, .partners-forms__tab {
  cursor: pointer; }
  .tab-bordered, .partners-tabs__tab, .partners-forms__tab {
    position: relative;
    top: 1px;
    border: 1px solid transparent;
    border-bottom: none;
    padding: 15px 29px;
    border-radius: 7px 7px 0 0;
    margin-right: 2px;
    color: #18a29b;
    -webkit-transition: color .2s ease, border-color .2s ease, background-color .2s ease;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease; }
    @media only screen and (max-width: 812px) {
      .tab-bordered, .partners-tabs__tab, .partners-forms__tab {
        padding: 13px 23px 0; } }
    .tab-bordered:last-child, .partners-tabs__tab:last-child, .partners-forms__tab:last-child {
      margin-right: 0; }
    .tab-bordered.active, .active.partners-tabs__tab, .active.partners-forms__tab, .tab-bordered:hover, .partners-tabs__tab:hover, .partners-forms__tab:hover {
      border-color: #dadada;
      background-color: #fff;
      color: #000; }
  .tab-container, .partners-tabs, .partners-forms__tabs-list {
    border-bottom: 1px solid #dadada; }
  .tab-content, .partners__container {
    display: none; }
    .tab-content.active, .active.partners__container {
      display: block; }

.popup {
  position: fixed;
  top: 0;
  left: -200%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: left .01s ease .4s;
  transition: left .01s ease .4s; }
  .popup:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease; }
  .active.popup {
    left: 0;
    -webkit-transition: left .01s ease;
    transition: left .01s ease; }
    .active.popup:before {
      background-color: rgba(0, 0, 0, 0.7); }

.banner {
  position: fixed;
  z-index: 99999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px;
  background-color: white;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 50px;
  border-radius: 8px;
  max-width: 400px;
  -webkit-transition: left .01s ease .4s;
  transition: left .01s ease .4s;
  display: none; }
  .banner.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .banner-center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .banner-right {
    right: 16px;
    margin-right: 2px; }
  .banner-left {
    left: 16px;
    margin-left: 2px; }
  .banner-top {
    top: 16px;
    margin-top: 2px; }
  .banner-bottom {
    bottom: 16px;
    margin-bottom: 2px; }
  .banner-image {
    max-width: 360px; }
  .banner__close {
    position: relative;
    float: right;
    width: 29px;
    height: 29px;
    cursor: pointer; }
    .banner__close:hover:before {
      -webkit-transform: translate(-50%) rotate(135deg);
              transform: translate(-50%) rotate(135deg); }
    .banner__close:hover:after {
      -webkit-transform: translate(-50%) rotate(225deg);
              transform: translate(-50%) rotate(225deg); }
    .banner__close:before, .banner__close:after {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      top: 0;
      width: 1px;
      height: 27px;
      background-color: #000;
      -webkit-transform: translate(-50%) rotate(45deg);
              transform: translate(-50%) rotate(45deg);
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    .banner__close:after {
      -webkit-transform: translate(-50%) rotate(135deg);
              transform: translate(-50%) rotate(135deg); }

.ui-slider {
  width: 100%; }
  .ui-slider .noUi-tooltip {
    font-weight: 500;
    color: #000;
    font-size: 14px;
    bottom: -27px;
    background: none;
    border: none; }
  .ui-slider.noUi-horizontal {
    height: 1px; }
  .ui-slider.noUi-target {
    background: #a6a6a6;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .ui-slider .noUi-connect {
    background: #a6a6a6;
    border-radius: 0;
    height: 6px;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .ui-slider .noUi-handle, .ui-slider .noUi-handle:before {
    top: -2px;
    left: -11px;
    border-radius: 100%;
    background: #020202;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 10px;
    height: 10px;
    outline: none;
    cursor: pointer; }
    .ui-slider .noUi-handle.noUi-handle-lower, .ui-slider .noUi-handle-lower.noUi-handle:before, .ui-slider .noUi-handle.noUi-handle-upper, .ui-slider .noUi-handle-upper.noUi-handle:before {
      margin-left: 6px; }
      .ui-slider .noUi-handle-lower.noUi-handle:before, .ui-slider .noUi-handle-upper.noUi-handle:before {
        left: -8px; }
    .ui-slider .noUi-handle:before {
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    .ui-slider .noUi-handle:after {
      opacity: 0; }
    .ui-slider .noUi-handle:before {
      content: '';
      display: block;
      top: -1px;
      left: -1px;
      z-index: 4; }
    .ui-slider .noUi-handle:hover:before {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }

/* Helpers */
.p-r {
  position: relative; }

.p-a {
  position: absolute; }

.p-f {
  position: fixed; }

.d-n {
  display: none; }

.d-i {
  display: inline; }

.d-ib {
  display: inline-block; }

.d-b {
  display: block; }

.d-t {
  display: table; }

.d-tc {
  display: table-cell; }

.d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.d-if {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.fd-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.fd-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.fd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.fw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.fw-now {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

.fw-wr {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse; }

.jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around; }

.ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ai-b {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

.ai-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.as-a {
  -ms-flex-item-align: auto;
      align-self: auto; }

.as-fs {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.as-fe {
  -ms-flex-item-align: end;
      align-self: flex-end; }

.as-c {
  -ms-flex-item-align: center;
      align-self: center; }

.as-b {
  -ms-flex-item-align: baseline;
      align-self: baseline; }

.as-s {
  -ms-flex-item-align: stretch;
      align-self: stretch; }

.fg-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }

.fsh-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1; }

.fsh-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.mt-0 {
  margin-top: 0px; }

.pt-0 {
  padding-top: 0px; }

.mb-0 {
  margin-bottom: 0px; }

.pb-0 {
  padding-bottom: 0px; }

.ml-0 {
  margin-left: 0px; }

.pl-0 {
  padding-left: 0px; }

.mr-0 {
  margin-right: 0px; }

.pr-0 {
  padding-right: 0px; }

.mx-0 {
  margin: 0 0px 0 0px; }

.px-0 {
  padding: 0 0px 0 0px; }

.my-0 {
  margin: 0px 0 0px 0; }

.py-0 {
  padding: 0 0px 0 0px; }

.mt-8 {
  margin-top: 8px; }

.pt-8 {
  padding-top: 8px; }

.mb-8 {
  margin-bottom: 8px; }

.pb-8 {
  padding-bottom: 8px; }

.ml-8 {
  margin-left: 8px; }

.pl-8 {
  padding-left: 8px; }

.mr-8 {
  margin-right: 8px; }

.pr-8 {
  padding-right: 8px; }

.mx-8 {
  margin: 0 8px 0 8px; }

.px-8 {
  padding: 0 8px 0 8px; }

.my-8 {
  margin: 8px 0 8px 0; }

.py-8 {
  padding: 0 8px 0 8px; }

.mt-12 {
  margin-top: 12px; }

.pt-12 {
  padding-top: 12px; }

.mb-12 {
  margin-bottom: 12px; }

.pb-12 {
  padding-bottom: 12px; }

.ml-12 {
  margin-left: 12px; }

.pl-12 {
  padding-left: 12px; }

.mr-12 {
  margin-right: 12px; }

.pr-12 {
  padding-right: 12px; }

.mx-12 {
  margin: 0 12px 0 12px; }

.px-12 {
  padding: 0 12px 0 12px; }

.my-12 {
  margin: 12px 0 12px 0; }

.py-12 {
  padding: 0 12px 0 12px; }

.mt-16 {
  margin-top: 16px; }

.pt-16 {
  padding-top: 16px; }

.mb-16 {
  margin-bottom: 16px; }

.pb-16 {
  padding-bottom: 16px; }

.ml-16 {
  margin-left: 16px; }

.pl-16 {
  padding-left: 16px; }

.mr-16 {
  margin-right: 16px; }

.pr-16 {
  padding-right: 16px; }

.mx-16 {
  margin: 0 16px 0 16px; }

.px-16 {
  padding: 0 16px 0 16px; }

.my-16 {
  margin: 16px 0 16px 0; }

.py-16 {
  padding: 0 16px 0 16px; }

.mt-20 {
  margin-top: 20px; }

.pt-20 {
  padding-top: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.ml-20 {
  margin-left: 20px; }

.pl-20 {
  padding-left: 20px; }

.mr-20 {
  margin-right: 20px; }

.pr-20 {
  padding-right: 20px; }

.mx-20 {
  margin: 0 20px 0 20px; }

.px-20 {
  padding: 0 20px 0 20px; }

.my-20 {
  margin: 20px 0 20px 0; }

.py-20 {
  padding: 0 20px 0 20px; }

.mt-24 {
  margin-top: 24px; }

.pt-24 {
  padding-top: 24px; }

.mb-24 {
  margin-bottom: 24px; }

.pb-24 {
  padding-bottom: 24px; }

.ml-24 {
  margin-left: 24px; }

.pl-24 {
  padding-left: 24px; }

.mr-24 {
  margin-right: 24px; }

.pr-24 {
  padding-right: 24px; }

.mx-24 {
  margin: 0 24px 0 24px; }

.px-24 {
  padding: 0 24px 0 24px; }

.my-24 {
  margin: 24px 0 24px 0; }

.py-24 {
  padding: 0 24px 0 24px; }

.mt-32 {
  margin-top: 32px; }

.pt-32 {
  padding-top: 32px; }

.mb-32 {
  margin-bottom: 32px; }

.pb-32 {
  padding-bottom: 32px; }

.ml-32 {
  margin-left: 32px; }

.pl-32 {
  padding-left: 32px; }

.mr-32 {
  margin-right: 32px; }

.pr-32 {
  padding-right: 32px; }

.mx-32 {
  margin: 0 32px 0 32px; }

.px-32 {
  padding: 0 32px 0 32px; }

.my-32 {
  margin: 32px 0 32px 0; }

.py-32 {
  padding: 0 32px 0 32px; }

.mt-36 {
  margin-top: 36px; }

.pt-36 {
  padding-top: 36px; }

.mb-36 {
  margin-bottom: 36px; }

.pb-36 {
  padding-bottom: 36px; }

.ml-36 {
  margin-left: 36px; }

.pl-36 {
  padding-left: 36px; }

.mr-36 {
  margin-right: 36px; }

.pr-36 {
  padding-right: 36px; }

.mx-36 {
  margin: 0 36px 0 36px; }

.px-36 {
  padding: 0 36px 0 36px; }

.my-36 {
  margin: 36px 0 36px 0; }

.py-36 {
  padding: 0 36px 0 36px; }

.mt-40 {
  margin-top: 40px; }

.pt-40 {
  padding-top: 40px; }

.mb-40 {
  margin-bottom: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.ml-40 {
  margin-left: 40px; }

.pl-40 {
  padding-left: 40px; }

.mr-40 {
  margin-right: 40px; }

.pr-40 {
  padding-right: 40px; }

.mx-40 {
  margin: 0 40px 0 40px; }

.px-40 {
  padding: 0 40px 0 40px; }

.my-40 {
  margin: 40px 0 40px 0; }

.py-40 {
  padding: 0 40px 0 40px; }

.mt-48 {
  margin-top: 48px; }

.pt-48 {
  padding-top: 48px; }

.mb-48 {
  margin-bottom: 48px; }

.pb-48 {
  padding-bottom: 48px; }

.ml-48 {
  margin-left: 48px; }

.pl-48 {
  padding-left: 48px; }

.mr-48 {
  margin-right: 48px; }

.pr-48 {
  padding-right: 48px; }

.mx-48 {
  margin: 0 48px 0 48px; }

.px-48 {
  padding: 0 48px 0 48px; }

.my-48 {
  margin: 48px 0 48px 0; }

.py-48 {
  padding: 0 48px 0 48px; }

.mt-52 {
  margin-top: 52px; }

.pt-52 {
  padding-top: 52px; }

.mb-52 {
  margin-bottom: 52px; }

.pb-52 {
  padding-bottom: 52px; }

.ml-52 {
  margin-left: 52px; }

.pl-52 {
  padding-left: 52px; }

.mr-52 {
  margin-right: 52px; }

.pr-52 {
  padding-right: 52px; }

.mx-52 {
  margin: 0 52px 0 52px; }

.px-52 {
  padding: 0 52px 0 52px; }

.my-52 {
  margin: 52px 0 52px 0; }

.py-52 {
  padding: 0 52px 0 52px; }

.mt-64 {
  margin-top: 64px; }

.pt-64 {
  padding-top: 64px; }

.mb-64 {
  margin-bottom: 64px; }

.pb-64 {
  padding-bottom: 64px; }

.ml-64 {
  margin-left: 64px; }

.pl-64 {
  padding-left: 64px; }

.mr-64 {
  margin-right: 64px; }

.pr-64 {
  padding-right: 64px; }

.mx-64 {
  margin: 0 64px 0 64px; }

.px-64 {
  padding: 0 64px 0 64px; }

.my-64 {
  margin: 64px 0 64px 0; }

.py-64 {
  padding: 0 64px 0 64px; }

.mt-72 {
  margin-top: 72px; }

.pt-72 {
  padding-top: 72px; }

.mb-72 {
  margin-bottom: 72px; }

.pb-72 {
  padding-bottom: 72px; }

.ml-72 {
  margin-left: 72px; }

.pl-72 {
  padding-left: 72px; }

.mr-72 {
  margin-right: 72px; }

.pr-72 {
  padding-right: 72px; }

.mx-72 {
  margin: 0 72px 0 72px; }

.px-72 {
  padding: 0 72px 0 72px; }

.my-72 {
  margin: 72px 0 72px 0; }

.py-72 {
  padding: 0 72px 0 72px; }

.mt-80 {
  margin-top: 80px; }

.pt-80 {
  padding-top: 80px; }

.mb-80 {
  margin-bottom: 80px; }

.pb-80 {
  padding-bottom: 80px; }

.ml-80 {
  margin-left: 80px; }

.pl-80 {
  padding-left: 80px; }

.mr-80 {
  margin-right: 80px; }

.pr-80 {
  padding-right: 80px; }

.mx-80 {
  margin: 0 80px 0 80px; }

.px-80 {
  padding: 0 80px 0 80px; }

.my-80 {
  margin: 80px 0 80px 0; }

.py-80 {
  padding: 0 80px 0 80px; }

.mt-96 {
  margin-top: 96px; }

.pt-96 {
  padding-top: 96px; }

.mb-96 {
  margin-bottom: 96px; }

.pb-96 {
  padding-bottom: 96px; }

.ml-96 {
  margin-left: 96px; }

.pl-96 {
  padding-left: 96px; }

.mr-96 {
  margin-right: 96px; }

.pr-96 {
  padding-right: 96px; }

.mx-96 {
  margin: 0 96px 0 96px; }

.px-96 {
  padding: 0 96px 0 96px; }

.my-96 {
  margin: 96px 0 96px 0; }

.py-96 {
  padding: 0 96px 0 96px; }

/* Helpers */
.ff-ll, .mortgage-military__intro-description, .company-about__union-text, .partners-callback__mail {
  font-weight: 300; }

.ff-lr, .parking-card__title, .flat-info__params-title, .company-leadership__member-name span, .realty-list__params-title {
  font-weight: normal; }

.ff-lm, .button__mobile-flex, .breadcrumbs__link, .popup__input, .popup__text-area, .tender-form .text-fields input, .tender-form .text-fields textarea, .tender-form .file-fields input, .complex-list-slider__mobile-subtitle, .flat-info__params-value, .flat-info__add-to-favorites, .flat-info__purchase-link, .mortgage-manager__request-text, .mortgage-calc__action-link, .mortgage-calc__slider-title, .mortgage-calc__flat-title, .mortgage-calc__item-title, .mortgage-calc__flat-price, .company-about__main-text, .company-about__features-title, .company-leadership__member-position, .company-history__content, .realty-commercial__intro-text, .commercial-info__description, .partners-income__item, .partners-income__button, .partners-step__text, .partners-document__title, .partners-callback__phone, .partners-form__submit, .realty-filter-slider__input, .realty-filter__label, .realty-filter-selector__title, .realty-filter-selector__item-title, .realty-filter__reset, .realty-filter__show-more, .realty-filter-applied__title, .realty-filter-applied__item, .contacts-office__zip, .contacts-office__address, .contacts-office__email-title, .menu__link sup, .purchase-corp-intro__subtitle, .purchase-corp-about__title, .purchase-corp-pluses__item-description, .purchase-corp-business__card-top-title, .purchase-corp-business__add-card, .mother-capital-intro__text {
  font-weight: 500; }

.ff-lb, .button-default__white-rounded, .button-more, .popup__title, .complex-docs__card-icon, .complex-list-slider__mobile-title, .flat-info__price-value, .flat-info__purchase-value, .flat-info__purchase-promo, .mortgage-buy__section, .mortgage-military__bank-name, .mortgage-manager__name, .mortgage-manager__phone-list, .company-about__features-value, .company-chess__main-title, .company-chess__slide-title, .company-history__date-slide, .company-history__sub-title, .realty-commercial__purchase-item-title, .commercial-object__info-value--price, .commercial-info__rooms-value, .commercial-info__rooms-text, .partners-tabs__tab, .partners-info__title, .partners-stage__number, .partners-stage__text, .partners-principle__title, .partners-callback__title, .partners-forms__tab, .partners-form__field-name, .partners-form__input, .partners-form__notifications-title, .partners-form .selectric, .contacts-office__header, .contacts-office__phone-number, .contacts-office__email-link, .menu__link, .purchase-corp-pluses__main-title, .purchase-corp-business__card-title, .mother-capital-case__card-case, .mother-capital-case__card-title, .mother-capital-case__card-item strong, .mother-capital-steps__card-number, .mother-capital-steps__card-text strong {
  font-weight: 900; }

.ff-lbo, .footer__list-link--great, .footer__phone, .complex-short-info__item-title, .commercial-card__title, .commercial-info__phone {
  font-weight: 700; }

/* Colors */
.c-white {
  color: white; }

.c-black {
  color: black; }

/* Alignment */
.ta-c {
  text-align: center; }

.ta-s {
  text-align: start; }

.ta-e {
  text-align: end; }

/* Line height */
.lh-8 {
  line-height: .8; }

.lh-1 {
  line-height: 1; }

.lh-12 {
  line-height: 1.2; }

.lh-13 {
  line-height: 1.3; }

/* Sizes */
.fs-8 {
  font-size: 8px; }

.fs-12 {
  font-size: 12px; }

.fs-16 {
  font-size: 16px; }

.fs-20 {
  font-size: 20px; }

.fs-24 {
  font-size: 24px; }

.fs-32 {
  font-size: 32px; }

.fs-36 {
  font-size: 36px; }

.fs-40 {
  font-size: 40px; }

.fs-48 {
  font-size: 48px; }

.fs-52 {
  font-size: 52px; }

.fs-80 {
  font-size: 80px; }

.fs-96 {
  font-size: 96px; }

.w-100 {
  width: 100%; }

.w-50 {
  width: 50%; }

.h-100 {
  height: 100%; }

.h-50 {
  height: 50%; }

.w-33 {
  width: 33.3333%; }

.bg-line, .bg-line-container:before, .partners-forms:before, .company-history__container {
  background-image: url("/static/images/bg-line.d4a324254e3b.svg");
  background-position: -645px top;
  background-repeat: no-repeat;
  background-size: 1649px; }
  @media only screen and (max-width: 812px) {
    .bg-line, .bg-line-container:before, .partners-forms:before, .company-history__container {
      background-image: none; } }
  .bg-line-container, .partners-forms:before {
    position: relative; }
    .bg-line-container:before, .partners-forms:before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 1440px;
      height: 100%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
      @media only screen and (max-width: 812px) {
        .bg-line-container:before, .partners-forms:before {
          display: none; } }
  .bg-line-wrapper {
    position: relative; }

/* Common */
.breadcrumbs {
  position: relative;
  height: 0;
  width: 100%;
  z-index: 2; }
  .breadcrumbs.white .breadcrumbs__link {
    color: #fff; }
    .breadcrumbs.white .breadcrumbs__link.first {
      color: #fff; }
    .breadcrumbs.white .breadcrumbs__link.last {
      opacity: .5; }
  @media only screen and (max-width: 812px) {
    .breadcrumbs {
      display: none; } }
  .breadcrumbs__body {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2; }
  .breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    list-style: none; }
  .breadcrumbs__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .breadcrumbs__link {
    position: relative;
    padding-left: 17px;
    padding-right: 8px;
    text-decoration: none;
    color: #a6a6a6;
    font-size: 12px;
    -webkit-transition: color .25s ease;
    transition: color .25s ease; }
    .breadcrumbs__link:hover {
      color: #09A09B; }
    .breadcrumbs__link:after {
      content: '/';
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%); }
    .breadcrumbs__link.first {
      padding-left: 0;
      color: #09A09B; }
      .breadcrumbs__link.first:after {
        display: none; }
    .breadcrumbs__link.last {
      pointer-events: none; }

.mfp-wrap {
  /* stylelint-disable */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  /* stylelint-enable */ }

.mfp-container {
  padding: 100px 130px;
  cursor: default; }
  @media only screen and (max-width: 812px) {
    .mfp-container {
      padding: 10% 6%; } }
  .mfp-container:before {
    content: none; }
  .mfp-container .mfp-content {
    height: 100%;
    width: 100%; }
  .mfp-container .mfp-figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    /* stylelint-disable */
    cursor: default !important;
    /* stylelint-enable */ }
    .mfp-container .mfp-figure:after {
      content: none; }
  .mfp-container .mfp-img__wrapper {
    height: 100%;
    position: relative; }
    .mfp-container .mfp-img__wrapper:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 180px;
      opacity: .9;
      background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(97.79%, rgba(0, 0, 0, 0)));
      background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0) 97.79%);
      pointer-events: none; }
      @media only screen and (max-width: 812px) {
        .mfp-container .mfp-img__wrapper:after {
          display: none; } }
  .mfp-container .mfp-img {
    /* stylelint-disable */
    max-width: 100% !important;
    max-height: 100% !important;
    /* stylelint-enable */
    padding: 0;
    cursor: pointer;
    margin: 0;
    z-index: 1;
    pointer-events: all;
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all; }
  .mfp-container .mfp-close {
    position: absolute;
    top: -60px;
    right: -14px;
    width: 30px;
    height: 30px;
    padding: 0;
    opacity: .7;
    background: url("/static/images/ic-cross-white.d822979f6a49.svg") center no-repeat;
    background-size: contain;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    /* stylelint-disable */
    cursor: pointer !important;
    /* stylelint-enable */ }
    @media only screen and (max-width: 812px) {
      .mfp-container .mfp-close {
        top: 0;
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%); } }
    .mfp-container .mfp-close:hover {
      -webkit-transform: scale(0.8);
              transform: scale(0.8); }
    .mfp-container .mfp-close:active {
      -webkit-transform: scale(0.7);
              transform: scale(0.7); }
  .mfp-container .mfp-counter {
    top: calc(100% + 3px); }

.magnific-arrow {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 43px;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
  background: url("/static/images/slider-arrow.72e9810d29e7.svg") center no-repeat;
  background-size: contain;
  will-change: transform; }
  @media only screen and (max-width: 812px) {
    .magnific-arrow {
      bottom: -18px;
      top: auto;
      z-index: 1046; } }
  .magnific-arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .magnific-arrow.prev {
    left: 90px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }
    @media only screen and (max-width: 812px) {
      .magnific-arrow.prev {
        left: calc(50% - 50px); } }
    .magnific-arrow.prev:hover {
      -webkit-transform: translate(-40%, -50%);
              transform: translate(-40%, -50%); }
    .magnific-arrow.prev:active {
      -webkit-transform: translate(-40%, -50%) scale(1.2);
              transform: translate(-40%, -50%) scale(1.2); }
  .magnific-arrow.next {
    right: 90px;
    -webkit-transform: translate(0, -50%) rotate(180deg);
            transform: translate(0, -50%) rotate(180deg); }
    @media only screen and (max-width: 812px) {
      .magnific-arrow.next {
        right: calc(50% - 50px); } }
    .magnific-arrow.next:hover {
      -webkit-transform: translate(40%, -50%) rotate(180deg);
              transform: translate(40%, -50%) rotate(180deg); }
    .magnific-arrow.next:active {
      -webkit-transform: translate(40%, -50%) rotate(180deg) scale(1.2);
              transform: translate(40%, -50%) rotate(180deg) scale(1.2); }

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */ }
  .mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); }
  .mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out; }
  .mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  .mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .9; }
  .mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  .mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0; }
  .mfp-zoom-in.mfp-removing .complex-detail-progress-images__arrow {
    opacity: 0;
    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease; }

.mfp-bottom-bar {
  margin-top: -20px;
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
  z-index: 2; }

.mfp-title {
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  width: 100%;
  max-width: 750px;
  padding-right: 0; }

/* Blocks */
.header {
  position: relative;
  min-height: 110px;
  width: 100%;
  z-index: 3; }
  @media only screen and (max-width: 812px) {
    .header {
      min-height: 60px;
      z-index: 6; } }
  .header__container {
    top: 0;
    left: 0;
    right: 0;
    width: 100%; }
    @media only screen and (max-width: 812px) {
      .header__container {
        min-height: 60px; } }
    .header__container.fixed {
      position: fixed; }
      @media only screen and (max-width: 812px) {
        .header__container.fixed {
          position: relative; } }
      .header__container.fixed .header__top {
        pointer-events: none; }
        @media only screen and (max-width: 812px) {
          .header__container.fixed .header__top {
            pointer-events: all; } }
      .header__container.fixed .header__bottom {
        top: 0; }
  .header__top {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0))), #545454;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), #545454;
    white-space: nowrap; }
    @media only screen and (max-width: 812px) {
      .header__top {
        height: 60px; } }
  .header__bottom {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    font-weight: normal;
    min-height: 70px;
    background: #f6f6f6;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 812px) {
      .header__bottom {
        display: none; } }
  .header__title {
    text-decoration: none;
    min-height: 40px; }
    @media only screen and (max-width: 812px) {
      .header__title {
        display: none; } }
  .header__call-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .header__call-back-link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-right: 35px;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      -webkit-transition: color .25s ease;
      transition: color .25s ease; }
      @media only screen and (max-width: 812px) {
        .header__call-back-link {
          margin-right: 0; } }
      .header__call-back-link:hover {
        color: #0baca2; }
        .header__call-back-link:hover .header__call-back-ico {
          -webkit-animation-play-state: running;
                  animation-play-state: running; }
          .header__call-back-link:hover .header__call-back-ico:after {
            opacity: 1; }
    @media only screen and (max-width: 812px) {
      .header__call-back-phone {
        display: none; } }
    .header__call-back-ico {
      position: relative;
      display: inline-block;
      width: 15px;
      height: 15px;
      margin-right: 8px;
      background-image: url("/static/images/icon-call-white.df314d0ced73.svg");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      -webkit-animation: callAnimation 1.5s linear infinite;
              animation: callAnimation 1.5s linear infinite;
      -webkit-animation-play-state: paused;
              animation-play-state: paused;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
      @media only screen and (max-width: 812px) {
        .header__call-back-ico {
          width: 23px;
          height: 23px; } }
      .header__call-back-ico:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-image: url("/static/images/icon-call-green.7953007774c3.svg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        opacity: 0;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease; }
        @media only screen and (max-width: 812px) {
          .header__call-back-ico:after {
            opacity: 1; } }
  .header__menu {
    height: 100%; }
    .header__menu-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      list-style: none; }
    .header__menu-item {
      border-left: 1px solid #ececec; }
      .header__menu-item:last-of-type {
        border-right: 1px solid #ececec; }
      .header__menu-item:hover .header__submenu {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: translate3d(0, calc(110px - 40px), 0);
                transform: translate3d(0, calc(110px - 40px), 0);
        -webkit-transition: opacity 0s ease, -webkit-transform .7s ease;
        transition: opacity 0s ease, -webkit-transform .7s ease;
        transition: transform .7s ease, opacity 0s ease;
        transition: transform .7s ease, opacity 0s ease, -webkit-transform .7s ease; }
      .header__menu-item.has-children:hover .header__menu-link {
        color: #fff; }
        .header__menu-item.has-children:hover .header__menu-link:before {
          opacity: 1;
          -webkit-transition: opacity .2s ease .4s;
          transition: opacity .2s ease .4s; }
        .header__menu-item.has-children:hover .header__menu-link:after {
          opacity: 1;
          -webkit-transition: opacity .35s ease;
          transition: opacity .35s ease; }
    .header__menu-link {
      position: relative;
      padding: 25px 16px 0;
      display: block;
      min-height: 70px;
      color: #000;
      font-size: 14px;
      text-decoration: none;
      cursor: pointer;
      will-change: color, background-color;
      -webkit-transition: color .15s ease;
      transition: color .15s ease; }
      .header__menu-link span {
        position: relative;
        z-index: 2; }
      .header__menu-link:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: #09A09B;
        z-index: 1;
        -webkit-transition: opacity .15s ease;
        transition: opacity .15s ease; }
      .header__menu-link:before {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: 7px;
        background-color: #09A09B;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity .15s ease;
        transition: opacity .15s ease; }
      .header__menu-link:hover {
        color: #fff;
        -webkit-transition: color .1s ease;
        transition: color .1s ease; }
        .header__menu-link:hover:after {
          opacity: 1;
          -webkit-transition: opacity .35s ease;
          transition: opacity .35s ease; }
  .header__submenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
    -webkit-transition: opacity 0s ease .8s, -webkit-transform .8s ease-in-out;
    transition: opacity 0s ease .8s, -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out, opacity 0s ease .8s;
    transition: transform .8s ease-in-out, opacity 0s ease .8s, -webkit-transform .8s ease-in-out;
    background-color: #09A09B;
    will-change: transform;
    list-style: none;
    pointer-events: none;
    z-index: -1;
    opacity: 0; }
    .header__submenu-box {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%; }
    .header__submenu-item {
      margin-right: 30px; }
      .header__submenu-item:hover .header__submenu-link-span:before {
        width: 100%;
        -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }
      .header__submenu-item:hover .header__submenu-link-span:after {
        background: transparent;
        width: 100%;
        -webkit-transition: 0s;
        transition: 0s; }
    .header__submenu-link {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      min-height: 45px;
      text-decoration: none;
      color: #fff;
      font-size: 14px; }
      .header__submenu-link-span {
        position: relative;
        display: inline-block; }
        .header__submenu-link-span:after, .header__submenu-link-span:before {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: -5px;
          background: rgba(255, 255, 255, 0.8); }
        .header__submenu-link-span:after {
          right: 0;
          -webkit-transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
          transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
        .header__submenu-link-span:before {
          left: 0; }
  .header__bottom-aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__favorites {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__favorites-text {
      margin-left: 13px;
      max-width: 111px;
      color: #545454;
      font-size: 12px; }
      .header__favorites-text a {
        color: #09A09B;
        text-decoration: underline; }
        .header__favorites-text a:hover {
          text-decoration: none; }
      .header__favorites-text-empty {
        display: block; }
      .header__favorites-text-active {
        display: none; }
    .header__favorites.active .header__favorites-text-empty {
      display: none; }
    .header__favorites.active .header__favorites-text-active {
      display: block; }
  .header__navigation {
    position: relative;
    margin-left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 812px) {
      .header__navigation {
        display: none; } }
    .header__navigation-result {
      position: absolute;
      top: 100%;
      left: 0;
      opacity: 0;
      width: 100%;
      background-color: #f6f6f6;
      font-size: 14px;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      color: #545454;
      pointer-events: none;
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .header__navigation-result.active {
        opacity: 1;
        pointer-events: all; }
      .header__navigation-result span {
        display: block;
        padding: 20px 10px 20px 20px; }
    .header__navigation-label {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 33px;
      height: 33px;
      border: 1px solid #09A09B;
      border-radius: 100%;
      cursor: pointer; }
      .header__navigation-label:after {
        content: '';
        display: block;
        height: 18px;
        width: 18px;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url("/static/images/icon-loop-green.b1dd7be2f190.svg"); }
    .header__navigation-input {
      position: relative;
      padding-bottom: 3px;
      padding-right: 20px;
      width: 102px;
      margin-left: 13px;
      border-bottom: 1px solid #c6c6c6;
      border-left: none;
      border-top: none;
      border-right: none;
      color: #545454;
      font-size: 13px;
      background-color: transparent;
      background-repeat: no-repeat;
      background-position: 100% 0;
      background-size: 16px auto;
      -webkit-transition: border-bottom .2s ease;
      transition: border-bottom .2s ease; }
      .header__navigation-input:focus {
        outline: none;
        background-image: url("/static/images/enter-key.202064f7f348.svg");
        border-bottom: 1px solid #000; }
      .header__navigation-input::-webkit-input-placeholder {
        color: #545454; }
      .header__navigation-input:-ms-input-placeholder {
        color: #545454; }
      .header__navigation-input::placeholder {
        color: #545454; }
    .header__navigation-link {
      position: relative;
      display: block;
      width: 100%;
      padding: 20px;
      font-size: 14px;
      color: #545454;
      text-decoration: none;
      -webkit-transition: background-color .2s ease;
      transition: background-color .2s ease;
      background-color: #f6f6f6; }
      .header__navigation-link:hover {
        background-color: #eee; }
        .header__navigation-link:hover:after {
          -webkit-transform: translate3d(3px, -50%, 0);
                  transform: translate3d(3px, -50%, 0); }
      .header__navigation-link:after {
        content: '';
        display: block;
        position: absolute;
        width: 15px;
        height: 15px;
        right: 10px;
        top: 50%;
        -webkit-transform: translate3d(0, -50%, 0);
                transform: translate3d(0, -50%, 0);
        background-image: url("/static/images/right-arrow-black.1ee4c3ee10a8.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
        -webkit-transition: -webkit-transform .25s ease;
        transition: -webkit-transform .25s ease;
        transition: transform .25s ease;
        transition: transform .25s ease, -webkit-transform .25s ease; }
  .header__popup {
    min-height: 40px; }
    @media only screen and (max-width: 812px) {
      .header__popup {
        display: none; } }
  .header__logo-mobile {
    display: none; }
    @media only screen and (max-width: 812px) {
      .header__logo-mobile {
        display: block;
        width: 44px;
        height: 35px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
        background-image: url("/static/images/monolit-logo-mobile.718a90ce5dbf.svg"); } }
  .header__button-common {
    color: #fff;
    -webkit-transition: color .3s ease, opacity .3s ease;
    transition: color .3s ease, opacity .3s ease; }
    .header__button-common:hover {
      color: #e6e6e6; }
  @media only screen and (max-width: 812px) {
    .header__button-common-wrp {
      display: none; } }
  .header__h1 {
    color: #fff;
    margin: auto 1rem auto 4rem;
    font-size: 14px;
    vertical-align: middle; }

.hamburger {
  position: relative;
  display: none;
  text-decoration: none;
  color: #fff;
  width: 23px;
  height: 23px;
  opacity: 1;
  z-index: 3; }
  @media only screen and (max-width: 812px) {
    .hamburger {
      display: block; } }
  .hamburger.active .hamburger-line.first {
    -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
            transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger.active .hamburger-line.middle {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  .hamburger.active .hamburger-line.last {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
            transform: translate3d(0, -9px, 0) rotate(-45deg); }
  .hamburger.active .hamburger__fav {
    opacity: 0; }
  .hamburger-line {
    display: block;
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: center;
            transform-origin: center; }
  .hamburger__fav {
    position: absolute;
    top: -18px;
    right: -29px;
    border: none;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease; }
    .hamburger__fav.active {
      opacity: 1;
      background-color: transparent; }
      .hamburger__fav.active:after {
        opacity: 1;
        z-index: 2; }
      .hamburger__fav.active:before {
        visibility: hidden; }
  .hamburger__fav-count {
    position: absolute;
    right: -1px;
    top: 3px;
    display: block;
    color: #fff;
    font-size: 11px;
    opacity: 1;
    pointer-events: none;
    border: none; }

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #001312;
  padding: 102px 0 78px;
  color: #fff; }
  @media only screen and (max-width: 812px) {
    .footer {
      display: block;
      padding: 29px 0 55px; } }
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%; }
    @media only screen and (max-width: 812px) {
      .footer__container {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .footer__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 24px; }
    @media only screen and (max-width: 812px) {
      .footer__navigation {
        margin-right: 0;
        margin-bottom: 21px;
        padding-left: 29px;
        max-width: 320px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .footer__column {
    margin-right: 24px;
    width: 235px; }
    @media only screen and (max-width: 812px) {
      .footer__column {
        width: auto; } }
  .footer__list {
    list-style: none; }
  .footer__list-item.mobile {
    display: none; }
    @media only screen and (max-width: 812px) {
      .footer__list-item.mobile {
        display: block; } }
  .footer__list-item:first-child .footer__list-link--great {
    margin-top: 0; }
  .footer__list-link {
    display: block;
    color: inherit;
    font-size: 14px;
    margin-bottom: 19px;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .footer__list-link {
        display: none; }
        .footer__list-link.footer__list-link--great {
          font-weight: 700;
          display: block;
          margin-bottom: 25px; } }
    .footer__list-link:hover {
      color: #18a29b; }
    .footer__list-link--great {
      font-size: 20px;
      margin: 35px 0; }
      @media only screen and (max-width: 812px) {
        .footer__list-link--great {
          margin: 0; } }
  .footer__contacts {
    width: 30%; }
    @media only screen and (max-width: 812px) {
      .footer__contacts {
        padding-left: 29px;
        max-width: 320px;
        width: auto; } }
  .footer__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px; }
    @media only screen and (max-width: 812px) {
      .footer__phones {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .footer__phone {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    color: inherit;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 15px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .footer__phone {
        margin-bottom: 28px;
        font-weight: 500;
        font-size: 22px; } }
    .footer__phone:nth-child(2n) {
      margin-right: 0; }
    .footer__phone--plus .footer__phone-number {
      margin-left: -.5em; }
    .footer__phone:hover {
      color: #18a29b; }
  .footer__address {
    font-size: 13px;
    color: #FFF;
    font-style: normal;
    margin-bottom: 20px; }
  .footer__mail {
    margin-bottom: 38px;
    font-size: 13px; }
    @media only screen and (max-width: 812px) {
      .footer__mail {
        display: none; } }
  .footer__mail-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    .footer__mail-link:hover {
      color: #18a29b; }
  .footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px; }
    @media only screen and (max-width: 812px) {
      .footer__social {
        display: none; } }
    .footer__social.mobile {
      display: none; }
      @media only screen and (max-width: 812px) {
        .footer__social.mobile {
          margin-bottom: 31px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
  .footer__social-icon {
    width: 50px;
    height: 50px;
    background-color: #83877d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px auto;
    border-radius: 50%;
    margin-right: 12px;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease; }
    @media only screen and (max-width: 812px) {
      .footer__social-icon {
        width: 28px;
        height: 28px;
        background-size: 16px auto; } }
    .footer__social-icon:hover {
      background-color: #18a29b; }
    .footer__social-icon--fb {
      background-image: url("/static/images/icon-facebook.3dc8a75de1f6.svg");
      background-size: 19px; }
    .footer__social-icon--vk {
      background-image: url("/static/images/icon-vk.7cbb93a04f2b.svg");
      background-size: 24px auto; }
    .footer__social-icon--insta {
      background-image: url("/static/images/icon-instagram.23571e05f31c.svg");
      background-size: 18px; }
  .footer__copyright {
    color: #83877d;
    margin-bottom: 13px;
    font-size: 13px; }
  .footer__developer {
    font-size: 13px;
    text-decoration: none;
    color: inherit;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .footer__developer {
        color: #d4d0d0; } }
    .footer__developer:hover {
      color: #18a29b; }

.active.popup .popup__container {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

.popup__container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 721px;
  padding: 40px 45px 45px 40px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background-color: #f1f1f1;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease; }
  .popup__container.short {
    width: 512px; }
    @media only screen and (max-width: 812px) {
      .popup__container.short {
        width: 100%; } }
  @media only screen and (max-width: 812px) {
    .popup__container {
      padding: 22px 16px 0;
      height: 100vh;
      max-height: 509px;
      overflow-y: scroll;
      margin: 0 auto;
      width: 100%; } }
  .popup__container.popup__centered {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important; }
    @media only screen and (max-width: 812px) {
      .popup__container.popup__centered {
        padding: 22px 16px 22px;
        height: auto !important; } }
  .popup__container.popup__banner {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    padding: 0px !important; }
    .popup__container.popup__banner .popup__header {
      margin: 0px !important; }
      .popup__container.popup__banner .popup__header .popup__close {
        position: absolute !important;
        top: 20px;
        right: 20px; }
    @media only screen and (max-width: 812px) {
      .popup__container.popup__banner {
        padding: 0px !important;
        height: auto !important; } }

.popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px; }

.popup__title {
  font-size: 30px; }
  @media only screen and (max-width: 812px) {
    .popup__title {
      font-size: 25px; } }

.popup__close {
  position: relative;
  width: 29px;
  height: 29px;
  cursor: pointer; }
  .popup__close:hover:before {
    -webkit-transform: translate(-50%) rotate(135deg);
            transform: translate(-50%) rotate(135deg); }
  .popup__close:hover:after {
    -webkit-transform: translate(-50%) rotate(225deg);
            transform: translate(-50%) rotate(225deg); }
  .popup__close:before, .popup__close:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 27px;
    background-color: #000;
    -webkit-transform: translate(-50%) rotate(45deg);
            transform: translate(-50%) rotate(45deg);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .popup__close:after {
    -webkit-transform: translate(-50%) rotate(135deg);
            transform: translate(-50%) rotate(135deg); }

.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease; }
  @media only screen and (max-width: 812px) {
    .popup__form {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column; } }
  .popup__form.hide {
    opacity: 0; }

.popup__field--email {
  -ms-flex-preferred-size: 59%;
      flex-basis: 59%; }

.popup__field--area {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.popup__label-title {
  padding-left: 10px; }

.popup__required {
  margin-left: 3px;
  color: #eb5757; }

.popup__input, .popup__text-area {
  display: block;
  width: 100%;
  border: none;
  border-radius: 60px;
  padding: 20px 25px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  outline: none; }
  @media only screen and (max-width: 812px) {
    .popup__input, .popup__text-area {
      margin-bottom: 20px; } }
  .popup__input:focus, .popup__text-area:focus {
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); }

.popup__text-area {
  resize: none;
  border-radius: 30px; }

.popup__submit {
  padding: 15px 45px; }
  @media only screen and (max-width: 812px) {
    .popup__submit {
      margin-top: 10px;
      border-radius: 0;
      -webkit-box-shadow: none;
              box-shadow: none; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .popup__submit {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  @media only screen and (max-width: 812px) {
      .popup__submit:hover {
        -webkit-box-shadow: none;
                box-shadow: none; } }

.popup__info {
  display: none;
  height: 325px; }

.popup__dialog {
  display: none;
  height: 100%; }
  .popup__dialog.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

.popup__dialog-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }
  .popup__dialog-icon--error {
    background-image: url("/static/images/cancel.46aba0b383e8.svg"); }
  .popup__dialog-icon--success {
    background-image: url("/static/images/checked.5179cfdd0d73.svg"); }

.index-complex-list {
  margin-top: 35px;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 6px;
  background-color: #fafafa; }
  @media only screen and (max-width: 812px) {
    .index-complex-list {
      margin-top: 0;
      background-color: #fff; } }
  .index-complex-list__header {
    margin-bottom: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .index-complex-list__header {
        display: none; } }
  .index-complex-list__main-title {
    font-weight: 400;
    font-size: 40px; }

.index-types {
  width: 100%; }
  @media only screen and (max-width: 812px) {
    .index-types {
      margin-top: 47px;
      margin-bottom: 47px; } }
  .index-types__header {
    height: 148px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0))), #545454;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), #545454;
    background-blend-mode: overlay, normal; }
    @media only screen and (max-width: 812px) {
      .index-types__header {
        display: none; } }
    .index-types__header-container {
      padding-top: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      color: #fff;
      font-weight: 700;
      font-size: 16px; }
  .index-types__complex-link {
    position: relative;
    text-decoration: none;
    color: #fff;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    cursor: pointer;
    font-weight: normal; }
    .index-types__complex-link span {
      display: inline-block;
      margin-right: 14px;
      font-weight: 900;
      font-size: 36px; }
    .index-types__complex-link:hover {
      color: #0baca2; }
    .index-types__complex-link.arrow-right {
      padding-right: 30px; }
      .index-types__complex-link.arrow-right:hover:after {
        background-color: #0baca2;
        -webkit-transform: translate3d(3px, 0, 0);
                transform: translate3d(3px, 0, 0);
        border: 1px solid #0baca2; }
      .index-types__complex-link.arrow-right:after {
        content: '';
        display: block;
        position: absolute;
        right: -18px;
        top: -2px;
        width: 26px;
        height: 26px;
        border: 1px solid #fff;
        border-radius: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto;
        -webkit-transition: background-color .3s ease, border .3s ease, -webkit-transform .3s ease;
        transition: background-color .3s ease, border .3s ease, -webkit-transform .3s ease;
        transition: background-color .3s ease, transform .3s ease, border .3s ease;
        transition: background-color .3s ease, transform .3s ease, border .3s ease, -webkit-transform .3s ease;
        background-image: url("/static/images/icon-arrow-white-right-small.707478d42aa0.svg");
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0); }
  .index-types__body {
    width: 100%;
    -webkit-transform: translateY(-9px);
            transform: translateY(-9px); }

.index-mortgage {
  width: 100%;
  padding-top: 33px; }
  @media only screen and (max-width: 812px) {
    .index-mortgage {
      padding-top: 0; } }
  .index-mortgage__main-title {
    margin-bottom: 40px;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .index-mortgage__main-title {
        font-size: 24px;
        margin-bottom: 26px; } }
  .index-mortgage__military {
    text-align: center;
    width: 317px;
    padding-top: 55px; }
    @media only screen and (max-width: 812px) {
      .index-mortgage__military {
        padding-top: 27px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .index-mortgage__military {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    @media only screen and (max-width: 812px) {
      .index-mortgage__military .button__military {
        border-radius: 0;
        width: 100%;
        min-width: 250px; }
        .index-mortgage__military .button__military:after {
          width: 100%; } }
  .index-mortgage .common-link {
    margin-bottom: 30px; }
    @media only screen and (max-width: 812px) {
      .index-mortgage .common-link {
        display: none; } }
  .index-mortgage__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .index-mortgage__slider {
        width: 100%; } }
  .index-mortgage .slider-controller__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .index-mortgage__buttons {
    display: none; }
    @media only screen and (max-width: 812px) {
      .index-mortgage__buttons {
        width: 100%;
        display: block; } }

.index-filter {
  margin-top: 35px; }
  @media only screen and (max-width: 812px) {
    .index-filter {
      margin-top: 0; } }
  .index-filter .realty-filter__main {
    padding: 0; }
    @media only screen and (max-width: 812px) {
      .index-filter .realty-filter__main {
        display: none; } }
  .index-filter .realty-filter__item {
    padding: 19px 24px; }
    .index-filter .realty-filter__item.go-filter {
      margin-left: 28px;
      width: 326px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .index-filter .realty-filter__action-button {
    margin: 0; }

.tender-form .text-fields input, .tender-form .text-fields textarea {
  display: block;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 60px;
  padding: 20px 25px;
  margin-top: 10px;
  font-size: 15px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  outline: none; }
  @media only screen and (max-width: 812px) {
    .tender-form .text-fields input, .tender-form .text-fields textarea {
      margin-bottom: 20px; } }
  .tender-form .text-fields input:focus, .tender-form .text-fields textarea:focus {
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); }

.tender-form .file-fields input {
  display: block;
  margin-top: 10px;
  font-size: 15px; }
  @media only screen and (max-width: 812px) {
    .tender-form .file-fields input {
      margin-bottom: 20px; } }
  .tender-form .file-fields input:focus {
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); }

.tender-form .form-required {
  color: red; }

.tender-form .form-error {
  color: red; }

.complex-intro {
  position: relative;
  width: 100%; }
  .complex-intro__legend {
    position: absolute;
    bottom: 0;
    left: 0; }
    @media only screen and (max-width: 812px) {
      .complex-intro__legend {
        display: none; } }
  .complex-intro .slider-controller {
    position: absolute;
    bottom: 92px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media only screen and (max-width: 812px) {
      .complex-intro .slider-controller {
        display: none; } }

.complex-flat-types {
  position: relative;
  margin-top: -61px; }
  @media only screen and (max-width: 812px) {
    .complex-flat-types {
      margin-top: 0;
      max-width: 100vw; } }

@media only screen and (max-width: 812px) {
  .complex-dynamic {
    padding-bottom: 46px; } }

@media only screen and (max-width: 812px) {
  .complex-dynamic .container, .complex-dynamic .complex-list-finished__body, .complex-dynamic .flat-types__wrap, .complex-dynamic .company-layout__body, .complex-dynamic .company-chess, .complex-dynamic .history-layout, .complex-dynamic .company-history__container, .complex-dynamic .partners-info__container {
    padding: 0 0 0 16px; } }

.complex-dynamic__tabs {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  @media only screen and (max-width: 812px) {
    .complex-dynamic__tabs {
      margin-top: 28px; } }
  .complex-dynamic__tabs-title {
    position: relative;
    font-weight: 500;
    margin-right: 34px;
    padding-bottom: 15px;
    cursor: pointer;
    color: #0baca2;
    will-change: color;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .complex-dynamic__tabs-title {
        font-size: 24px;
        padding-bottom: 0;
        margin-right: 10px; }
        .complex-dynamic__tabs-title:after {
          display: none; } }
    .complex-dynamic__tabs-title:hover {
      color: #09A09B; }
    .complex-dynamic__tabs-title.active {
      pointer-events: none; }
      @media only screen and (max-width: 812px) {
        .complex-dynamic__tabs-title.active {
          font-size: 24px; } }
      .complex-dynamic__tabs-title.active:after {
        -webkit-transform: scaleX(1);
                transform: scaleX(1); }
        @media only screen and (max-width: 812px) {
          .complex-dynamic__tabs-title.active:after {
            -webkit-transform: scaleX(0);
                    transform: scaleX(0); } }
      .complex-dynamic__tabs-title.active:hover {
        color: #020202; }
    .complex-dynamic__tabs-title:last-of-type {
      margin-right: 0; }
    .complex-dynamic__tabs-title:after {
      content: '';
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      height: 4px;
      width: 100%;
      background-color: #09A09B;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }

.complex-dynamic__wrapper {
  padding-top: 25px;
  position: relative;
  width: 100%;
  min-height: 218px; }
  @media only screen and (max-width: 812px) {
    .complex-dynamic__wrapper {
      margin-top: 0;
      padding-bottom: 50px; } }

.complex-dynamic__container {
  position: absolute;
  width: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  -webkit-transform: translate3d(0, 15px, 0);
          transform: translate3d(0, 15px, 0);
  -webkit-transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
  transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
  transition: opacity .35s ease, transform .35s ease, position 0s ease .35s;
  transition: opacity .35s ease, transform .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
  z-index: 1; }
  .complex-dynamic__container.active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    pointer-events: all;
    opacity: 1;
    -webkit-transition: opacity 0.6s ease 0.35s, position 0.6s ease 0.35s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
    transition: opacity 0.6s ease 0.35s, position 0.6s ease 0.35s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
    transition: opacity 0.6s ease 0.35s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s, position 0.6s ease 0.35s;
    transition: opacity 0.6s ease 0.35s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s, position 0.6s ease 0.35s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
    z-index: 2; }

.complex-dynamic__card {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: 6px;
  margin-right: 24px;
  margin-bottom: 24px;
  position: relative;
  display: block;
  width: 236px;
  height: 148px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  background-color: #333;
  font-size: 14px;
  text-decoration: none;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  outline: none; }
  .complex-dynamic__card:hover {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0); }
  .complex-dynamic__card-shield {
    padding: 0 12px 3px 22px;
    min-height: 33px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 18px;
    left: 0;
    background-color: #232323; }

.complex-dynamic__slide-show {
  position: relative; }

.complex-dynamic__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.complex-dynamic__controllers {
  position: absolute;
  top: 6px;
  right: 0; }
  @media only screen and (max-width: 812px) {
    .complex-dynamic__controllers {
      display: none; } }

.complex-dynamic__mobile-buttons {
  display: none; }
  @media only screen and (max-width: 812px) {
    .complex-dynamic__mobile-buttons {
      display: block; }
      .complex-dynamic__mobile-buttons .slider-controller__container {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

.complex-detail__title {
  margin-bottom: 30px;
  font-size: 24px; }

.complex-docs__slide.document-slide {
  max-width: 180px; }

.document {
  text-decoration: none;
  text-align: center; }
  .document-white {
    color: white; }
  .document-black {
    color: black; }
  .document:hover {
    color: #00998f; }
  .document-icon {
    text-align: center; }
    .document-icon:before {
      content: '';
      display: block;
      width: 100%;
      height: 80px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("/static/images/doc-green-icon.1079ad5d557f.svg"); }
  .document-lable {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem; }
  .document-text {
    font-size: 0.8rem; }

.complex-button__to-flat-list {
  margin-bottom: 30px; }
  .complex-button__to-flat-list .button__rounded, .complex-button__to-flat-list .popup__submit, .complex-button__to-flat-list .mortgage-manager__request-button, .complex-button__to-flat-list .partners-form__submit, .complex-button__to-flat-list .realty-filter__action-button, .complex-button__to-flat-list .contacts-info__button {
    margin-left: 95px; }

.complex-around {
  padding-top: 52px;
  padding-bottom: 32px; }
  @media only screen and (max-width: 812px) {
    .complex-around {
      position: relative;
      padding-top: 26px; } }
  .complex-around__container {
    position: relative;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
    -webkit-transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
    transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
    transition: opacity .35s ease, transform .35s ease, position 0s ease .35s;
    transition: opacity .35s ease, transform .35s ease, position 0s ease .35s, -webkit-transform .35s ease; }
    @media only screen and (max-width: 812px) {
      .complex-around__container .container, .complex-around__container .complex-list-finished__body, .complex-around__container .flat-types__wrap, .complex-around__container .company-layout__body, .complex-around__container .company-chess, .complex-around__container .history-layout, .complex-around__container .company-history__container, .complex-around__container .partners-info__container {
        padding: 0; } }
    .complex-around__container.active {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      pointer-events: all;
      position: relative;
      opacity: 1;
      -webkit-transition: opacity 0.6s ease 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
      transition: opacity 0.6s ease 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
      transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, position 0.6s ease 0.3s;
      transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s; }
  .complex-around__tabs-container {
    position: relative;
    width: 100%; }
  .complex-around__tabs {
    margin-bottom: 72px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .complex-around__tabs {
        margin-right: -16px;
        width: calc(100% + 16px);
        margin-bottom: 28px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .complex-around__tabs-title {
      position: relative;
      margin-right: 28px;
      font-size: 26px;
      font-weight: normal;
      color: #0baca2;
      -webkit-transition: color .3s ease;
      transition: color .3s ease;
      cursor: pointer;
      outline: none; }
      @media only screen and (max-width: 812px) {
        .complex-around__tabs-title {
          font-size: 18px;
          margin-right: 22px; } }
      .complex-around__tabs-title.active-tab {
        color: black;
        font-weight: 700;
        pointer-events: none; }
        .complex-around__tabs-title.active-tab:after {
          -webkit-transform: scaleX(0);
                  transform: scaleX(0); }
      .complex-around__tabs-title:last-of-type {
        margin-right: 0; }
      .complex-around__tabs-title:after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background-color: #0baca2;
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        will-change: transform;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease; }
        @media only screen and (max-width: 812px) {
          .complex-around__tabs-title:after {
            height: 1px;
            margin-top: -1px; } }
  .complex-around__slide-show {
    width: 606px;
    height: 383px; }
    @media only screen and (max-width: 812px) {
      .complex-around__slide-show {
        display: none; } }
  .complex-around__content {
    padding-left: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    @media only screen and (max-width: 812px) {
      .complex-around__content {
        padding-left: 0; } }
  .complex-around__text-slider {
    width: 100%;
    max-width: 543px;
    outline: none;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    margin-bottom: 52px;
    min-height: 216px; }
    @media only screen and (max-width: 812px) {
      .complex-around__text-slider {
        margin-bottom: 24px;
        max-width: 95vw;
        width: 100%; } }
    .complex-around__text-slider .slick-list {
      -webkit-user-select: auto !important;
         -moz-user-select: auto !important;
          -ms-user-select: auto !important;
              user-select: auto !important; }
    .complex-around__text-slider.slick-slider {
      opacity: 1;
      -webkit-user-select: auto !important;
         -moz-user-select: auto !important;
          -ms-user-select: auto !important;
              user-select: auto !important; }
      .complex-around__text-slider.slick-slider > * {
        outline: none; }
  .complex-around__info {
    position: relative;
    margin-right: 86px; }
    @media only screen and (max-width: 812px) {
      .complex-around__info {
        margin-right: 0; } }
    .complex-around__info-title {
      position: relative;
      margin-bottom: 34px;
      font-size: 50px;
      color: #020202;
      font-weight: 300;
      z-index: 1; }
      @media only screen and (max-width: 812px) {
        .complex-around__info-title {
          display: none; } }
      .complex-around__info-title.active {
        pointer-events: none; }
    .complex-around__info-text {
      font-size: 14px;
      color: #545454;
      line-height: 1.9;
      outline: none; }
      @media only screen and (max-width: 812px) {
        .complex-around__info-text {
          width: 100%;
          max-width: 100%; } }
    .complex-around__info-icon {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      left: -88px;
      top: -21px;
      width: 108px;
      height: 108px;
      background-color: #e3f4eb;
      border-radius: 100%;
      z-index: 0; }
      @media only screen and (max-width: 812px) {
        .complex-around__info-icon {
          display: none; } }
      .complex-around__info-icon img {
        max-width: 84px;
        height: auto; }
    @media only screen and (max-width: 812px) {
      .complex-around__info .slider-controller__container {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .complex-around__mobile-arrow {
    position: absolute;
    display: none;
    top: 12px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -16px;
    height: 76px;
    z-index: 4; }
    @media only screen and (max-width: 812px) {
      .complex-around__mobile-arrow {
        display: block; } }
    .complex-around__mobile-arrow.slider-arrow.right-arrow {
      background-position: 43px center; }
  .complex-around__mobile-gradient {
    position: absolute;
    top: -24px;
    right: -16px;
    display: none;
    height: 76px;
    width: 65px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0.7)));
    background: linear-gradient(-180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 3;
    pointer-events: none; }
    @media only screen and (max-width: 812px) {
      .complex-around__mobile-gradient {
        display: block; } }

.complex-mortgage {
  padding-top: 35px; }
  @media only screen and (max-width: 812px) {
    .complex-mortgage {
      display: none; } }
  .complex-mortgage__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 30px;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
    will-change: transform, opacity;
    opacity: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform 0s ease .3s;
    transition: opacity .3s ease, -webkit-transform 0s ease .3s;
    transition: opacity .3s ease, transform 0s ease .3s;
    transition: opacity .3s ease, transform 0s ease .3s, -webkit-transform 0s ease .3s;
    pointer-events: none; }
    .complex-mortgage__list.active {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      opacity: 1;
      -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      pointer-events: all; }
  .complex-mortgage__title {
    margin-bottom: 30px;
    font-size: 24px; }
  .complex-mortgage__calc {
    margin-bottom: 38px; }
  .complex-mortgage__flat-title {
    padding-top: 48px; }
    @media only screen and (max-width: 812px) {
      .complex-mortgage__flat-title {
        display: none; } }
  .complex-mortgage__military-wrapper {
    display: none; }
    @media only screen and (max-width: 812px) {
      .complex-mortgage__military-wrapper {
        display: block; } }

.complex-flats {
  position: relative;
  width: 100%;
  margin-top: 29px;
  padding-bottom: 30px; }
  .complex-flats__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1; }
  .complex-flats.transparency:after {
    display: none; }
  .complex-flats__mobile-title {
    display: none;
    margin-bottom: 20px;
    font-size: 24px; }
    @media only screen and (max-width: 812px) {
      .complex-flats__mobile-title {
        display: block; } }

.complex-docs {
  padding: 34px 0 33px;
  width: 100%;
  background-color: #fafafa; }
  @media only screen and (max-width: 812px) {
    .complex-docs {
      margin-top: 24px;
      background-color: #fff;
      padding: 0 0 23px; } }
  @media only screen and (max-width: 812px) {
    .complex-docs__main-title {
      font-size: 24px; } }
  .complex-docs__slider {
    width: 100%; }
  .complex-docs__main-link, .complex-parking__main-link {
    position: relative;
    padding-right: 44px;
    font-weight: 900;
    font-size: 16px;
    color: #09A09B;
    text-decoration: none; }
    .complex-docs__main-link:hover:before, .complex-parking__main-link:hover:before {
      -webkit-transform: translate3d(4px, 0, 0);
              transform: translate3d(4px, 0, 0); }
    .complex-docs__main-link:hover:after, .complex-parking__main-link:hover:after {
      -webkit-transform: scaleX(1);
              transform: scaleX(1); }
    .complex-docs__main-link:after, .complex-parking__main-link:after {
      background-color: #09A09B; }
    .complex-docs__main-link:before, .complex-parking__main-link:before {
      content: '';
      position: absolute;
      top: -4px;
      right: 0;
      display: block;
      width: 27px;
      height: 27px;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      border: 1px solid #09A09B;
      border-radius: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 10px 17px;
      background-image: url("/static/images/arrow-right-green.a15b6eab3661.svg");
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
  .complex-docs__slide-show {
    position: relative; }
    @media only screen and (max-width: 812px) {
      .complex-docs__slide-show {
        margin-top: 28px; } }
  .complex-docs__slide {
    position: relative;
    width: 100%;
    max-width: 280px;
    outline: none; }
    .complex-docs__slide:hover .complex-docs__versions {
      opacity: 1;
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease;
      pointer-events: all; }
  .complex-docs__card {
    width: 100%;
    padding-right: 20px;
    margin-bottom: 6px;
    min-height: 149px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    text-decoration: none; }
    .complex-docs__card-text {
      width: 100%;
      font-size: 12px;
      max-width: 227px; }
    .complex-docs__card-user {
      margin-bottom: 7px; }
    .complex-docs__card:focus {
      outline: none; }
      .complex-docs__card:focus .complex-docs__card-title {
        color: #09A09B; }
    .complex-docs__card:hover .complex-docs__card-title {
      color: #09A09B; }
    .complex-docs__card:hover .complex-docs__card-icon {
      -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.13);
              box-shadow: 0 2px 7px rgba(0, 0, 0, 0.13); }
    .complex-docs__card-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 10px 0 15px;
      margin-left: 22px; }
    .complex-docs__card-icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 129px;
      width: 95px;
      border-radius: 3px;
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
      background-color: #fff;
      -webkit-transition: -webkit-box-shadow .3s ease;
      transition: -webkit-box-shadow .3s ease;
      transition: box-shadow .3s ease;
      transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
      font-size: 26px;
      color: #18a29b; }
    .complex-docs__card-title {
      max-width: 131px;
      font-weight: 500;
      font-size: 12px;
      max-height: 91px;
      overflow: hidden;
      line-height: 1.6;
      -webkit-transition: color .25s ease;
      transition: color .25s ease; }
    .complex-docs__card-file-description {
      margin-top: 15px;
      font-size: 13px;
      color: #18a29b; }
  .complex-docs__slider {
    padding-top: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #fafafa; }
    @media only screen and (max-width: 812px) {
      .complex-docs__slider {
        background-color: #fff; }
        .complex-docs__slider:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          height: 129px;
          width: 73px;
          background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0.4)));
          background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.4) 100%); } }
    .complex-docs__slider .slick-track,
    .complex-docs__slider .slick-list {
      background-color: #fafafa; }
      @media only screen and (max-width: 812px) {
        .complex-docs__slider .slick-track,
        .complex-docs__slider .slick-list {
          background-color: #fff; } }
  .complex-docs__controllers {
    position: absolute;
    top: 6px;
    right: 0; }
    @media only screen and (max-width: 812px) {
      .complex-docs__controllers {
        display: none; } }
  .complex-docs__mobile-arrow {
    display: none; }
    @media only screen and (max-width: 812px) {
      .complex-docs__mobile-arrow {
        display: block;
        position: absolute;
        top: 10px;
        right: 0;
        height: 129px;
        z-index: 5; } }
  .complex-docs__versions {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 20px;
    width: 280px;
    height: 100%;
    background-color: #fafafa;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    z-index: 2; }
    .complex-docs__versions-body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column;
      max-height: 138px;
      overflow-y: scroll; }
    .complex-docs__versions-link {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      color: #545454;
      font-size: 14px;
      margin-top: 10px;
      text-decoration: none; }
      .complex-docs__versions-link:hover .complex-docs__span-item {
        text-decoration: none; }
      .complex-docs__versions-link:first-of-type {
        margin-top: 14px; }
    .complex-docs__versions-title {
      font-size: 16px; }
  .complex-docs__span-item {
    min-width: 96px;
    padding-right: 10px;
    text-decoration: underline; }

.complex-parking {
  position: relative;
  background-color: #fafafa; }
  @media only screen and (max-width: 812px) {
    .complex-parking {
      background-color: #f6f6f6; } }
  .complex-parking:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #fff; }
    @media only screen and (max-width: 812px) {
      .complex-parking:after {
        display: none; } }
  .complex-parking__container {
    position: relative;
    padding-bottom: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1; }
    @media only screen and (max-width: 812px) {
      .complex-parking__container {
        padding-bottom: 0; } }
  .complex-parking__description {
    padding-top: 52px;
    padding-bottom: 51px;
    width: 100%;
    max-width: 630px; }
    @media only screen and (max-width: 812px) {
      .complex-parking__description {
        padding-top: 28px;
        padding-bottom: 0; } }
  .complex-parking__text {
    margin-top: 50px;
    margin-bottom: 44px;
    max-width: 564px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65; }
    @media only screen and (max-width: 812px) {
      .complex-parking__text {
        margin-top: 28px;
        font-size: 12px;
        margin-bottom: 41px; } }
  .complex-parking__features {
    margin-bottom: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .complex-parking__features {
        margin-bottom: 32px; } }
    .complex-parking__features-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      font-weight: bold;
      color: #000;
      margin-bottom: 30px;
      margin-right: 15px; }
      @media only screen and (max-width: 812px) {
        .complex-parking__features-item {
          margin-right: 28px; } }
      .complex-parking__features-item:nth-child(3n) {
        margin-right: 0; }
    .complex-parking__features-value {
      font-size: 60px;
      color: #09A09B;
      line-height: .8; }
    .complex-parking__features-title {
      font-size: 20px;
      max-width: 110px;
      margin-left: 7px; }
    .complex-parking__features-prefix {
      margin-right: 11px;
      font-size: 20px; }
  .complex-parking__illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 50%;
    padding-top: 50px;
    min-height: 520px; }
    @media only screen and (max-width: 812px) {
      .complex-parking__illustration {
        display: none; } }
    .complex-parking__illustration-image {
      max-width: 526px;
      max-height: 372px;
      margin-bottom: 15px;
      height: auto; }
  .complex-parking__main-link {
    max-width: 163px;
    display: block;
    margin: 0 auto; }
  @media only screen and (max-width: 812px) {
    .complex-parking__main-title {
      font-size: 24px; } }
  @media only screen and (max-width: 812px) {
    .complex-parking__request-btn {
      border-radius: 0;
      min-height: 56px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .complex-parking__request-btn {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }

.complex-list-slider {
  width: 100%; }
  .complex-list-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 201px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .complex-list-slider__content {
        display: none; } }
    .complex-list-slider__content .legend-big {
      height: 166px;
      z-index: 2; }
    .complex-list-slider__content-text {
      margin-left: 122px;
      padding-top: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: normal;
      color: #fff; }
    .complex-list-slider__content-item {
      margin-right: 80px; }
      .complex-list-slider__content-item:last-of-type {
        margin-right: 0; }
    .complex-list-slider__content-title {
      margin-bottom: 8px;
      font-size: 16px;
      color: #c0c3c3; }
    .complex-list-slider__content-value {
      font-size: 20px; }
  .complex-list-slider .slider-controller {
    opacity: .7; }
    @media only screen and (max-width: 812px) {
      .complex-list-slider .slider-controller {
        opacity: 1; } }
  .complex-list-slider__mobile-content {
    display: none;
    position: absolute;
    bottom: 41px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease; }
    @media only screen and (max-width: 812px) {
      .complex-list-slider__mobile-content {
        display: block; }
        .complex-list-slider__mobile-content.complex-detail {
          bottom: 14px; } }
  .complex-list-slider__mobile-title {
    font-size: 32px;
    color: #fff; }
  .complex-list-slider__mobile-subtitle {
    font-size: 13px; }
  .complex-list-slider .intro-slider__slide.slick-slide .complex-list-slider__mobile-content {
    opacity: 0; }
  .complex-list-slider .intro-slider__slide.slick-slide.slick-active .complex-list-slider__mobile-content {
    opacity: 1;
    -webkit-transition: opacity .4s ease .7s;
    transition: opacity .4s ease .7s; }

.complex-card {
  display: block;
  position: relative;
  background-color: #fff;
  text-decoration: none;
  color: #000; }
  .complex-card__more {
    display: none; }
  @media only screen and (max-width: 812px) {
    .complex-card__hidden {
      display: none; }
    .complex-card__more {
      display: block !important;
      width: 100%;
      height: 100%; } }
  .complex-card.saled .complex-card__btn {
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 51px; }
  .complex-card:hover .complex-card__image {
    background-color: #0baca2;
    -webkit-transition: background-color .8s ease;
    transition: background-color .8s ease; }
  .complex-card:hover .complex-card__emerge-object {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    pointer-events: all;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease; }
    .complex-card:hover .complex-card__emerge-object:nth-child(2) {
      -webkit-transition-delay: .05s;
              transition-delay: .05s; }
    .complex-card:hover .complex-card__emerge-object:nth-child(3) {
      -webkit-transition-delay: .1s;
              transition-delay: .1s; }
    .complex-card:hover .complex-card__emerge-object:nth-child(4) {
      -webkit-transition-delay: .15s;
              transition-delay: .15s; }
    .complex-card:hover .complex-card__emerge-object:nth-child(5) {
      -webkit-transition-delay: .2s;
              transition-delay: .2s; }
    .complex-card:hover .complex-card__emerge-object:nth-child(6) {
      -webkit-transition-delay: .25s;
              transition-delay: .25s; }
  .complex-card__header {
    position: relative;
    height: 236px;
    width: 100%;
    overflow: hidden; }
    @media only screen and (max-width: 812px) {
      .complex-card__header {
        height: 260px; } }
  .complex-card__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    will-change: background-color;
    background-blend-mode: multiply, normal;
    -webkit-transition: background-color .6s ease;
    transition: background-color .6s ease; }
  .complex-card__content {
    padding-top: 12px;
    padding-left: 20px;
    height: 110px;
    width: 100%; }
  .complex-card__footer {
    width: 100%;
    height: 40px; }
  .complex-card__title {
    margin-bottom: 8px;
    font-weight: 350;
    font-size: 22px;
    color: #000; }
  .complex-card__flat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .complex-card__flat-types {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .complex-card__flat-types-item {
        padding-bottom: 1px;
        padding-right: 1px;
        margin-right: 4px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 25px;
        height: 25px;
        font-weight: 700;
        font-size: 10px;
        border-radius: 100%;
        color: #545454;
        background-color: #fff;
        border: 1px solid #eaeaea;
        will-change: background-color;
        -webkit-transition: background-color .3s ease;
        transition: background-color .3s ease;
        text-decoration: none; }
        .complex-card__flat-types-item:hover {
          background-color: #fafafa; }
        .complex-card__flat-types-item:last-of-type {
          margin-right: 0; }
    .complex-card__flat object {
      display: block; }
    .complex-card__flat-count {
      display: block;
      margin-right: 18px;
      font-weight: 900;
      font-size: 14px;
      color: #0baca2;
      text-decoration: none;
      -webkit-transition: color .25s ease;
      transition: color .25s ease; }
      .complex-card__flat-count.disabled {
        pointer-events: none; }
      .complex-card__flat-count:hover {
        color: #020202; }
  .complex-card__features {
    height: 40px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea; }
    .complex-card__features-aside {
      height: 100%;
      border-right: 1px solid #eaeaea; }
      .complex-card__features-aside span {
        line-height: 40px; }
    .complex-card__features-title {
      margin-bottom: 7px;
      color: #a6a6a6;
      vertical-align: middle; }
    .complex-card__features-value {
      vertical-align: middle; }
  .complex-card__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 40px;
    border-radius: 0;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    will-change: background-color;
    -webkit-transition: background-color .3s ease, color .3s ease;
    transition: background-color .3s ease, color .3s ease; }
    .complex-card__btn.light-btn {
      color: #020202; }
    .complex-card__btn.green-btn {
      background-color: #0baca2; }
      .complex-card__btn.green-btn:hover, .complex-card__btn.green-btn:focus {
        background-color: #09A09B; }
    .complex-card__btn.dark-btn {
      background-color: #545454; }
      .complex-card__btn.dark-btn:hover, .complex-card__btn.dark-btn:focus {
        background-color: #434343; }
  .complex-card__emerge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .complex-card__emerge .complex-card__flat-types-item {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 14px;
      color: #09A09B;
      border: none; }
    .complex-card__emerge-content {
      padding-top: 21px;
      width: 100%; }
    .complex-card__emerge-object {
      display: block;
      margin-bottom: 9px;
      -webkit-transform: translate3d(110%, 0, 0);
              transform: translate3d(110%, 0, 0);
      -webkit-transition: -webkit-transform .5s ease;
      transition: -webkit-transform .5s ease;
      transition: transform .5s ease;
      transition: transform .5s ease, -webkit-transform .5s ease;
      pointer-events: none; }
    .complex-card__emerge-link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 0 0 21px;
      text-decoration: none;
      color: #fff;
      font-size: 12px;
      cursor: pointer; }
      .complex-card__emerge-link:hover .complex-card__flat-types-item {
        background-color: #bffffc; }
      .complex-card__emerge-link:hover .complex-card__emerge-arrow {
        background-color: rgba(191, 255, 252, 0.3);
        -webkit-transform: translate3d(3px, 0, 0);
                transform: translate3d(3px, 0, 0); }
    .complex-card__emerge-title {
      min-width: 100px;
      -webkit-transition: color .3s ease;
      transition: color .3s ease; }
      .complex-card__emerge-title.long-title {
        min-width: 114px; }
        @media only screen and (max-width: 812px) {
          .complex-card__emerge-title.long-title {
            min-width: 84px; } }
    .complex-card__emerge-arrow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 25px;
      height: 25px;
      border: 1px solid #fff;
      border-radius: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: auto;
      -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
      transition: background-color .3s ease, -webkit-transform .3s ease;
      transition: background-color .3s ease, transform .3s ease;
      transition: background-color .3s ease, transform .3s ease, -webkit-transform .3s ease;
      background-image: url("/static/images/icon-arrow-white-right-small.707478d42aa0.svg");
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }

.complex-infra {
  margin-top: 34px; }
  @media only screen and (max-width: 812px) {
    .complex-infra {
      margin-top: 0; } }
  .complex-infra__main-title {
    margin-bottom: 41px; }
    @media only screen and (max-width: 812px) {
      .complex-infra__main-title {
        display: none; } }
  .complex-infra__main-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); }
    @media only screen and (max-width: 812px) {
      .complex-infra__main-container {
        -webkit-box-shadow: none;
                box-shadow: none; } }
    @media only screen and (max-width: 812px) {
      .complex-infra__main-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .complex-infra__map {
    position: relative;
    width: calc(100% - 297px);
    min-height: 549px;
    background-color: #ccc;
    z-index: 0; }
    @media only screen and (max-width: 812px) {
      .complex-infra__map {
        min-height: 197px;
        height: 197px;
        width: 100%; } }
  .complex-infra__marker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
    border-radius: 50%; }
  .complex-infra__marker-image.complex-infra__marker-image.complex-infra__marker-image {
    /* stylelint-disable */
    max-width: 28px !important;
    /* stylelint-enable */
    max-height: 28px; }
  .complex-infra__menu {
    position: relative;
    width: 297px;
    background-color: #f4f4f4; }
    @media only screen and (max-width: 812px) {
      .complex-infra__menu {
        width: 100%; } }
    .complex-infra__menu-content {
      position: relative;
      padding: 0 32px 0 41px;
      height: .1px;
      -webkit-transition: height .3s ease, margin .3s ease;
      transition: height .3s ease, margin .3s ease;
      pointer-events: none;
      background-color: #f4f4f4;
      -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.05);
              box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-content {
          -webkit-box-shadow: none;
                  box-shadow: none; } }
      .complex-infra__menu-content:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 26px;
        width: 100%;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.55%, rgba(244, 244, 244, 0)), color-stop(98.34%, #f4f4f4));
        background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0.55%, #f4f4f4 98.34%);
        pointer-events: none; }
    .complex-infra__menu-scroll {
      height: 100%; }
    .complex-infra__menu-list {
      position: relative;
      height: 100%;
      background-color: #fff;
      padding-top: 45px;
      list-style: none; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-list {
          padding-top: 0;
          background-color: #f6f6f6; }
          .complex-infra__menu-list:after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 82px;
            background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
            background: linear-gradient(-180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 4; } }
    .complex-infra__menu-parent-ico {
      width: 54px;
      height: 54px; }
    .complex-infra__menu-item {
      cursor: pointer;
      outline: none; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-item {
          max-width: 246px; } }
      .complex-infra__menu-item:last-of-type .complex-infra__menu-content {
        margin-top: 10px; }
        @media only screen and (max-width: 812px) {
          .complex-infra__menu-item:last-of-type .complex-infra__menu-content {
            margin-top: 0;
            display: none; } }
      .complex-infra__menu-item .mCSB_draggerContainer {
        opacity: 0;
        -webkit-transition: opacity .7s ease .3s;
        transition: opacity .7s ease .3s; }
      .complex-infra__menu-item.active-tab {
        cursor: auto; }
        .complex-infra__menu-item.active-tab:last-of-type .complex-infra__menu-content {
          margin-bottom: 0; }
          @media only screen and (max-width: 812px) {
            .complex-infra__menu-item.active-tab:last-of-type .complex-infra__menu-content {
              display: none; } }
        .complex-infra__menu-item.active-tab .complex-infra__menu-ico {
          background-color: #0baca2; }
          .complex-infra__menu-item.active-tab .complex-infra__menu-ico svg,
          .complex-infra__menu-item.active-tab .complex-infra__menu-ico g {
            fill: #fff; }
        .complex-infra__menu-item.active-tab .complex-infra__menu-arrow {
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg); }
        .complex-infra__menu-item.active-tab .complex-infra__menu-content {
          margin-top: 14px;
          margin-bottom: 10px;
          height: 202px;
          pointer-events: all; }
          @media only screen and (max-width: 812px) {
            .complex-infra__menu-item.active-tab .complex-infra__menu-content {
              display: none; } }
        .complex-infra__menu-item.active-tab .mCSB_draggerContainer {
          opacity: 1; }
      .complex-infra__menu-item:hover .complex-infra__menu-ico {
        background-color: rgba(11, 172, 162, 0.3); }
      .complex-infra__menu-item:hover.active-tab .complex-infra__menu-ico {
        background-color: #0baca2; }
      .complex-infra__menu-item-title {
        margin-right: 10px;
        width: 153px;
        font-weight: 500;
        font-size: 13px;
        color: #000;
        -webkit-transition: color .3s ease;
        transition: color .3s ease; }
    .complex-infra__menu-element {
      position: relative;
      padding: 10px 37px 10px 26px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-element {
          padding: 10px 10px 10px 15px; } }
    .complex-infra__menu-ico {
      position: relative;
      margin-right: 13px;
      width: 52px;
      height: 52px;
      border-radius: 100%;
      background-color: #f0f0f0;
      will-change: background-color;
      -webkit-transition: background-color .3s ease;
      transition: background-color .3s ease; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-ico {
          background-color: #fff; } }
      .complex-infra__menu-ico svg {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        max-width: 22px;
        height: auto;
        fill: #000;
        -webkit-transition: fill .2s ease;
        transition: fill .2s ease; }
    .complex-infra__menu-arrow {
      width: 16px;
      height: 9px;
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      background-image: url("/static/images/arrow-bottom-green.31ddeaf65051.svg");
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
      @media only screen and (max-width: 812px) {
        .complex-infra__menu-arrow {
          display: none; } }
    .complex-infra__menu-subitem {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 11px 0;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer; }
      .complex-infra__menu-subitem:first-of-type {
        padding: 0 0 11px; }
      .complex-infra__menu-subitem-text {
        max-width: 185px;
        padding-left: 5px;
        padding-right: 10px;
        font-weight: 500;
        font-size: 13px; }
    .complex-infra__menu-child-ico {
      width: 28px;
      margin-right: 10px; }
      .complex-infra__menu-child-ico-image {
        display: block;
        margin: 0 auto;
        min-width: 23px;
        max-width: 30px;
        height: auto; }
  .complex-infra .leaflet-marker-icon.leaflet-interactive > div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 40px;
    background-color: #09A09B;
    border: 4px solid white;
    color: white;
    font-size: 22px; }
  .complex-infra__slider-arrow {
    display: none;
    position: absolute;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    top: 50%; }
    .complex-infra__slider-arrow.slick-arrow {
      pointer-events: all;
      opacity: 1; }
    .complex-infra__slider-arrow.right-arrow {
      right: 10px; }
      .complex-infra__slider-arrow.right-arrow:hover {
        -webkit-transform: translate3d(3px, -50%, 0);
                transform: translate3d(3px, -50%, 0); }
    @media only screen and (max-width: 812px) {
      .complex-infra__slider-arrow {
        display: block; } }

#infraContainer .mCSB_dragger_bar {
  background-color: #09A09B; }

#infraContainer .mCustomScrollBox {
  overflow: visible;
  margin-top: 19px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  height: calc(100% - 40px); }

#infraContainer .mCSB_dragger_bar {
  width: 4px; }

#infraContainer .mCSB_draggerRail {
  background-color: #fff; }

#infraContainer .mCSB_scrollTools {
  opacity: 1; }

.complex-list-finished {
  position: relative;
  min-height: 262px;
  background-color: #fff;
  z-index: 2; }
  .complex-list-finished__container {
    position: absolute;
    top: -51px;
    left: 0;
    right: 0; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__container {
        position: relative;
        top: 0; } }
  .complex-list-finished__body {
    width: 100%;
    padding: 0;
    height: 362px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border-radius: 4px; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__body {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        height: auto;
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .complex-list-finished__content {
    position: relative;
    background-color: #fff;
    width: calc(100% - 406px);
    height: 100%; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__content {
        min-height: 332px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .complex-list-finished__content {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    .complex-list-finished__content .common-slider {
      position: absolute; }
      @media only screen and (max-width: 812px) {
        .complex-list-finished__content .common-slider .common-slider__slide {
          opacity: 0;
          -webkit-transition: opacity .4s ease;
          transition: opacity .4s ease; }
          .complex-list-finished__content .common-slider .common-slider__slide.slick-active {
            opacity: 1; } }
      .complex-list-finished__content .common-slider .common-slider__slide.slick-cloned {
        opacity: 0; }
      .complex-list-finished__content .common-slider .common-slider__slide.left-slide .complex-list-finished__trapezium-top, .complex-list-finished__content .common-slider .common-slider__slide.left-slide .complex-list-finished__trapezium-bottom, .complex-list-finished__content .common-slider .common-slider__slide.left-slide .complex-list-finished__image {
        -webkit-transform: translate3d(-150px, 0, 0);
                transform: translate3d(-150px, 0, 0); }
      .complex-list-finished__content .common-slider .common-slider__slide.right-slide .complex-list-finished__trapezium-top, .complex-list-finished__content .common-slider .common-slider__slide.right-slide .complex-list-finished__trapezium-bottom, .complex-list-finished__content .common-slider .common-slider__slide.right-slide .complex-list-finished__image {
        -webkit-transform: translate3d(150px, 0, 0);
                transform: translate3d(150px, 0, 0); }
      .complex-list-finished__content .common-slider .common-slider__slide.slick-active .complex-list-finished__slide-content {
        opacity: 1;
        -webkit-transition: opacity 1s ease .5s;
        transition: opacity 1s ease .5s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide .complex-list-finished__trapezium-top,
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide .complex-list-finished__trapezium-bottom,
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide .complex-list-finished__image, .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide .complex-list-finished__trapezium-top,
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide .complex-list-finished__trapezium-bottom,
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide .complex-list-finished__image {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-transform 1s ease;
        transition: -webkit-transform 1s ease;
        transition: transform 1s ease;
        transition: transform 1s ease, -webkit-transform 1s ease; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide.active .complex-list-finished__trapezium-top {
        -webkit-transition-delay: 0s;
                transition-delay: 0s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide.active .complex-list-finished__trapezium-bottom {
        -webkit-transition-delay: .2s;
                transition-delay: .2s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.left-slide.active .complex-list-finished__image {
        -webkit-transition-delay: .1s;
                transition-delay: .1s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide.active .complex-list-finished__trapezium-top {
        -webkit-transition-delay: 0s;
                transition-delay: 0s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide.active .complex-list-finished__trapezium-bottom {
        -webkit-transition-delay: .2s;
                transition-delay: .2s; }
      .complex-list-finished__content .common-slider .common-slider__slide.parallax.right-slide.active .complex-list-finished__image {
        -webkit-transition-delay: .1s;
                transition-delay: .1s; }
  .complex-list-finished__map {
    width: 406px;
    height: 100%;
    min-height: 362px;
    background-color: #ccc; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__map {
        height: 124px;
        min-height: 124px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .complex-list-finished__map {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    .complex-list-finished__map .leaflet-control-zoom {
      opacity: 0;
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease; }
    .complex-list-finished__map:hover .leaflet-control-zoom {
      opacity: 1;
      -webkit-transition: opacity .5s ease;
      transition: opacity .5s ease; }
  .complex-list-finished__slide-content {
    padding-left: 37px; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__slide-content {
        padding-left: 16px; } }
  .complex-list-finished__main-title {
    position: absolute;
    top: 38px;
    left: 37px;
    max-width: 300px;
    font-size: 30px;
    z-index: 2; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__main-title {
        font-size: 24px;
        max-width: 194px;
        top: 28px;
        left: 16px;
        pointer-events: none; } }
  .complex-list-finished__title {
    margin-bottom: 30px;
    font-size: 22px;
    color: #09A09B; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__title {
        font-size: 18px;
        max-width: 190px; } }
  .complex-list-finished__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .complex-list-finished__item {
    width: 149px;
    padding-right: 25px;
    font-size: 13px; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__item {
        margin-bottom: 20px; } }
    .complex-list-finished__item-title {
      margin-bottom: 4px;
      color: #a6a6a6; }
  .complex-list-finished__trapezium-top, .complex-list-finished__trapezium-bottom {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    z-index: 0; }
  .complex-list-finished__trapezium-top {
    top: 25px;
    right: 27px;
    width: 289px;
    height: 97px;
    background-image: url("/static/images/trapezium-green.7f3c0318fe4a.svg"); }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__trapezium-top {
        top: auto;
        bottom: 150px;
        right: -49px;
        width: 194px;
        height: 62px; } }
  .complex-list-finished__trapezium-bottom {
    bottom: 41px;
    right: 277px;
    width: 230px;
    height: 76px;
    background-image: url("/static/images/trapezium-dark.7801e54102a7.svg"); }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__trapezium-bottom {
        bottom: 29px;
        right: 47px;
        width: 190px;
        height: 56px; } }
  .complex-list-finished__image {
    position: absolute;
    bottom: 0;
    right: 85px;
    width: 100%;
    max-width: 349px;
    height: auto;
    z-index: 1; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__image {
        right: -37px;
        max-width: 229px;
        max-height: 230px; } }
  .complex-list-finished__controller {
    position: absolute;
    bottom: 42px;
    left: calc(37px - 10px); }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__controller {
        top: 68px;
        right: 12px;
        left: auto;
        bottom: auto; } }
  .complex-list-finished__slide {
    position: relative;
    height: 100%;
    padding-top: 155px; }
    @media only screen and (max-width: 812px) {
      .complex-list-finished__slide {
        padding-top: 112px; } }
    .complex-list-finished__slide-content {
      opacity: 0;
      -webkit-transition: opacity .5s ease;
      transition: opacity .5s ease; }

.complex-short-info {
  padding: 37px 0 55px; }
  @media only screen and (max-width: 812px) {
    .complex-short-info {
      padding: 25px 0 55px;
      background-color: #f6f6f6; } }
  .complex-short-info__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .complex-short-info__text {
    width: 100%;
    max-width: 640px;
    font-size: 15px; }
  .complex-short-info__description {
    margin-top: 16px;
    line-height: 1.9; }
    @media only screen and (max-width: 812px) {
      .complex-short-info__description {
        font-size: 12px; } }
  .complex-short-info__advantages {
    margin-top: 22px;
    margin-left: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 660px; }
    @media only screen and (max-width: 812px) {
      .complex-short-info__advantages {
        position: relative;
        padding-left: 16px;
        margin: 0; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .complex-short-info__advantages {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    @media only screen and (max-width: 812px) {
        .complex-short-info__advantages:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          height: 100%;
          background: -webkit-gradient(linear, right top, left top, from(#f6f6f6), to(rgba(246, 246, 246, 0.4)));
          background: linear-gradient(to left, #f6f6f6 0%, rgba(246, 246, 246, 0.4) 100%);
          width: 80px; } }
  .complex-short-info__item {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 287px;
    outline: none; }
    .complex-short-info__item-wrapper {
      outline: none; }
    @media only screen and (max-width: 812px) {
      .complex-short-info__item {
        min-width: 0;
        max-width: 287px;
        margin-right: 20px; } }
    @media only screen and (max-width: 812px) {
      .complex-short-info__item:first-of-type {
        margin-top: 25px; } }
    .complex-short-info__item-title {
      max-width: 170px;
      margin-left: 10px;
      font-size: 20px;
      color: #020202; }
    .complex-short-info__item-logo {
      width: 78px;
      height: 78px;
      border-radius: 100%;
      background-color: #09A09B;
      background-repeat: no-repeat;
      background-position: center; }
      .complex-short-info__item-logo.ecology {
        background-image: url("/static/images/ecology-icon.6dcf64f141d2.svg"); }
      .complex-short-info__item-logo.infra {
        background-image: url("/static/images/compass-icon.be91a1ce246c.svg"); }
      .complex-short-info__item-logo.low-rise {
        background-image: url("/static/images/flag-icon.54e89bcc4d61.svg"); }
      .complex-short-info__item-logo.no-car {
        background-image: url("/static/images/car-icon.865cdcc3cafa.svg"); }
  @media only screen and (max-width: 812px) {
    .complex-short-info__main-title {
      font-size: 24px; } }
  .complex-short-info__controller {
    display: none; }
    @media only screen and (max-width: 812px) {
      .complex-short-info__controller {
        margin-top: 15px;
        display: block;
        width: 100%; }
        .complex-short-info__controller .slider-controller__container {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }

.complex-advantages__slide-show {
  position: relative;
  height: 484px; }
  @media only screen and (max-width: 812px) {
    .complex-advantages__slide-show {
      height: 290px; } }

.complex-advantages .common-slider__slide {
  position: relative;
  background-color: #fff; }
  .complex-advantages .common-slider__slide.slick-slide {
    background-color: #09A09B; }
    .complex-advantages .common-slider__slide.slick-slide:after {
      content: '';
      display: block;
      position: absolute;
      height: 554px;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      opacity: .8;
      background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(97.79%, rgba(0, 0, 0, 0)));
      background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 97.79%);
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
      @media only screen and (max-width: 812px) {
        .complex-advantages .common-slider__slide.slick-slide:after {
          height: 290px; } }
  .complex-advantages .common-slider__slide.active.slick-active .complex-advantages__text, .complex-advantages .common-slider__slide.active.slick-active .complex-advantages__title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition-duration: 1s, 1.2s;
            transition-duration: 1s, 1.2s; }
  .complex-advantages .common-slider__slide.active.slick-active .complex-advantages__title {
    -webkit-transition-delay: 0;
            transition-delay: 0; }
  .complex-advantages .common-slider__slide.active.slick-active .complex-advantages__text {
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms; }

.complex-advantages__slider-controller {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  width: 100%; }
  @media only screen and (max-width: 812px) {
    .complex-advantages__slider-controller {
      bottom: 14px; } }
  @media only screen and (max-width: 812px) {
    .complex-advantages__slider-controller .slider-controller__container {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.complex-advantages__content {
  position: absolute;
  top: calc(100% - 148px);
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 2; }
  @media only screen and (max-width: 812px) {
    .complex-advantages__content {
      top: calc(100% - 54px); } }

.complex-advantages__title {
  color: #fff;
  max-width: 654px;
  font-size: 38px;
  -webkit-transition: opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  -webkit-transform: translate3d(0, 40px, 0);
          transform: translate3d(0, 40px, 0);
  opacity: 0; }
  @media only screen and (max-width: 812px) {
    .complex-advantages__title {
      font-size: 24px; } }

.complex-advantages__text {
  margin-top: 22px;
  max-width: 550px;
  font-size: 18px;
  line-height: 1.6;
  -webkit-transition: opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), opacity 0.4s cubic-bezier(0.37, 0.01, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.37, 0.01, 0, 0.98);
  -webkit-transform: translate3d(0, 40px, 0);
          transform: translate3d(0, 40px, 0);
  opacity: 0; }
  @media only screen and (max-width: 812px) {
    .complex-advantages__text {
      font-size: 12px; } }

.parking-card {
  padding-top: 50px; }
  .parking-card__title {
    margin: 0 auto;
    max-width: 146px;
    font-size: 23px;
    color: #000;
    text-align: center; }
  .parking-card__image {
    display: block;
    margin: 23px auto 50px;
    width: 100%;
    max-width: 237px; }
  .parking-card__button {
    margin: 0 auto; }
  .parking-card__button-wrap {
    display: block;
    text-align: center; }

.complex-list-main {
  padding-top: 50px;
  margin-bottom: 100px; }
  @media only screen and (max-width: 812px) {
    .complex-list-main {
      padding-top: 20px; } }
  @media only screen and (max-width: 812px) {
    .complex-list-main {
      margin-bottom: 10px; } }
  .complex-list-main__title {
    margin-bottom: 32px;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .complex-list-main__title {
        margin-top: 12px;
        font-size: 24px; } }
  @media only screen and (max-width: 812px) {
    .complex-list-main__finished.common-link {
      display: none; } }

.complex-card-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1em; }
  @media only screen and (max-width: 812px) {
    .complex-card-list {
      margin-bottom: 30px;
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 750px) {
    .complex-card-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .complex-card-list .full {
    grid-column-start: 1;
    grid-column-end: 5; }
    @media only screen and (max-width: 812px) {
      .complex-card-list .full {
        grid-column-end: 3; } }
  @media only screen and (max-width: 812px) {
    .complex-card-list .complex-card {
      margin-right: 0;
      outline: none;
      width: 100%; } }
  .complex-card-list .slider-controller__container {
    margin-top: -6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .complex-card-list__buttons {
    display: none; }
    @media only screen and (max-width: 812px) {
      .complex-card-list__buttons {
        display: block; } }

.slickslider-grid {
  width: 100%;
  grid-column: span 4; }
  @media only screen and (max-width: 812px) {
    .slickslider-grid {
      grid-column: span 2; } }
  .slickslider-grid img {
    width: 100%; }

.complex-visual {
  width: 100%; }
  .complex-visual__container {
    position: relative;
    width: 100%;
    z-index: 0; }
  .complex-visual__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3; }
    @media only screen and (max-width: 812px) {
      .complex-visual__content {
        overflow: hidden; } }
  .complex-visual__image {
    width: 100%;
    height: auto;
    display: block; }
  .complex-visual__svg {
    width: 100%; }
    .complex-visual__svg-group {
      cursor: pointer;
      fill: #09A09B;
      opacity: .7;
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      .complex-visual__svg-group:hover {
        opacity: .9; }
  .complex-visual__shield {
    position: absolute;
    display: block;
    width: 111px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    text-align: center;
    background-color: #0baca2;
    color: #fff;
    border-radius: 40px;
    pointer-events: none;
    text-decoration: none; }
    @media only screen and (max-width: 812px) {
      .complex-visual__shield {
        width: 89px;
        height: 27px;
        line-height: 28px;
        font-size: 11px;
        -webkit-transform: translate(-29px, -27px);
                transform: translate(-29px, -27px);
        pointer-events: all; } }
  .complex-visual__tooltip {
    position: absolute;
    width: 200px;
    top: 0;
    left: 0;
    padding: 14px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    transition: opacity 0.2s ease, -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    transition: transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 0.2s ease;
    transition: transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 0.2s ease, -webkit-transform 0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    color: #545454;
    font-size: 16px;
    border-radius: 6px;
    opacity: 0;
    z-index: 10;
    pointer-events: none; }
    .complex-visual__tooltip.active {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
      transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      opacity: 1; }
      .complex-visual__tooltip.active .complex-visual__tooltip-row {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        -webkit-transition: opacity 0.2s ease 0.1s, -webkit-transform 0.25s cubic-bezier(0.37, 0.01, 0, 0.98) 0.1s;
        transition: opacity 0.2s ease 0.1s, -webkit-transform 0.25s cubic-bezier(0.37, 0.01, 0, 0.98) 0.1s;
        transition: transform 0.25s cubic-bezier(0.37, 0.01, 0, 0.98) 0.1s, opacity 0.2s ease 0.1s;
        transition: transform 0.25s cubic-bezier(0.37, 0.01, 0, 0.98) 0.1s, opacity 0.2s ease 0.1s, -webkit-transform 0.25s cubic-bezier(0.37, 0.01, 0, 0.98) 0.1s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(1) {
          -webkit-transition-delay: .05s;
                  transition-delay: .05s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(2) {
          -webkit-transition-delay: .1s;
                  transition-delay: .1s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(3) {
          -webkit-transition-delay: .15s;
                  transition-delay: .15s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(4) {
          -webkit-transition-delay: .2s;
                  transition-delay: .2s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(5) {
          -webkit-transition-delay: .25s;
                  transition-delay: .25s; }
        .complex-visual__tooltip.active .complex-visual__tooltip-row:nth-child(6) {
          -webkit-transition-delay: .3s;
                  transition-delay: .3s; }
    .complex-visual__tooltip-subtitle {
      margin-top: 4px;
      font-size: 12px;
      color: #a6a6a6; }
    .complex-visual__tooltip-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 12px;
      margin-bottom: 5px;
      -webkit-transform: translate3d(0, 20px, 0);
              transform: translate3d(0, 20px, 0);
      -webkit-transition: opacity .2s ease, -webkit-transform  0s ease .2s;
      transition: opacity .2s ease, -webkit-transform  0s ease .2s;
      transition: transform  0s ease .2s, opacity .2s ease;
      transition: transform  0s ease .2s, opacity .2s ease, -webkit-transform  0s ease .2s;
      opacity: 0; }
      .complex-visual__tooltip-row:last-of-type {
        margin-bottom: 0; }
    .complex-visual__tooltip-header {
      margin-bottom: 17px; }
    .complex-visual__tooltip-room {
      width: 22px;
      height: 22px;
      margin-right: 10px;
      text-align: center;
      line-height: 22px;
      border-radius: 100%;
      background-color: #bffffc; }
      .complex-visual__tooltip-room.room1 {
        background-color: #e1ffdb; }
      .complex-visual__tooltip-room.room2 {
        background-color: #ebffb5; }
      .complex-visual__tooltip-room.room3 {
        background-color: #f1d8ff; }
      .complex-visual__tooltip-room.room4 {
        background-color: #ffd0d0; }
      .complex-visual__tooltip-room.room5 {
        background-color: #ffe0f8; }

.complex-media {
  padding-top: 20px;
  padding-bottom: 20px; }
  .complex-media__body {
    position: relative;
    width: 100%;
    min-height: 372px; }
  .complex-media__tabs {
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 812px) {
      .complex-media__tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .complex-media__tab {
    position: relative;
    margin-right: 46px;
    font-family: normal;
    padding-left: 58px;
    color: #0baca2;
    font-size: 24px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .complex-media__tab {
        margin-right: 0px;
        margin-bottom: 10px;
        font-size: 20px; } }
    .complex-media__tab.video:after {
      background-image: url("/static/images/ic-video-black.d6cb2b61aa6c.svg"); }
    .complex-media__tab.video:before {
      background-image: url("/static/images/ic-video-green.7f1eb9fdd924.svg"); }
    .complex-media__tab.camera {
      padding-left: 34px; }
      .complex-media__tab.camera:after {
        background-image: url("/static/images/ic-camera-black.cb3f20042d11.svg"); }
      .complex-media__tab.camera:before {
        background-image: url("/static/images/ic-camera-green.e081e77f05c0.svg"); }
    .complex-media__tab.panorama:after {
      background-image: url("/static/images/ic-panorama-black.c3a78cedf566.svg"); }
    .complex-media__tab.panorama:before {
      background-image: url("/static/images/ic-panorama-green.73c15450f249.svg"); }
    .complex-media__tab:after, .complex-media__tab:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 44px;
      height: 100%;
      background-repeat: no-repeat;
      background-position: left center;
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease; }
    .complex-media__tab:after {
      opacity: 0; }
    .complex-media__tab:before {
      opacity: 1; }
    .complex-media__tab:last-of-type {
      margin-right: 0; }
    .complex-media__tab span:after {
      margin-top: -3px;
      background-color: #0baca2;
      height: 2px; }
    .complex-media__tab.active {
      color: #020202;
      pointer-events: none; }
      .complex-media__tab.active:after {
        opacity: 1; }
      .complex-media__tab.active:before {
        opacity: 0; }
      .complex-media__tab.active span:after {
        -webkit-transform: scaleX(0);
                transform: scaleX(0); }
  .complex-media__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(-45deg, #0baca2, #09A09B, #545454);
    background-size: 400% 400%;
    -webkit-animation: Gradient 4s ease infinite;
            animation: Gradient 4s ease infinite; }
    .complex-media__container.active {
      opacity: 1;
      z-index: 1;
      pointer-events: all; }
  .complex-media__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover; }
    .complex-media__iframe.video {
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity .25s ease;
      transition: opacity .25s ease; }
      .complex-media__iframe.video + .complex-media__button {
        opacity: 0; }
      .complex-media__iframe.video.visible {
        pointer-events: all;
        opacity: 1; }
        .complex-media__iframe.video.visible + .complex-media__button {
          opacity: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          pointer-events: all; }
        .complex-media__iframe.video.visible.active + .complex-media__button {
          display: none; }
  .complex-media__button {
    position: absolute;
    margin-top: 30px;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    -webkit-transition: opacity .9s ease;
    transition: opacity .9s ease;
    cursor: pointer;
    pointer-events: none; }
    .complex-media__button:hover .complex-media__button-icon {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
    .complex-media__button-icon {
      margin-bottom: 15px;
      width: 76px;
      height: 76px;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("/static/images/ic-play.b2f3bad45aff.svg");
      -webkit-transition: -webkit-transform .25s ease;
      transition: -webkit-transform .25s ease;
      transition: transform .25s ease;
      transition: transform .25s ease, -webkit-transform .25s ease;
      will-change: tranform; }
    .complex-media__button-title {
      font-weight: 700;
      color: #fff;
      font-size: 18px;
      -webkit-transition: color .3s ease;
      transition: color .3s ease; }
  .complex-media__video-buttons {
    position: absolute;
    left: 31px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .complex-media__video-btn {
    padding: 11px 26px;
    min-height: 20px;
    margin-right: 30px;
    font-size: 13px;
    font-weight: 500;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease; }
    @media only screen and (max-width: 812px) {
      .complex-media__video-btn {
        padding: 8px 16px;
        margin-right: 15px;
        font-size: 11px; } }
    .complex-media__video-btn:hover, .complex-media__video-btn.active {
      background-color: #0baca2; }
    .complex-media__video-btn:focus {
      opacity: 1; }
    .complex-media__video-btn:hover {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .complex-media__video-btn:last-of-type {
      margin-right: 0; }

@-webkit-keyframes Gradient {
  0% {
    background-position: 0 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0 50%; } }

@keyframes Gradient {
  0% {
    background-position: 0 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0 50%; } }

.flat-types {
  width: 100%; }
  .flat-types__wrap {
    position: relative; }
    @media only screen and (max-width: 812px) {
      .flat-types__wrap {
        padding: 0 0 0 16px; } }
  .flat-types__container {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 21px;
    min-height: 150px;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 4px; }
    @media only screen and (max-width: 812px) {
      .flat-types__container {
        padding: 0;
        -webkit-box-shadow: none;
                box-shadow: none; } }
    .flat-types__container:after, .flat-types__container:before {
      content: '';
      display: block;
      height: 100%;
      position: absolute;
      top: 0;
      pointer-events: none;
      opacity: 0;
      z-index: 1; }
    .flat-types__container:after {
      right: 0;
      width: 132px;
      background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0.4)));
      background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.4) 100%); }
    .flat-types__container:before {
      display: none;
      left: 0;
      width: 72px;
      background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0.4)));
      background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
      pointer-events: none;
      opacity: 0; }
    .flat-types__container.slick-initialized:after, .flat-types__container.slick-initialized:before {
      opacity: 1; }
  .flat-types__arrow {
    position: absolute;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    top: 50%; }
    .flat-types__arrow.slick-arrow {
      pointer-events: all;
      opacity: 1; }
    .flat-types__arrow.left-arrow {
      display: none;
      opacity: 0;
      visibility: hidden; }
      .flat-types__arrow.left-arrow:hover {
        -webkit-transform: translate3d(-3px, -50%, 0);
                transform: translate3d(-3px, -50%, 0); }
    .flat-types__arrow.right-arrow {
      right: 40px; }
      @media only screen and (max-width: 812px) {
        .flat-types__arrow.right-arrow {
          right: 0;
          background-position: center; } }
      .flat-types__arrow.right-arrow:hover {
        -webkit-transform: translate3d(3px, -50%, 0);
                transform: translate3d(3px, -50%, 0); }

.flat-types-card {
  position: relative;
  width: 345px;
  height: 110px;
  padding-right: 20px;
  color: #000;
  text-decoration: none;
  outline: none; }
  @media only screen and (max-width: 812px) {
    .flat-types-card {
      width: 100%;
      max-width: 345px;
      padding-right: 10px; } }
  .flat-types-card:hover .flat-types-card__title {
    color: #0baca2; }
  .flat-types-card__container {
    padding-top: 17px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .flat-types-card__title {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
  .flat-types-card__image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #09A09B; }
    .flat-types-card__image.studio:after {
      background-image: url("/static/images/studio.6031014a5ce2.png"); }
    .flat-types-card__image.flat1:after {
      background-image: url("/static/images/1room.f3fd59d167cd.png"); }
    .flat-types-card__image.flat2:after {
      background-image: url("/static/images/2room.eda257dede73.png"); }
    .flat-types-card__image.flat3:after {
      background-image: url("/static/images/3room.1f4982964531.png"); }
    .flat-types-card__image.flat4:after {
      top: -13px;
      background-image: url("/static/images/4room.6dbbe76812db.png"); }
    .flat-types-card__image.flat5:after {
      background-image: url("/static/images/5room.5c8706aa41c0.png"); }
    .flat-types-card__image:after {
      content: '';
      display: block;
      position: absolute;
      top: -26px;
      left: 50%;
      right: 0;
      width: 69px;
      height: 119px;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      background-size: 100% auto;
      background-position: center;
      background-repeat: no-repeat; }
  .flat-types-card__content {
    margin-left: 12px; }
  .flat-types-card__description {
    margin-top: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .flat-types-card__feature {
    margin-left: 23px;
    font-size: 12px; }
    .flat-types-card__feature:first-of-type {
      margin-left: 0; }
    .flat-types-card__feature-title {
      margin-bottom: 6px;
      color: #a6a6a6; }

.flat-card, .parking-card, .mortgage-buy__section, .commercial-object {
  position: relative;
  padding-top: 35px;
  display: block;
  margin-right: 24px;
  margin-bottom: 20px;
  width: 322px;
  height: 470px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  color: #000;
  will-change: box-shadow, transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
  transition: -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
  transition: box-shadow .3s ease, transform .3s ease;
  transition: box-shadow .3s ease, transform .3s ease, -webkit-box-shadow .3s ease, -webkit-transform .3s ease; }
  .flat-card:nth-child(4n), .parking-card:nth-child(4n), .mortgage-buy__section:nth-child(4n), .commercial-object:nth-child(4n) {
    margin-right: 0; }
  @media only screen and (max-width: 812px) {
    .flat-card, .parking-card, .mortgage-buy__section, .commercial-object {
      margin-right: 0;
      width: 100%; } }
  .flat-card:hover, .parking-card:hover, .mortgage-buy__section:hover, .commercial-object:hover {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0); }
  .flat-card__id {
    position: absolute;
    right: 23px;
    top: 21px; }
  .flat-card__favorites {
    position: absolute;
    left: 23px;
    top: 14px;
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer; }
    .flat-card__favorites > * {
      pointer-events: none; }
    .flat-card__favorites .icon-heart {
      margin-right: 5px; }
    .flat-card__favorites:hover .flat-card__options-title {
      color: #09A09B; }
    .flat-card__favorites.active .icon-heart:before {
      opacity: 1; }
    .flat-card__favorites.active .icon-heart:after {
      opacity: 0; }
    .flat-card__favorites.active .flat-card__options-title {
      color: #09A09B; }
  .flat-card__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 215px; }
    .flat-card__footer-top, .flat-card__footer-bottom {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .flat-card__footer-top {
      border-top: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; }
  .flat-card__title, .flat-card__footer-bottom {
    text-align: center;
    padding: 10px; }
  .flat-card__section-big, .flat-card__section-middle, .flat-card__section-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .flat-card__section-big {
    padding-left: 22px;
    width: calc(100% - 138px); }
  .flat-card__section-middle {
    padding-left: 20px;
    width: 138px;
    height: 100%;
    border-right: 1px solid #e4e4e4; }
    .flat-card__section-middle:last-of-type {
      border: none; }
  .flat-card__section-small {
    padding-left: 22px;
    width: calc((322px - 138px ) / 2);
    border-right: 1px solid #e4e4e4; }
    .flat-card__section-small:last-of-type {
      border-color: transparent; }
  .flat-card__options {
    padding-top: 10px;
    padding-bottom: 10px; }
    .flat-card__options-title {
      font-size: 12px;
      color: #a6a6a6;
      -webkit-transition: color .3s ease;
      transition: color .3s ease; }
    .flat-card__options-value {
      margin-top: 5px;
      font-size: 16px;
      color: #000; }
      .flat-card__options-value sup {
        position: absolute;
        font-size: 10px;
        margin-top: -3px; }
  .flat-card__illustration {
    height: 240px;
    padding: 20px 20px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box; }
  .flat-card__illustration--empty {
    background-image: url("/static/images/empty-flat.dc6a2af84133.png");
    background-size: cover; }
  .flat-card__price {
    font-weight: bold; }
    @media only screen and (max-width: 812px) {
      .flat-card__price {
        pointer-events: none; } }
    .flat-card__price-total {
      color: #09A09B;
      font-size: 16px;
      font-weight: normal; }
      .flat-card__price-total span {
        font-weight: 900;
        font-size: 23px; }
    .flat-card__price-per-meter {
      margin-top: 3px;
      font-weight: 700;
      font-size: 13px;
      color: #020202; }
  .flat-card__image {
    display: block;
    margin: 15px auto 0;
    max-width: 242px;
    max-height: 191px;
    height: auto; }

.flat-offer-card {
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 322px;
  height: 404px; }
  @media only screen and (max-width: 812px) {
    .flat-offer-card {
      display: none;
      width: 100%;
      min-height: 250px;
      height: auto; } }
  .flat-offer-card__count {
    font-weight: 900;
    font-size: 72px;
    color: #09A09B; }
  .flat-offer-card__title {
    margin-top: 7px;
    margin-bottom: 55px;
    font-weight: 900;
    max-width: 210px;
    font-size: 22px;
    color: #020202; }
  .flat-offer-card__link {
    position: relative;
    padding-right: 25px;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #09A09B; }
    .flat-offer-card__link:hover:before {
      -webkit-transform: translate3d(3px, 0, 0);
              transform: translate3d(3px, 0, 0); }
    .flat-offer-card__link:after {
      margin-top: 1px;
      background-color: #09A09B; }
    .flat-offer-card__link:before {
      content: '';
      position: absolute;
      right: -21px;
      top: -4px;
      display: block;
      width: 29px;
      height: 29px;
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.17);
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.17);
      border-radius: 100%;
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 9px 14px;
      background-image: url("/static/images/arrow-small-right-green.b84317ca82c9.svg"); }

.flat-info {
  position: relative;
  padding-top: 55px;
  background-color: #fff;
  min-height: 400px; }
  @media only screen and (max-width: 812px) {
    .flat-info {
      padding-top: 30px; } }
  .flat-info:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50%;
    height: 100%;
    background-color: #f6f6f6;
    z-index: 0;
    pointer-events: none; }
    @media only screen and (max-width: 812px) {
      .flat-info:after {
        display: none; } }
  .flat-info__container {
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 812px) {
      .flat-info__container {
        overflow: hidden; } }
  .flat-info__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    @media only screen and (max-width: 812px) {
      .flat-info__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .flat-info__photo, .flat-info__aside {
    width: 50%; }
    @media only screen and (max-width: 812px) {
      .flat-info__photo, .flat-info__aside {
        width: 100%; } }
  .flat-info__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media only screen and (max-width: 812px) {
      .flat-info__photo {
        padding-bottom: 40px;
        min-height: 213px;
        background-color: #f6f6f6;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .flat-info__photo {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    .flat-info__photo-tabs {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .flat-info__photo-tab {
      margin-right: 20px; }
      .flat-info__photo-tab:hover {
        color: #000; }
      .flat-info__photo-tab:last-of-type {
        margin-right: 0; }
    .flat-info__photo-container {
      position: relative;
      height: 100%;
      -ms-flex-negative: 1;
          flex-shrink: 1;
      padding: 32px 75px; }
      @media only screen and (max-width: 812px) {
        .flat-info__photo-container {
          padding: 25px 34px; } }
    .flat-info__photo-image {
      display: none;
      width: 100%;
      height: 100%;
      top: 0;
      position: absolute;
      opacity: 0;
      pointer-events: none;
      will-change: transform;
      -webkit-transform: translate3d(0, 30px, 0);
              transform: translate3d(0, 30px, 0);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: top;
      -webkit-transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
      transition: opacity .35s ease, position 0s ease .35s, -webkit-transform .35s ease;
      transition: opacity .35s ease, transform .35s ease, position 0s ease .35s;
      transition: opacity .35s ease, transform .35s ease, position 0s ease .35s, -webkit-transform .35s ease; }
      @media only screen and (max-width: 812px) {
        .flat-info__photo-image {
          min-height: 313px; } }
      .flat-info__photo-image--empty {
        background-image: url("/static/images/empty-flat.dc6a2af84133.png"); }
      .flat-info__photo-image.active {
        display: block;
        margin-top: 0;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        pointer-events: all;
        position: relative;
        opacity: 1;
        -webkit-transition: opacity 0.6s ease 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        transition: opacity 0.6s ease 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, position 0.6s ease 0.3s;
        transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, position 0.6s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s; }
  .flat-info__description {
    padding-left: 75px; }
    @media only screen and (max-width: 812px) {
      .flat-info__description {
        padding-left: 0; } }
    .flat-info__description-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media only screen and (max-width: 812px) {
        .flat-info__description-header {
          display: none; } }
  .flat-info__main-title {
    font-size: 30px;
    line-height: 1.5; }
    .flat-info__main-title:after {
      background-color: #00998f;
      content: "";
      display: block;
      width: 64px;
      height: 3px;
      margin: 15px auto 0; }
    @media only screen and (max-width: 812px) {
      .flat-info__main-title {
        text-align: center; } }
  .flat-info__action {
    padding-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .flat-info__action-item {
      padding: 0 16px;
      width: 20px;
      height: 20px;
      background-position: center;
      background-repeat: no-repeat;
      -webkit-transition: -webkit-transform .25s ease;
      transition: -webkit-transform .25s ease;
      transition: transform .25s ease;
      transition: transform .25s ease, -webkit-transform .25s ease;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media only screen and (max-width: 812px) {
        .flat-info__action-item {
          margin-bottom: 28px; } }
      .flat-info__action-item.share {
        background-image: url("/static/images/share-icon.0f1183c42c38.svg"); }
      .flat-info__action-item.print {
        background-image: url("/static/images/print-icon.6fcb8a970ce1.svg"); }
      .flat-info__action-item:hover {
        -webkit-transform: translate3d(0, -2px, 0);
                transform: translate3d(0, -2px, 0); }
  .flat-info__params {
    border-top: 1px solid #e1e1e1;
    padding-top: 21px;
    margin-top: 52px;
    text-align: center;
    display: grid;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, 1fr); }
    @media only screen and (max-width: 812px) {
      .flat-info__params {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        grid-template-columns: repeat(2, 1fr); } }
    .flat-info__params sup {
      font-size: 13px; }
    .flat-info__params-header {
      font-size: 1.5rem;
      text-align: center;
      grid-column-start: 1;
      grid-column-end: 4; }
      @media only screen and (max-width: 812px) {
        .flat-info__params-header {
          grid-column-end: 3; } }
    .flat-info__params-title {
      color: #a6a6a6;
      margin-bottom: 7px; }
    .flat-info__params-value {
      font-size: 20px; }
  .flat-info__price {
    border-top: 1px solid #e1e1e1;
    padding-top: 21px;
    margin-top: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around; }
    @media only screen and (max-width: 812px) {
      .flat-info__price {
        position: relative;
        min-height: 182px;
        padding-top: 28px;
        padding-left: calc(16px + 20px);
        padding-bottom: 22px;
        background-color: #f0f8f7;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .flat-info__price {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    .flat-info__price-value {
      font-size: 1.3rem; }
      .flat-info__price-value sup {
        font-size: 1rem; }
      .flat-info__price-value.main-price {
        color: #0baca2;
        font-size: 2rem; }
  .flat-info__reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 52px; }
    @media only screen and (max-width: 812px) {
      .flat-info__reserve-btn {
        border-radius: 0; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .flat-info__reserve-btn {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    @media only screen and (max-width: 812px) {
      .flat-info__reserve {
        margin-top: 0; } }
  .flat-info__add-to-favorites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 33px;
    text-decoration: none;
    color: #545454;
    font-size: 16px;
    cursor: pointer; }
    @media only screen and (max-width: 812px) {
      .flat-info__add-to-favorites {
        display: none; } }
    .flat-info__add-to-favorites > * {
      pointer-events: none; }
    .flat-info__add-to-favorites.active .icon-heart:before {
      opacity: 1; }
    .flat-info__add-to-favorites.active .icon-heart:after {
      opacity: 0; }
    .flat-info__add-to-favorites .icon-heart {
      margin-right: 10px; }
  .flat-info__purchase {
    margin-top: 34px;
    padding-left: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #e5f0e7;
    opacity: 0;
    height: 0;
    pointer-events: none; }
    @media only screen and (max-width: 812px) {
      .flat-info__purchase {
        margin-top: 0;
        padding-bottom: 6px;
        padding-left: calc(16px + 20px);
        background-color: #fff; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .flat-info__purchase {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    .flat-info__purchase-item {
      margin-right: 72px;
      padding-top: 40px;
      padding-bottom: 32px; }
      @media only screen and (max-width: 812px) {
        .flat-info__purchase-item {
          padding-top: 18px;
          margin-right: 60px; } }
      .flat-info__purchase-item:last-of-type {
        margin-right: 0; }
    .flat-info__purchase-value {
      font-size: 25px;
      color: #000; }
      @media only screen and (max-width: 812px) {
        .flat-info__purchase-value {
          font-size: 18px; } }
    .flat-info__purchase-promo {
      margin-top: 8px;
      margin-bottom: 10px;
      font-size: 18px;
      color: #09A09B; }
      @media only screen and (max-width: 812px) {
        .flat-info__purchase-promo {
          margin-top: 2px;
          font-size: 14px; } }
    .flat-info__purchase-link {
      display: inline-block;
      text-decoration: none;
      color: #101111;
      font-size: 13px; }
      @media only screen and (max-width: 812px) {
        .flat-info__purchase-link {
          font-size: 13px; } }
      .flat-info__purchase-link:after {
        margin-top: 1px; }
  .flat-info__crm-id {
    padding-top: 12px; }
    @media only screen and (max-width: 812px) {
      .flat-info__crm-id {
        display: none; } }
  .flat-info__mobile-header {
    display: none; }
    @media only screen and (max-width: 812px) {
      .flat-info__mobile-header {
        display: block; } }
  .flat-info__mobile-title {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 30px; }
    .flat-info__mobile-title:after {
      background-color: #00998f;
      content: "";
      display: block;
      width: 64px;
      height: 3px;
      margin: 15px auto 0; }
  .flat-info__mobile-action {
    display: none; }
    @media only screen and (max-width: 812px) {
      .flat-info__mobile-action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        position: absolute;
        right: 38px;
        top: 38px; } }

.mortgage-card {
  display: block;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #000;
  margin-right: 24px;
  margin-bottom: 20px;
  outline: none;
  cursor: pointer; }
  @media only screen and (max-width: 812px) {
    .mortgage-card {
      margin-right: 0; } }
  .mortgage-card:hover .mortgage-card__request-content {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  .mortgage-card:hover .mortgage-card-small__top {
    border-bottom: 1px solid transparent; }
  .mortgage-card:hover .mortgage-card-medium__left {
    border-right: 1px solid transparent; }
  .mortgage-card.best-offer .mortgage-card__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .mortgage-card-small {
    min-height: 209px;
    width: 236px; }
    .mortgage-card-small__top {
      margin-top: 7px;
      width: 100%;
      min-height: 158px;
      border-bottom: 1px solid #e4e4e4;
      -webkit-transition: border-bottom 0.5s ease;
      transition: border-bottom 0.5s ease; }
    .mortgage-card-small__bottom {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      width: 100%;
      height: 76px; }
    .mortgage-card-small__section {
      padding-top: 14px;
      width: 50%;
      height: 100%;
      border-right: 1px solid #e4e4e4;
      -webkit-transition: opacity 0.5s ease;
      transition: opacity 0.5s ease; }
      .mortgage-card-small__section:last-of-type {
        border: none; }
  .mortgage-card__logo {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
    width: 196px; }
    .mortgage-card__logo-img {
      max-height: 80px;
      max-width: 192px;
      width: auto; }
  .mortgage-card__rate {
    padding-right: 26px;
    text-align: center;
    font-size: 16px;
    color: #000; }
    .mortgage-card__rate-text {
      display: inline-block;
      padding-bottom: 2px;
      margin-right: 4px; }
    .mortgage-card__rate-value {
      font-weight: bold;
      color: #09A09B;
      font-size: 32px;
      line-height: 1; }
  .mortgage-card__options {
    width: 100%;
    text-align: center; }
    .mortgage-card__options-title {
      color: #a6a6a6;
      font-size: 12px; }
    .mortgage-card__options-value {
      margin-top: 4px;
      font-size: 13px; }
      .mortgage-card__options-value span {
        font-size: 18px; }
  .mortgage-card__request {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 76px;
    will-change: transform;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    overflow: hidden;
    width: 220px; }
    .mortgage-card__request > * {
      pointer-events: none; }
    .mortgage-card__request-content {
      -webkit-transform: translate3d(130%, 0, 0);
              transform: translate3d(130%, 0, 0);
      -webkit-transition: -webkit-transform 0.5s ease;
      transition: -webkit-transform 0.5s ease;
      transition: transform 0.5s ease;
      transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
    .mortgage-card__request.medium {
      bottom: 23px;
      height: 90px; }
      .mortgage-card__request.medium .mortgage-card__request-content {
        padding-top: 24px;
        width: 170px; }
        .mortgage-card__request.medium .mortgage-card__request-content:before {
          border-width: 0 0 90px 41px; }
    .mortgage-card__request-content {
      position: relative;
      padding-top: 13px;
      padding-right: 30px;
      width: 183px;
      height: 100%;
      background-color: #09A09B;
      text-align: right;
      font-weight: 500;
      font-size: 16px;
      color: #fff;
      line-height: 1.35; }
      .mortgage-card__request-content:before {
        content: '';
        position: absolute;
        right: 100%;
        top: 0;
        display: block;
        border-style: solid;
        border-width: 0 0 76px 35px;
        border-color: transparent transparent #09A09B transparent; }
  .mortgage-card-medium {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 409px;
    min-height: 135px; }
    .mortgage-card-medium__left {
      width: 247px;
      min-height: 135px;
      border-right: 1px solid #e4e4e4;
      -webkit-transition: border-right 0.5s ease;
      transition: border-right 0.5s ease; }
    .mortgage-card-medium__right {
      width: calc(162px); }
    .mortgage-card-medium__section {
      padding-top: 11px;
      height: calc(67.5px);
      border-bottom: 1px solid #e4e4e4;
      -webkit-transition: opacity 0.5s ease;
      transition: opacity 0.5s ease; }
      .mortgage-card-medium__section:last-of-type {
        border-bottom: 0; }
  .mortgage-card-big {
    max-width: 675px;
    margin-bottom: 25px;
    margin-right: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
    transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
    transition: transform .3s ease, box-shadow .3s ease;
    transition: transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease; }
    .mortgage-card-big:nth-child(2n) {
      margin-right: 0; }
    .mortgage-card-big:hover {
      -webkit-transform: translate3d(0, -3px, 0);
              transform: translate3d(0, -3px, 0);
      -webkit-box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
              box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12); }
      .mortgage-card-big:hover .mortgage-card-medium__section {
        opacity: 1; }
      .mortgage-card-big:hover .mortgage-card-medium__left {
        border-right: 1px solid #e4e4e4; }
    .mortgage-card-big .mortgage-card-medium__right {
      -webkit-transform: translateY(1px);
              transform: translateY(1px); }
    .mortgage-card-big__payment {
      padding-top: 23px;
      padding-left: 30px;
      width: 254px;
      height: 135px;
      border-left: 1px solid #e4e4e4; }
      .mortgage-card-big__payment-text {
        margin-bottom: 15px;
        max-width: 180px;
        font-size: 16px; }
      .mortgage-card-big__payment-value {
        font-weight: bold;
        color: #09A09B;
        font-size: 32px; }
  .mortgage-card__label {
    position: absolute;
    top: -10px;
    right: -12px;
    width: 159px;
    height: 30px;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #09A09B;
    border-radius: 30px;
    font-weight: 500;
    font-size: 13px;
    color: #fff; }
  .mortgage-card__offer-title {
    padding-top: 15px;
    padding-bottom: 18px;
    max-width: 172px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #09A09B;
    line-height: 1.6; }

.mortgage-buy {
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .mortgage-buy {
      padding-top: 20px; } }
  .mortgage-buy__title {
    font-size: 40px;
    margin-bottom: 22px; }
    @media only screen and (max-width: 812px) {
      .mortgage-buy__title {
        font-size: 26px; } }
  .mortgage-buy__sub-title {
    margin-bottom: 35px; }
    @media only screen and (max-width: 812px) {
      .mortgage-buy__sub-title {
        font-size: 18px; } }
  .mortgage-buy__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 70px; }
  .mortgage-buy__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 436px;
    height: 153px;
    padding: 0 160px 0 30px;
    margin: 0 26px 26px 0;
    background-color: #18a29b;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    font-size: 26px;
    color: #fff;
    text-decoration: none; }
    @media only screen and (max-width: 812px) {
      .mortgage-buy__section {
        margin-right: 0;
        margin-bottom: 26px;
        width: 100%;
        font-size: 18px;
        height: 120px; } }
    .mortgage-buy__section:nth-child(3n) {
      margin-right: 0; }

.mortgage-slider {
  position: relative;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .mortgage-slider__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%; }
    .mortgage-slider__container.slick-slider {
      display: block; }
  .mortgage-slider__controllers {
    position: absolute;
    right: 0;
    top: 6px; }
  .mortgage-slider__arrow {
    height: 107.5px; }

.mortgage-military__intro {
  background-image: url("/static/images/mortgage-military-bg.2403ff6de8eb.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 82px;
  color: #fff;
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .mortgage-military__intro {
      padding-top: 20px; } }
  @media only screen and (max-width: 812px) {
    .mortgage-military__intro {
      position: relative;
      background-position: right center; }
      .mortgage-military__intro:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); }
      .mortgage-military__intro .container, .mortgage-military__intro .complex-list-finished__body, .mortgage-military__intro .flat-types__wrap, .mortgage-military__intro .company-layout__body, .mortgage-military__intro .company-chess, .mortgage-military__intro .history-layout, .mortgage-military__intro .company-history__container, .mortgage-military__intro .partners-info__container {
        position: relative;
        z-index: 1; } }

.mortgage-military__title {
  font-size: 40px;
  margin-bottom: 28px;
  line-height: 1.2; }
  @media only screen and (max-width: 812px) {
    .mortgage-military__title {
      font-size: 26px; } }

.mortgage-military__intro-description {
  width: 50%;
  font-size: 16px;
  line-height: 1.8; }
  @media only screen and (max-width: 812px) {
    .mortgage-military__intro-description {
      width: 100%;
      max-width: 480px; } }

.mortgage-military__banks {
  padding-top: 35px;
  margin-bottom: 45px; }

.mortgage-military__banks-title {
  margin-bottom: 30px; }
  @media only screen and (max-width: 812px) {
    .mortgage-military__banks-title {
      font-size: 26px; } }

.mortgage-military__banks-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.mortgage-military__bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 668px;
  height: 129px;
  margin-right: 23px;
  margin-bottom: 23px;
  background-color: #fafafa;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 812px) {
    .mortgage-military__bank {
      margin-right: 0; } }
  .mortgage-military__bank:nth-child(2n) {
    margin-right: 0; }

.mortgage-military__bank-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 129px;
  height: 100%;
  background-color: #e5e5e5; }

.mortgage-military__bank-image {
  max-width: 100%;
  max-height: 100%; }

.mortgage-military__bank-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 27px;
  font-size: 20px;
  line-height: 1.2; }

.mortgage-military__objects {
  margin-bottom: 55px; }

.mortgage-military__objects-title {
  font-size: 30px;
  margin-bottom: 25px; }
  @media only screen and (max-width: 812px) {
    .mortgage-military__objects-title {
      font-size: 26px; } }

.mortgage-military__manager-list {
  padding-bottom: 73px; }

.mortgage-manager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f2f2f2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 812px) {
    .mortgage-manager {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column; } }
  .mortgage-manager__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 37px 30px 44px 63px; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__info {
        padding: 20px 0 20px 10px; } }
  .mortgage-manager__avatar {
    width: 177px;
    height: 211px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 24px; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__avatar {
        width: 146px;
        height: 174px; } }
  .mortgage-manager__name {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px; }
  .mortgage-manager__job {
    font-size: 16px;
    line-height: 1.1875;
    margin-bottom: 32px; }
  .mortgage-manager__phone-list {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.2;
    color: #000; }
  .mortgage-manager__phone {
    margin-right: 40px;
    text-decoration: none;
    color: inherit;
    -webkit-transition: color .3s ease;
    transition: color .3s ease; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__phone {
        margin-right: 0; } }
    .mortgage-manager__phone:hover {
      color: #18a29b; }
  .mortgage-manager__email {
    color: #18a29b;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2; }
    .mortgage-manager__email:after {
      background-color: #18a29b; }
  .mortgage-manager__request {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 37px 30px 44px 52px;
    width: 38.16%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #18a29b;
    color: #fff; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__request {
        padding: 20px 10px 0;
        width: 100%; } }
  .mortgage-manager__request-text {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 33px; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__request-text {
        text-align: center;
        max-width: 440px;
        font-size: 16px; } }
  .mortgage-manager__request-button {
    width: 260px;
    padding: 11px 38px;
    background-color: #fff;
    color: #000; }
    .mortgage-manager__request-button:hover {
      background-color: #fff; }
    .mortgage-manager__request-button:focus {
      opacity: 1; }
    @media only screen and (max-width: 812px) {
      .mortgage-manager__request-button {
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        text-decoration: underline; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .mortgage-manager__request-button {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }

.mortgage-calc__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 120px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); }

.mortgage-calc__params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 19px 51px 19px 23px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100vw;
  max-width: 962px;
  background-color: #f6f6f6; }
  .mortgage-calc__params-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }

.mortgage-calc__action {
  padding: 0 22px;
  width: 100vw;
  max-width: 522px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #545454; }
  .mortgage-calc__action.notFlat {
    max-width: 400px; }

.mortgage-calc__range {
  width: 310px; }
  .mortgage-calc__range-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }

.mortgage-calc__action-btn {
  margin-right: 30px; }

.mortgage-calc__action-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 16px; }
  .mortgage-calc__action-link:after {
    background-color: #fff;
    margin-top: 1px; }

.mortgage-calc__slider, .mortgage-calc__item {
  width: 232px; }
  .mortgage-calc__slider-values, .mortgage-calc__item-values {
    min-height: 16px;
    margin-top: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .mortgage-calc__slider-values .mortgage-calc__slider-value-wrapper, .mortgage-calc__item-values .mortgage-calc__slider-value-wrapper {
      display: none; }
  .mortgage-calc__slider-title, .mortgage-calc__flat-title, .mortgage-calc__item-title {
    margin-bottom: 53px;
    color: #000;
    font-size: 15px;
    text-align: center; }
  .mortgage-calc__slider-value, .mortgage-calc__item-value {
    font-size: 10px;
    color: #757575; }
    .mortgage-calc__slider-value.current, .mortgage-calc__item-value.current {
      position: relative;
      display: block;
      width: 62px;
      min-height: 28px;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      text-align: center;
      -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
              box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
      background: #fff;
      outline: none;
      border: none;
      border-radius: 40px;
      -webkit-transition: -webkit-box-shadow .2s ease;
      transition: -webkit-box-shadow .2s ease;
      transition: box-shadow .2s ease;
      transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
      pointer-events: all; }
      .mortgage-calc__slider-value.current:focus, .mortgage-calc__item-value.current:focus {
        -webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.4);
                box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.4); }
    .mortgage-calc__slider-value.current.price, .mortgage-calc__item-value.current.price {
      width: 110px; }
  .mortgage-calc__slider-value-wrapper, .mortgage-calc__item-value-wrapper {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    pointer-events: none; }
    .mortgage-calc__slider-value-wrapper:before, .mortgage-calc__item-value-wrapper:before {
      content: '';
      position: absolute;
      top: calc(100% - 5px);
      right: 100%;
      display: block;
      width: 15px;
      height: 15px;
      background-image: url("/static/images/triangle-bottom-white.00ddfd95c703.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100% auto;
      -webkit-transform: translate(50%, 0);
              transform: translate(50%, 0); }

.mortgage-calc__ui-slider {
  height: 14px; }
  .mortgage-calc__ui-slider.ui-slider.turquoise-color {
    background: none; }
    .mortgage-calc__ui-slider.ui-slider.turquoise-color .noUi-base {
      background-color: #fff;
      height: 6px;
      border-radius: 10px; }
    .mortgage-calc__ui-slider.ui-slider.turquoise-color .noUi-handle, .mortgage-calc__ui-slider.ui-slider.turquoise-color .noUi-handle:before {
      position: relative;
      background-color: #0baca2; }

.mortgage-calc__flat-title {
  margin-bottom: 21px;
  text-align: left; }

.mortgage-calc__flat-price {
  margin-top: 32px;
  font-size: 21px;
  color: #000; }
  .mortgage-calc__flat-price span {
    color: #757575;
    font-size: 13px; }

.company-banner {
  position: relative;
  color: #fff;
  padding-bottom: 40px;
  background-image: url("/static/images/company-banner.d1e2f4b53c09.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .company-banner:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(121.28deg, #183736 0%, rgba(21, 66, 64, 0) 77.52%);
    z-index: 0; }
  .company-banner__body {
    padding-bottom: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 42px;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 812px) {
      .company-banner__body {
        padding-top: 22px; } }
  .company-banner__text {
    margin-top: 40px; }
    @media only screen and (max-width: 812px) {
      .company-banner__text {
        margin-top: 35px; } }
  .company-banner__content {
    max-width: 753px;
    margin-right: 100px;
    width: 50%; }
    @media only screen and (max-width: 812px) {
      .company-banner__content {
        margin-right: 0;
        width: 100%; } }
  .company-banner__logo {
    display: block;
    margin-bottom: 25px;
    width: 166px;
    height: 83px; }
    @media only screen and (max-width: 812px) {
      .company-banner__logo {
        display: none; } }
  .company-banner__features {
    margin-top: -18px; }
    @media only screen and (max-width: 812px) {
      .company-banner__features {
        margin-top: 22px; } }
    .company-banner__features-item {
      padding-left: 3px;
      padding-bottom: 3px;
      min-height: 65px;
      margin-bottom: 48px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      background-image: url("/static/images/trapezia-ico.1608c2ef6173.svg");
      background-repeat: no-repeat;
      background-position: 0 0; }
      @media only screen and (max-width: 812px) {
        .company-banner__features-item {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
      .company-banner__features-item:last-of-type {
        margin-bottom: 0; }
    .company-banner__features-value {
      margin-right: 13px;
      font-size: 60px;
      font-weight: bold;
      line-height: .91; }
      @media only screen and (max-width: 812px) {
        .company-banner__features-value {
          font-size: 50px; } }
    .company-banner__features-title {
      position: relative;
      font-weight: 500;
      font-size: 18px;
      color: #c3c3bc;
      max-width: 185px;
      z-index: 3; }

.company-about {
  padding-top: 50px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 812px) {
    .company-about {
      padding-top: 20px; } }
  @media only screen and (max-width: 812px) {
    .company-about {
      padding-bottom: 34px; } }
  .company-about__main-title {
    font-size: 40px;
    margin-bottom: 48px; }
    @media only screen and (max-width: 812px) {
      .company-about__main-title {
        font-size: 26px; } }
    @media only screen and (max-width: 812px) {
      .company-about__main-title {
        margin-bottom: 19px; } }
  .company-about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .company-about__row {
        display: block; } }
  .company-about__intro-text {
    line-height: 1.8;
    -ms-flex-preferred-size: 570px;
        flex-basis: 570px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media only screen and (max-width: 812px) {
      .company-about__intro-text {
        font-size: 14px;
        color: #555; }
        .company-about__intro-text p {
          margin-bottom: 18px; }
          .company-about__intro-text p:last-child {
            margin-bottom: 0; } }
  .company-about__main-text {
    max-width: 564px;
    margin-bottom: 37px;
    font-size: 16px;
    line-height: 1.7; }
  .company-about__sub-text {
    max-width: 564px;
    font-size: 14px; }
  .company-about__features {
    width: 43%;
    margin-top: -68px;
    margin-left: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .company-about__features {
        margin-top: 0;
        display: block;
        width: 100%;
        padding-top: 22px;
        margin-left: 0; } }
    .company-about__features-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      margin-bottom: 45px;
      margin-right: 45px; }
      @media only screen and (max-width: 812px) {
        .company-about__features-item {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          margin-right: 0; }
          .company-about__features-item:last-child {
            margin-bottom: 0; } }
      .company-about__features-item span {
        display: inline-block; }
    .company-about__features-value {
      margin-right: 15px;
      font-size: 60px;
      line-height: .9; }
      @media only screen and (max-width: 812px) {
        .company-about__features-value {
          margin-right: 10px;
          -ms-flex-negative: 0;
              flex-shrink: 0; } }
    .company-about__features-title {
      max-width: 156px;
      font-size: 18px; }
      @media only screen and (max-width: 812px) {
        .company-about__features-title {
          max-width: initial; } }
  .company-about__main {
    background-color: #f6f6f6; }
  .company-about__main-picture {
    width: 50%;
    height: 539px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-image: url("/static/images/main-about.fa01e656f373.jpg");
    margin-right: 84px; }
    @media only screen and (max-width: 812px) {
      .company-about__main-picture {
        height: 307px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .company-about__main-picture {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  .company-about__aside-text {
    padding-top: 70px;
    max-width: 564px; }
    .company-about__aside-text p {
      max-width: 564px;
      margin-bottom: 44px; }
      .company-about__aside-text p:last-of-type {
        margin-bottom: 0; }
    @media only screen and (max-width: 812px) {
      .company-about__aside-text {
        font-size: 14px;
        color: #555; }
        .company-about__aside-text p {
          margin-bottom: 18px; }
          .company-about__aside-text p:last-child {
            margin-bottom: 0; } }
    @media only screen and (max-width: 812px) {
      .company-about__aside-text {
        padding-top: 30px; } }
  .company-about__union {
    margin-top: 110px;
    padding-top: 8px;
    padding-bottom: 60px;
    width: 100%; }
    @media only screen and (max-width: 812px) {
      .company-about__union {
        padding: 31px 16px 26px;
        margin-top: 0; } }
    .company-about__union-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0 auto;
      width: 100%;
      max-width: 851px; }
    .company-about__union-text {
      margin-right: 80px;
      max-width: 577px;
      font-size: 23px; }
      @media only screen and (max-width: 812px) {
        .company-about__union-text {
          font-size: 12px;
          line-height: 1.6;
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1;
          max-width: initial;
          margin-right: 0; } }
    @media only screen and (max-width: 812px) {
      .company-about__union-license {
        width: 22.666%;
        height: auto;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin-right: 20px; } }

.company-layout {
  padding: 0; }
  .company-layout.shadow .company-mission__body {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
  .company-layout__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0; }
    @media only screen and (max-width: 812px) {
      .company-layout__body {
        display: block; } }
  .company-layout__main-title {
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .company-layout__main-title {
        font-size: 26px; } }
  .company-layout__text {
    margin-top: 38px;
    font-size: 16px;
    line-height: 1.8; }
    @media only screen and (max-width: 812px) {
      .company-layout__text {
        margin-top: 30px; } }
    .company-layout__text p {
      margin-bottom: 25px; }
    @media only screen and (max-width: 812px) {
      .company-layout__text {
        font-size: 14px;
        color: #555; }
        .company-layout__text p {
          margin-bottom: 18px; }
          .company-layout__text p:last-child {
            margin-bottom: 0; } }
  .company-layout__content {
    width: 50%;
    padding: 80px 125px 115px 40px; }
    @media only screen and (max-width: 812px) {
      .company-layout__content {
        width: 100%;
        padding: 22px 16px 31px; } }
  .company-layout .company-about__main-picture {
    width: auto;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 0;
    min-height: 610px;
    height: auto; }
    @media only screen and (max-width: 812px) {
      .company-layout .company-about__main-picture {
        height: 305px;
        min-height: auto; } }

.company-leadership {
  padding-top: 41px;
  padding-bottom: 74px;
  -webkit-box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 812px) {
    .company-leadership {
      padding-top: 29px;
      padding-bottom: 48px; } }
  .company-leadership__members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .company-leadership__member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 45px;
    margin-right: 100px;
    width: 331px; }
    @media only screen and (max-width: 812px) {
      .company-leadership__member {
        margin-right: 0; } }
    .company-leadership__member:nth-child(3n+1) {
      width: 471px;
      margin-right: 110px; }
      @media only screen and (max-width: 812px) {
        .company-leadership__member:nth-child(3n+1) {
          margin-right: 0; } }
    .company-leadership__member.big {
      margin-right: 110px; }
      @media only screen and (max-width: 812px) {
        .company-leadership__member.big {
          margin-right: 0; } }
      .company-leadership__member.big .company-leadership__member-ava {
        width: 150px;
        height: 150px;
        margin-right: 26px; }
        @media only screen and (max-width: 812px) {
          .company-leadership__member.big .company-leadership__member-ava {
            width: 102px;
            height: 102px;
            margin-right: 15px; } }
        .company-leadership__member.big .company-leadership__member-ava-wrap {
          height: 169px;
          width: 154px; }
          @media only screen and (max-width: 812px) {
            .company-leadership__member.big .company-leadership__member-ava-wrap {
              width: 105px;
              height: 115px; } }
        .company-leadership__member.big .company-leadership__member-ava-image {
          width: 150px; }
          @media only screen and (max-width: 812px) {
            .company-leadership__member.big .company-leadership__member-ava-image {
              width: 105px; } }
      .company-leadership__member.big .company-leadership__member-name {
        font-size: 30px; }
        @media only screen and (max-width: 812px) {
          .company-leadership__member.big .company-leadership__member-name {
            font-size: 20px; } }
      .company-leadership__member.big .company-leadership__member-position {
        font-size: 16px; }
        @media only screen and (max-width: 812px) {
          .company-leadership__member.big .company-leadership__member-position {
            font-size: 13px; } }
    .company-leadership__member:nth-child(3n) {
      margin-right: 0; }
    .company-leadership__member-name {
      font-size: 20px; }
    .company-leadership__member-position {
      margin-top: 11px;
      font-size: 13px;
      opacity: .6; }
      @media only screen and (max-width: 812px) {
        .company-leadership__member-position {
          margin-top: 7px; } }
    .company-leadership__member-ava {
      position: relative;
      margin-right: 13px;
      width: 120px;
      height: 120px;
      background-color: #09A09B;
      border-radius: 100%;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media only screen and (max-width: 812px) {
        .company-leadership__member-ava {
          width: 102px;
          height: 102px;
          margin-right: 15px; } }
      .company-leadership__member-ava-image {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 120px;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 8px; }
        @media only screen and (max-width: 812px) {
          .company-leadership__member-ava-image {
            width: 105px; } }
      .company-leadership__member-ava-wrap {
        position: absolute;
        left: 50%;
        bottom: -1px;
        height: 133px;
        width: 120px;
        border-radius: 100%;
        overflow: hidden;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0); }
        @media only screen and (max-width: 812px) {
          .company-leadership__member-ava-wrap {
            height: 115px;
            width: 105px; } }

.company-chess {
  padding: 0; }
  .company-chess__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 541px; }
    @media only screen and (max-width: 812px) {
      .company-chess__row:nth-child(2n) .company-chess__image {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
      .company-chess__row:nth-child(2n - 1) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
    .company-chess__row--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      .company-chess__row--reverse .company-chess__image {
        width: 51%; }
      .company-chess__row--reverse .company-chess__info {
        padding: 125px 40px 115px 60px; }
    @media only screen and (max-width: 812px) {
      .company-chess__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .company-chess__info {
    padding: 80px 125px 115px 40px; }
    .company-chess__info:nth-child(2) {
      padding-right: 40px;
      padding-left: 125px; }
      @media only screen and (max-width: 812px) {
        .company-chess__info:nth-child(2) {
          padding: 22px 16px 31px; } }
    .company-chess__info--first {
      padding-top: 80px; }
    @media only screen and (max-width: 812px) {
      .company-chess__info {
        padding: 22px 16px 31px; } }
  .company-chess__main-title {
    font-size: 40px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 812px) {
      .company-chess__main-title {
        font-size: 26px; } }
    @media only screen and (max-width: 812px) {
      .company-chess__main-title {
        margin-bottom: 25px; } }
  .company-chess__title {
    margin-bottom: 25px; }
    @media only screen and (max-width: 812px) {
      .company-chess__title {
        margin-bottom: 18px;
        font-size: 18px; } }
  .company-chess__text {
    font-size: 16px;
    line-height: 1.8; }
    .company-chess__text p {
      margin-bottom: 25px; }
    @media only screen and (max-width: 812px) {
      .company-chess__text ul,
      .company-chess__text ol {
        padding-left: 16px; } }
    @media only screen and (max-width: 812px) {
      .company-chess__text {
        font-size: 14px;
        color: #555; }
        .company-chess__text p {
          margin-bottom: 18px; }
          .company-chess__text p:last-child {
            margin-bottom: 0; } }
  .company-chess__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    @media only screen and (max-width: 812px) {
      .company-chess__image {
        height: 305px; } }
  .company-chess .company-chess__slider, .company-chess__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative; }

.company-chess .company-chess__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #18a29b;
  color: #fff;
  line-height: normal; }

.company-chess .common-slider {
  height: auto;
  margin-bottom: 60px; }

.company-chess .common-slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.company-chess__slide-icon {
  margin-bottom: 39px; }

.company-chess__slide-title {
  margin-bottom: 15px;
  font-size: 30px; }

.company-chess__slide-text {
  font-weight: 500;
  font-size: 20px; }

.company-chess__controller {
  position: relative; }

.history-layout {
  padding: 0; }
  .history-layout-wrapper {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
  .history-layout__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #fff; }
    @media only screen and (max-width: 812px) {
      .history-layout__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .history-layout__main-title {
    font-size: 40px; }
  .history-layout__text {
    margin-top: 38px; }
  .history-layout__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    padding: 80px 40px 0; }
    @media only screen and (max-width: 812px) {
      .history-layout__content {
        padding: 24px 16px 0; } }
    @media only screen and (max-width: 812px) {
      .history-layout__content {
        width: 100%; } }

.company-history__info {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 30px; }

@media only screen and (max-width: 812px) and (max-width: 812px) {
  .company-history__info {
    width: calc(100% + 16px + 16px);
    margin-left: -16px;
    margin-right: -16px; } }

.company-history__main-title {
  font-size: 40px; }
  @media only screen and (max-width: 812px) {
    .company-history__main-title {
      padding: 0 16px;
      font-size: 26px;
      margin-bottom: 8px; } }

.company-history__date {
  position: absolute;
  right: 0;
  top: 0;
  width: 186px;
  height: 100%; }
  @media only screen and (max-width: 812px) {
    .company-history__date {
      position: relative;
      right: auto;
      left: 0;
      width: 100%;
      height: auto; } }

.company-history__date-slider {
  height: 460px;
  overflow: hidden;
  background-image: url("/static/images/line.05b8157e2317.svg");
  background-size: 1px;
  background-repeat: repeat-y;
  background-position: center; }
  @media only screen and (max-width: 812px) {
    .company-history__date-slider {
      height: auto;
      background: none; } }

.company-history__date-slide {
  position: relative;
  display: block;
  cursor: pointer;
  outline: none;
  -webkit-transition: font-size .5s ease, color .5s ease;
  transition: font-size .5s ease, color .5s ease; }
  @media only screen and (max-width: 812px) {
    .company-history__date-slide {
      padding-top: 30px; } }
  .company-history__date-slide.slick-slide {
    width: 190px;
    text-align: center;
    height: 91px; }
  .company-history__date-slide--empty {
    cursor: auto; }
    .company-history__date-slide--empty:before, .company-history__date-slide--empty:after {
      display: none; }
  .company-history__date-slide.slick-current .company-history__date-year {
    color: #18a29b;
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5); }
    @media only screen and (max-width: 812px) {
      .company-history__date-slide.slick-current .company-history__date-year {
        -webkit-transform: translate(0, 0) scale(1.2);
                transform: translate(0, 0) scale(1.2); } }
  .company-history__date-slide.sibling-prev .company-history__date-year {
    -webkit-transform: translate(-50%, -75%) scale(1.7);
            transform: translate(-50%, -75%) scale(1.7); }
    @media only screen and (max-width: 812px) {
      .company-history__date-slide.sibling-prev .company-history__date-year {
        -webkit-transform: none;
                transform: none; } }
  .company-history__date-slide.sibling-next .company-history__date-year {
    -webkit-transform: translate(-50%, -25%) scale(1.7);
            transform: translate(-50%, -25%) scale(1.7); }
    @media only screen and (max-width: 812px) {
      .company-history__date-slide.sibling-next .company-history__date-year {
        -webkit-transform: none;
                transform: none; } }

.company-history__date-year {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background-color: #fff;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }
  @media only screen and (max-width: 812px) {
    .company-history__date-year {
      padding: 0 22px;
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: none;
              transform: none;
      font-size: 60px;
      -webkit-transform-origin: center bottom;
              transform-origin: center bottom; } }

.company-history__date-slide--line.first div:before,
.company-history__date-slide--line.last div:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 1000px;
  background-color: #fff; }
  @media only screen and (max-width: 812px) {
    .company-history__date-slide--line.first div:before,
    .company-history__date-slide--line.last div:before {
      display: none; } }

.company-history__date-slide--line.last div:before {
  top: 100%;
  bottom: auto; }

.company-history__slider-wrapper {
  position: relative; }

.company-history__content {
  position: relative;
  width: 340px;
  margin-top: 125px;
  margin-left: 85px;
  font-size: 13px;
  line-height: 1.8; }
  @media only screen and (max-width: 812px) {
    .company-history__content {
      padding: 0 16px;
      margin: 10px 0 0;
      width: 100%; } }

.company-history__content-controller {
  position: absolute;
  top: 50%;
  left: -85px;
  -webkit-transform: rotate(90deg) translateY(-100%) translateX(-50%);
          transform: rotate(90deg) translateY(-100%) translateX(-50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0; }
  @media only screen and (max-width: 812px) {
    .company-history__content-controller {
      margin-top: 28px;
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: none;
              transform: none; }
      .company-history__content-controller .slider-controller__container {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

.company-history__picture {
  width: 49%; }
  @media only screen and (max-width: 812px) {
    .company-history__picture {
      width: 100%; } }

.company-history__picture-slider {
  height: 100%; }
  .company-history__picture-slider .slick-list,
  .company-history__picture-slider .slick-track {
    height: 100%; }

.company-history__picture-slide {
  min-height: 609px;
  /* stylelint-disable */
  height: 100% !important;
  /* stylelint-enable */
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 812px) {
    .company-history__picture-slide {
      -webkit-transition: height .2s ease;
      transition: height .2s ease;
      /* stylelint-disable */
      height: 309px !important;
      min-height: 0;
      /* stylelint-enable */
      display: none;
      opacity: 0; }
      .company-history__picture-slide:first-of-type {
        display: block;
        opacity: 1; }
      .company-history__picture-slide.slick-slide {
        display: block;
        opacity: 1;
        /* stylelint-disable */
        height: 0.01px !important;
        /* stylelint-enable */ }
        .company-history__picture-slide.slick-slide.slick-active {
          /* stylelint-disable */
          height: 309px !important;
          left: 0 !important;
          /* stylelint-enable */ }
        .company-history__picture-slide.slick-slide.slick-active.no-bg {
          /* stylelint-disable */
          height: 0.01px !important;
          /* stylelint-enable */ } }

.company-history__container {
  padding-top: 63px; }

.company-history__sub-title {
  margin-bottom: 40px;
  font-size: 40px; }

.company-history__reference {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 63px; }
  .company-history__reference > p,
  .company-history__reference > div {
    margin-right: 1.8%;
    margin-bottom: 1.8%;
    line-height: 1.8; }
    .company-history__reference > p:nth-child(2n),
    .company-history__reference > div:nth-child(2n) {
      -ms-flex-preferred-size: 53%;
          flex-basis: 53%;
      margin-right: 0; }
    .company-history__reference > p:nth-child(2n-1),
    .company-history__reference > div:nth-child(2n-1) {
      -ms-flex-preferred-size: 45%;
          flex-basis: 45%; }

.tenders {
  padding-top: 59px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 812px) {
    .tenders {
      padding-top: 27px; } }
  .tenders .selectric .button, .tenders .selectric .button__rounded, .tenders .selectric .popup__submit, .tenders .selectric .mortgage-manager__request-button, .tenders .selectric .partners-form__submit, .tenders .selectric .realty-filter__action-button, .tenders .selectric .contacts-info__button, .tenders .selectric .button__military, .tenders .selectric .button-big-rounded {
    background: #0baca2; }
  .tenders .tenders-card {
    display: none; }
    .tenders .tenders-card.visible {
      display: block; }
  .tenders__main-title {
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .tenders__main-title {
        font-size: 26px; } }
  .tenders__body {
    margin-top: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .tenders__main {
    width: 100%;
    max-width: 590px; }
  @media only screen and (max-width: 812px) {
    .tenders__aside {
      display: none; } }
  .tenders__aside-content {
    padding: 40px;
    background-color: #f6f6f6;
    color: #000;
    font-size: 24px;
    border-radius: 10px; }
  .tenders__aside-title {
    margin-bottom: 32px; }
    .tenders__aside-title:last-of-type {
      margin-bottom: 0; }
  .tenders__select-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
    width: 285px; }
    .tenders__select-wrapper .partners-form__select {
      opacity: 0; }

.tenders-card {
  margin-bottom: 40px; }
  .tenders-card:last-of-type {
    margin-bottom: 0; }
  .tenders-card.active .tenders-card__button {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .tenders-card.active .tenders-card__header:hover .tenders-card__main-title {
    color: #000; }
  .tenders-card__header {
    position: relative;
    padding-right: 56px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dadada;
    color: #000;
    cursor: pointer; }
    .tenders-card__header:hover .tenders-card__main-title {
      color: #09A09B; }
  .tenders-card__main-title {
    font-size: 22px;
    margin-bottom: 28px;
    -webkit-transition: color .25s ease;
    transition: color .25s ease; }
    @media only screen and (max-width: 812px) {
      .tenders-card__main-title {
        font-size: 18px; } }
  .tenders-card__common-row, .vacancy-list__description {
    color: #545454;
    margin-bottom: 16px; }
    .tenders-card__common-row:last-of-type, .vacancy-list__description:last-of-type {
      margin-bottom: 0; }
  .tenders-card__content {
    padding-bottom: 25px;
    border-bottom: 1px solid #dadada; }
  .tenders-card__task {
    margin-top: 27px;
    margin-bottom: 27px; }
  .tenders-card__subtitle {
    font-size: 15px;
    margin-bottom: 14px; }
  .tenders-card__link {
    display: inline-block;
    margin-bottom: 6px;
    text-decoration: none;
    color: #09A09B; }
    .tenders-card__link:after {
      background-color: #09A09B;
      margin-top: -1px; }
    .tenders-card__link:last-of-type {
      margin-bottom: 0; }
    .tenders-card__link.total {
      margin-top: 22px; }
    .tenders-card__link.e-mail {
      margin-top: 12px; }
  .tenders-card__button {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #b6b6b6;
    border-radius: 50%;
    -webkit-transition: backround-color .2s, -webkit-transform .2s ease;
    transition: backround-color .2s, -webkit-transform .2s ease;
    transition: transform .2s ease, backround-color .2s;
    transition: transform .2s ease, backround-color .2s, -webkit-transform .2s ease; }
    .tenders-card__button:after {
      content: '';
      display: block;
      width: 7px;
      height: 13px;
      background-image: url("/static/images/arrow-right-green.a15b6eab3661.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }

.vacancy-list {
  padding-bottom: 50px; }
  @media only screen and (max-width: 812px) {
    .vacancy-list {
      padding-bottom: 32px; } }
  .vacancy-list__body {
    width: 100%;
    max-width: 620px; }
  .vacancy-list__title {
    padding-top: 80px;
    margin-bottom: 32px; }
    @media only screen and (max-width: 812px) {
      .vacancy-list__title {
        padding-top: calc(32px + 60px);
        margin-bottom: 24px;
        font-size: 26px; } }
  .vacancy-list__description {
    line-height: 1.5; }
  .vacancy-list ul,
  .vacancy-list ol {
    list-style-position: inside; }
  .vacancy-list__item {
    margin-bottom: 24px; }
    .vacancy-list__item:first-of-type {
      margin-top: 24px; }
    .vacancy-list__item:last-of-type {
      margin-bottom: 0; }

.press-card {
  /* .press-card__date === .news-card__date */
  display: block;
  float: left;
  position: relative;
  height: 180px;
  width: 409px;
  padding: 40px 45px 40px 30px;
  margin-bottom: 30px;
  margin-right: 24px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  opacity: .99;
  /* Если у родительского контейнера есть модификатор --big, то пятому элементу убрать отступ справа */
  /* Блок с задним фоном */
  /* Большой блок*/ }
  @media only screen and (max-width: 812px) {
    .press-card {
      width: 100%;
      float: none; } }
  .press-card.slide {
    padding: 17px 45px 40px 30px;
    margin-right: 23px;
    width: 495px;
    height: 154px; }
    @media only screen and (max-width: 812px) {
      .press-card.slide {
        width: 100%; } }
    .press-card.slide:nth-child(3n) {
      margin-right: 23px; }
    .press-card.slide:nth-child(3n+1) {
      width: 495px; }
      @media only screen and (max-width: 812px) {
        .press-card.slide:nth-child(3n+1) {
          width: 100%; } }
    .press-card.slide .press-card__date {
      margin-bottom: 20px; }
    .press-card.slide .press-card__title {
      max-width: 314px;
      font-size: 16px; }
  .press-card:nth-child(3n) {
    margin-right: 0; }
  .press-card:nth-child(3n+1) {
    width: 494px; }
    @media only screen and (max-width: 812px) {
      .press-card:nth-child(3n+1) {
        width: 100%; } }
  .press-list__container--big .press-card:nth-child(5) {
    margin-right: 0; }
  .press-list__container--big .press-card:nth-child(4) {
    width: 409px; }
  .press-card--bg-image .press-card__bg {
    background-color: rgba(0, 0, 0, 0.6); }
    .press-card--bg-image .press-card__bg:after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0);
      -webkit-transition: background-color .3s ease;
      transition: background-color .3s ease; }
  .press-card--bg-image .press-card__rails {
    background-image: url("/static/images/trap-news-small-green-light.74685283a6aa.svg"); }
  .press-card--big {
    height: 390px; }
    .press-card--big .press-card__bg {
      opacity: 1;
      background-color: transparent; }
    .press-card--big:hover .press-card__bg {
      opacity: .9; }
    .press-card--big .press-card__date {
      display: none; }
    .press-card--big .press-card__big-title {
      display: inline-block; }
    .press-card--big .press-card__title {
      display: inline-block;
      color: #fff; }
  .press-card:hover .press-card__bg {
    opacity: 1;
    -webkit-transition: opacity .45s ease;
    transition: opacity .45s ease; }
    .press-card:hover .press-card__bg:after {
      background-color: rgba(0, 0, 0, 0.6); }
  .press-card:hover .press-card__title, .press-card:hover .press-card__date {
    color: #fff;
    -webkit-transition: color .4s ease;
    transition: color .4s ease; }
  .press-card:hover .press-card__rails {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .5s ease .1s;
    transition: -webkit-transform .5s ease .1s;
    transition: transform .5s ease .1s;
    transition: transform .5s ease .1s, -webkit-transform .5s ease .1s; }
  .press-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #0baca2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    will-change: opacity;
    -webkit-transition: opacity .35s ease, background-color .35s ease;
    transition: opacity .35s ease, background-color .35s ease;
    z-index: 0; }
  .press-card__content {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    z-index: 2; }
  .press-card__date {
    font-size: 11px;
    color: #18a29b;
    -webkit-transition: color .35s ease;
    transition: color .35s ease; }
  .press-card__big-title {
    display: none;
    font-size: 50px;
    color: #fff; }
  .press-card__title {
    max-width: 305px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
    color: #0baca2;
    will-change: color;
    -webkit-transition: color .35s ease;
    transition: color .35s ease; }
  .press-card__rails {
    position: absolute;
    width: 243px;
    height: 73px;
    bottom: 40px;
    right: -138px;
    background-repeat: no-repeat;
    background-image: none;
    background-size: 100%;
    background-position: center;
    -webkit-transition: -webkit-transform .35s ease;
    transition: -webkit-transform .35s ease;
    transition: transform .35s ease;
    transition: transform .35s ease, -webkit-transform .35s ease;
    -webkit-transform: translate3d(110px, 0, 0);
            transform: translate3d(110px, 0, 0); }
    .press-card__rails-content {
      position: relative;
      width: 100%;
      height: 100%; }
      .press-card__rails-content:after {
        content: '';
        display: block;
        position: absolute;
        top: 23px;
        left: 55px;
        height: 26px;
        width: 13px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        background-image: url("/static/images/icon-arrow-white-right-small.707478d42aa0.svg"); }

.press-list {
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .press-list {
      padding-top: 20px; } }
  .press-list__main-title {
    margin-bottom: 24px; }
    @media only screen and (max-width: 812px) {
      .press-list__main-title.big-title {
        font-size: 24px; } }
  .press-list__container .press-card:nth-child(2) {
    display: none; }
    @media only screen and (max-width: 812px) {
      .press-list__container .press-card:nth-child(2) {
        display: block; } }
  @media only screen and (max-width: 812px) {
    .press-list__container .press-card {
      height: auto;
      width: 100%;
      padding: 28px;
      margin-bottom: 19px;
      background-color: #fff; }
      .press-list__container .press-card:first-of-type {
        display: none; }
      .press-list__container .press-card:nth-child(4) {
        width: 100%; }
      .press-list__container .press-card__content {
        min-height: 68px; }
      .press-list__container .press-card__date {
        margin-bottom: 10px; } }

@media only screen and (max-width: 812px) {
  .index-news-wrapper .press-card {
    display: none; }
    .index-news-wrapper .press-card:nth-child(2), .index-news-wrapper .press-card:nth-child(3), .index-news-wrapper .press-card:nth-child(4) {
      display: block; } }

.press-detail {
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .press-detail {
      padding-top: 20px; } }
  .press-detail__title {
    font-size: 40px;
    width: 58%;
    margin-bottom: 20px;
    line-height: 1.4; }
    @media only screen and (max-width: 812px) {
      .press-detail__title {
        font-size: 26px; } }
    @media only screen and (max-width: 812px) {
      .press-detail__title {
        width: 100%; } }
  .press-detail__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px; }
    @media only screen and (max-width: 812px) {
      .press-detail__content {
        display: block; } }
  .press-detail__text {
    margin-right: 27px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1024px; }
    @media only screen and (max-width: 812px) {
      .press-detail__text {
        margin-right: 0; } }
    .press-detail__text iframe,
    .press-detail__text video {
      width: 800px;
      height: 440px; }
      @media only screen and (max-width: 812px) {
        .press-detail__text iframe,
        .press-detail__text video {
          width: 100%;
          height: 53vw; } }
    @media only screen and (max-width: 812px) {
      .press-detail__text {
        font-size: 14px;
        color: #555; }
        .press-detail__text p {
          margin-bottom: 18px; }
          .press-detail__text p:last-child {
            margin-bottom: 0; } }
    .press-detail__text p {
      margin-bottom: 30px; }
      .press-detail__text p:last-child {
        margin-bottom: 0; }
      @media only screen and (max-width: 812px) {
        .press-detail__text p {
          margin-bottom: 19px; } }
  .press-detail__gallery {
    width: 38%;
    height: 400px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative; }
    @media only screen and (max-width: 812px) {
      .press-detail__gallery {
        width: 100%;
        height: 280px;
        -webkit-box-sizing: content-box;
                box-sizing: content-box;
        padding-bottom: 40px;
        margin-top: 25px; } }
  .press-detail__controller {
    position: absolute;
    bottom: calc(100% + 38px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media only screen and (max-width: 812px) {
      .press-detail__controller {
        position: absolute;
        bottom: 0; } }

.press-more__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px; }

.press-more__title {
  margin-bottom: 30px; }

.press-more .news-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 20px; }
  .press-more .news-card:nth-child(3n + 1) {
    max-width: 495px;
    margin-left: 0; }

.realty-commercial {
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .realty-commercial {
      padding-top: 20px; } }
  .realty-commercial__intro {
    position: relative; }
    @media only screen and (max-width: 812px) {
      .realty-commercial__intro {
        grid-template-columns: auto;
        padding-bottom: 66px; } }
    .realty-commercial__intro-text {
      font-size: 16px;
      line-height: 1.8; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__intro-text {
          font-size: 14px;
          color: #555; }
          .realty-commercial__intro-text p {
            margin-bottom: 18px; }
            .realty-commercial__intro-text p:last-child {
              margin-bottom: 0; } }
      @media only screen and (max-width: 812px) {
        .realty-commercial__intro-text {
          margin-bottom: 21px; } }
    .realty-commercial__intro-flag {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      float: right;
      top: 47px;
      padding: 20px 25px;
      font-size: 1.4rem;
      text-decoration: none;
      -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__intro-flag {
          position: relative;
          width: 100%;
          top: initial;
          right: initial;
          padding: 20px 16px;
          -webkit-box-shadow: initial;
                  box-shadow: initial; } }
    .realty-commercial__intro-link {
      display: block;
      text-decoration: none;
      font-size: 20px;
      color: #0baca2; }
      .realty-commercial__intro-link:after {
        background-color: #18a29b; }
      .realty-commercial__intro-link:hover span:after {
        -webkit-transform: scaleX(0);
                transform: scaleX(0); }
      .realty-commercial__intro-link span {
        display: inline-block;
        margin-bottom: 5px; }
        .realty-commercial__intro-link span:last-child {
          margin-bottom: 0; }
        .realty-commercial__intro-link span:after {
          background-color: #0baca2; }
  .realty-commercial__main-title {
    font-size: 40px;
    margin-bottom: 18px; }
    @media only screen and (max-width: 812px) {
      .realty-commercial__main-title {
        font-size: 26px; } }
  .realty-commercial__offer {
    padding: 38px 0 44px;
    width: 100%;
    background-color: #09A09B; }
    @media only screen and (max-width: 812px) {
      .realty-commercial__offer {
        padding: 22px 0 33px; } }
    .realty-commercial__offer-title {
      color: #fff; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__offer-title {
          font-size: 26px;
          margin-bottom: 24px; } }
    .realty-commercial__offer-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .realty-commercial__offer-item {
      width: 320px;
      margin-right: 25px;
      margin-top: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__offer-item {
          margin-top: 13px; }
          .realty-commercial__offer-item:first-child {
            margin-top: 0; } }
      .realty-commercial__offer-item:nth-child(4n) {
        margin-right: 0; }
    .realty-commercial__offer-icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 24px;
      width: 112px;
      height: 112px;
      border-radius: 100%;
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__offer-icon {
          width: 48px;
          height: 48px;
          background-size: 25px;
          margin-right: 20px; } }
      .realty-commercial__offer-icon.icon1 {
        background-image: url("/static/images/doc-star.a54b05ec2f81.svg"); }
      .realty-commercial__offer-icon.icon2 {
        background-image: url("/static/images/factory.579ad8b161e7.svg"); }
      .realty-commercial__offer-icon.icon3 {
        background-image: url("/static/images/people.5cc320d856e4.svg"); }
      .realty-commercial__offer-icon.icon4 {
        background-image: url("/static/images/hand.26d79aaf158e.svg"); }
    .realty-commercial__offer-text {
      font-weight: 300;
      max-width: 179px;
      font-size: 16px;
      color: #fff; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__offer-text {
          max-width: initial;
          font-size: 14px; } }
  .realty-commercial__purchase {
    padding-top: 37px;
    padding-bottom: 58px; }
    @media only screen and (max-width: 812px) {
      .realty-commercial__purchase {
        padding: 20px 0 0;
        margin-bottom: 29px; } }
    .realty-commercial__purchase-title {
      font-size: 30px; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__purchase-title {
          margin-bottom: 22px; } }
    .realty-commercial__purchase-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .realty-commercial__purchase-item {
      margin-top: 31px;
      margin-right: 22px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      @media only screen and (max-width: 812px) {
        .realty-commercial__purchase-item {
          width: 100%;
          margin-right: 0; }
          .realty-commercial__purchase-item:first-child {
            margin-top: 0; } }
      .realty-commercial__purchase-item:nth-child(2n) {
        margin-right: 0; }
      .realty-commercial__purchase-item-icon {
        width: 131px;
        height: 129px;
        background-color: #09A09B;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("/static/images/monolit-logo.cd4a4ef74816.svg"); }
        .realty-commercial__purchase-item-icon.light-green {
          background-color: #0baca2; }
        @media only screen and (max-width: 812px) {
          .realty-commercial__purchase-item-icon {
            width: 67px;
            height: 100%;
            -ms-flex-negative: 0;
                flex-shrink: 0;
            background-size: 50%; } }
      .realty-commercial__purchase-item-body {
        height: 100%;
        padding-left: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 538px;
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: #fff; }
        @media only screen and (max-width: 812px) {
          .realty-commercial__purchase-item-body {
            width: auto;
            -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                    flex-grow: 1;
            padding: 22px 13px; } }
      .realty-commercial__purchase-item-title {
        font-size: 20px;
        max-width: 490px; }
        @media only screen and (max-width: 812px) {
          .realty-commercial__purchase-item-title {
            font-size: 13px; } }
  .realty-commercial__objects-title {
    font-size: 30px;
    margin-bottom: 8px; }
  .realty-commercial__objects-list {
    padding-bottom: 50px; }
    .realty-commercial__objects-list .common-slider__slider {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .realty-commercial__controller {
    display: none; }
    @media only screen and (max-width: 812px) {
      .realty-commercial__controller {
        display: block;
        margin-top: 25px; } }
    @media only screen and (max-width: 812px) {
      .realty-commercial__controller .slider-controller__container {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

.commercial-card {
  margin-top: 28px;
  margin-right: 24px;
  min-height: 360px;
  width: 320px;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-decoration: none;
  color: #000;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }
  @media only screen and (max-width: 812px) {
    .commercial-card {
      margin-bottom: 0;
      margin-right: 0; } }
  .commercial-card:nth-child(4n) {
    margin-right: 0; }
  .commercial-card:hover {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0); }
  .commercial-card__image {
    width: 100%;
    height: 236px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .commercial-card__body {
    padding-left: 14px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .commercial-card__title {
    font-size: 22px; }
  .commercial-card__button-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 55px;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: #09A09B;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease; }
    .commercial-card__button-link:hover {
      background-color: #0baca2; }

.commercial-project__map {
  position: relative;
  z-index: 1;
  height: 436px;
  background-color: #fafafa; }
  @media only screen and (max-width: 812px) {
    .commercial-project__map {
      height: 194px; } }

.commercial-project .complex-list-slider__content .legend-big {
  min-height: 201px; }

.commercial-project .complex-list-slider__content-text {
  display: none; }

.commercial-project .complex-list-slider .slider-controller {
  bottom: 92px; }

.commercial-objects {
  background-color: #fafafa;
  padding-top: 36px; }
  @media only screen and (max-width: 812px) {
    .commercial-objects {
      padding-top: 23px; } }
  .commercial-objects__title {
    margin-bottom: 24px; }
    @media only screen and (max-width: 812px) {
      .commercial-objects__title {
        font-size: 26px; } }
  .commercial-objects__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .commercial-objects__list {
        padding-bottom: 10px; } }

.commercial-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding-top: 15px;
  cursor: pointer; }
  .commercial-object__image {
    text-align: center;
    height: 248px;
    width: 100%;
    padding: 15px 20px 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .commercial-object__image--empty {
    background-image: url("/static/images/empty-flat.dc6a2af84133.png"); }
  .commercial-object__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #e4e4e4;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .commercial-object__сell {
    padding: 14px 17px 15px 18px; }
    .commercial-object__сell--square, .commercial-object__сell--project {
      border-right: 1px solid #e4e4e4; }
    .commercial-object__сell--square, .commercial-object__сell--price {
      border-bottom: 1px solid #e4e4e4; }
    .commercial-object__сell--square {
      width: 42%; }
    .commercial-object__сell--price {
      width: 58%; }
    .commercial-object__сell--project {
      width: 70%; }
    .commercial-object__сell--floor {
      width: 30%; }
  .commercial-object__info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .commercial-object__info-row:nth-child(2) {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
  .commercial-object__info-title {
    font-size: 12px;
    color: #a6a6a6;
    margin-bottom: 4px; }
  .commercial-object__info-value {
    font-size: 16px; }
    .commercial-object__info-value--price {
      color: #18a29b; }
      @media only screen and (max-width: 812px) {
        .commercial-object__info-value--price {
          pointer-events: none; } }

.commercial-info {
  position: relative; }
  .commercial-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none; }
    @media only screen and (max-width: 812px) {
      .commercial-info__wrapper {
        display: block;
        position: static;
        left: initial;
        -webkit-transform: initial;
                transform: initial;
        padding: 0;
        text-align: center; } }
  .commercial-info__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 70px 37px 48px;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px 0 0 4px;
    pointer-events: all; }
    @media only screen and (max-width: 812px) {
      .commercial-info__main {
        display: block;
        -webkit-box-shadow: initial;
                box-shadow: initial;
        border-radius: 0;
        padding: 0; } }
  .commercial-info__rooms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 1px solid #cbcbcb;
    margin-right: 40px; }
    @media only screen and (max-width: 812px) {
      .commercial-info__rooms {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 5px 10px 10px;
        margin-right: 0;
        border-right: none;
        background-color: #18a29b; } }
  .commercial-info__rooms-value {
    font-size: 60px;
    margin-right: 20px; }
  .commercial-info__rooms-text {
    width: 150px;
    font-size: 18px;
    line-height: 1.3;
    color: #09A09B; }
    @media only screen and (max-width: 812px) {
      .commercial-info__rooms-text {
        text-align: left;
        color: #fff; } }
  .commercial-info__callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media only screen and (max-width: 812px) {
      .commercial-info__callback {
        display: block;
        padding: 22px 45px 25px; } }
  .commercial-info__description {
    font-size: 16px;
    line-height: 1.5625;
    margin-right: 20px; }
    @media only screen and (max-width: 812px) {
      .commercial-info__description {
        margin-right: 0;
        margin-bottom: 10px; } }
  .commercial-info__phone {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: #000;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .commercial-info__phone {
        font-size: 30px; } }
  .commercial-info__catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: 368px;
        flex-basis: 368px;
    padding: 0 30px;
    background-color: #09A09B;
    color: #fff;
    text-decoration: none;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 0;
    pointer-events: all; }
    .commercial-info__catalog:hover {
      background-color: #0ab8b2; }
    @media only screen and (max-width: 812px) {
      .commercial-info__catalog {
        background-color: #fff;
        color: #18a29b;
        -ms-flex-preferred-size: initial;
            flex-basis: initial;
        width: 53.333%;
        padding: 0;
        padding-bottom: 50px;
        margin: 0 auto;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-radius: 0; }
        .commercial-info__catalog:hover {
          background-color: #fff; } }
  .commercial-info__catalog-icon {
    width: 37px;
    height: 47px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: url("/static/images/icon-document-white.3e8704bff88b.svg") center no-repeat;
    background-size: contain;
    margin-right: 15px; }
    @media only screen and (max-width: 812px) {
      .commercial-info__catalog-icon {
        background-image: url("/static/images/icon-document-green.0d01ed9a6155.svg"); } }
  .commercial-info__catalog-text {
    line-height: 1.6;
    font-size: 16px; }
    @media only screen and (max-width: 812px) {
      .commercial-info__catalog-text {
        font-size: 13px;
        text-align: left;
        text-decoration: underline; } }

.commercial-slider {
  position: relative;
  height: 450px; }
  .commercial-slider:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(339.7deg, #000, transparent 41.57%); }
  .commercial-slider .legend-big {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0; }
    .commercial-slider .legend-big:after {
      left: calc(100% - 1px); }
  .commercial-slider__slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .commercial-slider__controller {
    position: absolute;
    z-index: 1;
    bottom: 92px;
    right: 40px; }

.partners-tabs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media only screen and (max-width: 812px) {
  .partners-tabs__tab {
    font-size: 13px; } }

.partners-info__container {
  padding-top: 48px;
  padding-bottom: 65px; }
  @media only screen and (max-width: 812px) {
    .partners-info__container {
      padding-top: 42px;
      padding-bottom: 0; } }

.partners-info__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 63px; }
  @media only screen and (max-width: 812px) {
    .partners-info__intro {
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-bottom: 29px; } }

.partners-info__title {
  width: 377px;
  margin-right: 35px; }
  @media only screen and (max-width: 812px) {
    .partners-info__title {
      margin-right: 0;
      width: 100%;
      margin-bottom: 40px;
      font-size: 23px; } }

.partners-info__stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  @media only screen and (max-width: 812px) {
    .partners-info__stage {
      display: block;
      width: 100%; } }

.partners-info__principles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.partners-info__principles-title {
  margin-bottom: 45px; }
  @media only screen and (max-width: 812px) {
    .partners-info__principles-title {
      font-size: 26px;
      margin-bottom: 24px; }
      .partners-info__principles-title span {
        display: none; } }

.partners-info__arrow,
.partners-info .partners-info__intro:after {
  display: none; }
  @media only screen and (max-width: 812px) {
    .partners-info__arrow,
    .partners-info .partners-info__intro:after {
      position: absolute;
      bottom: 0;
      right: 0;
      display: block;
      height: 44px;
      cursor: pointer; } }

.partners-info .partners-info__intro:after {
  content: '';
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  width: 152px;
  pointer-events: none;
  right: -16px; }

.partners-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .partners-stage__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  @media only screen and (max-width: 812px) {
    .partners-stage__slide {
      max-width: 230px;
      width: 100%;
      margin-right: 25px;
      outline: none; } }
  .partners-stage__number {
    font-size: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 89px;
    height: 89px;
    margin-right: 15px;
    border: 2px solid #18a29b;
    border-radius: 50%; }
    @media only screen and (max-width: 812px) {
      .partners-stage__number {
        margin-right: 10px;
        font-size: 20px;
        width: 44px;
        height: 44px; } }
  .partners-stage__text {
    width: 131px;
    font-size: 25px; }
    @media only screen and (max-width: 812px) {
      .partners-stage__text {
        width: 100%;
        max-width: 170px; } }
  .partners-stage:after {
    content: '';
    display: block;
    width: 11.5px;
    height: 23px;
    background: url("/static/images/icon-arrow-stage.5bf8bd035da1.svg") center no-repeat;
    background-size: contain;
    margin-left: 15px; }
  .partners-stage:last-child:after {
    display: none; }

.partners-principle {
  width: 295px;
  margin-bottom: 49px;
  margin-left: 50px; }
  @media only screen and (max-width: 812px) {
    .partners-principle {
      margin-left: 0;
      margin-bottom: 38px; }
      .partners-principle:last-of-type {
        margin-bottom: 28px; } }
  .partners-principle:nth-child(4n+1) {
    margin-left: 0; }
  .partners-principle__title {
    color: #18a29b;
    font-size: 22px;
    margin-bottom: 20px; }
  .partners-principle__description {
    font-size: 14px;
    line-height: 1.78; }

.partners-income__title {
  margin-bottom: 35px; }
  @media only screen and (max-width: 812px) {
    .partners-income__title {
      margin-bottom: 25px;
      font-size: 26px; }
      .partners-income__title span {
        display: none; } }

.partners-income__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 812px) {
    .partners-income__container {
      display: block; } }

.partners-income__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  @media only screen and (max-width: 812px) {
    .partners-income__text {
      display: block; } }

.partners-income__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 1.18;
  margin-right: 15px; }
  @media only screen and (max-width: 812px) {
    .partners-income__item {
      display: block;
      margin-bottom: 27px;
      font-size: 13px; } }
  .partners-income__item:before {
    display: block;
    content: '';
    height: 100%;
    width: 4px;
    background-color: #18a29b;
    margin-right: 18px; }

.partners-income__button {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media only screen and (max-width: 812px) {
    .partners-income__button {
      min-height: 50px;
      margin-top: 14px;
      border-radius: 0;
      background: #000;
      -webkit-box-shadow: none;
              box-shadow: none; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .partners-income__button {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  .partners-income__button span.desktop {
    display: inline-block; }
    @media only screen and (max-width: 812px) {
      .partners-income__button span.desktop {
        display: none; } }
  .partners-income__button span.mobile {
    display: none; }
    @media only screen and (max-width: 812px) {
      .partners-income__button span.mobile {
        display: inline-block; } }

.partners-steps {
  color: #fff;
  background-color: #18a29b;
  padding: 37px 0 28px; }
  @media only screen and (max-width: 812px) {
    .partners-steps {
      padding: 24px 0 0; } }
  .partners-steps__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 44px; }
    @media only screen and (max-width: 812px) {
      .partners-steps__container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-bottom: 10px; } }
  .partners-steps__title {
    color: #fff;
    margin-bottom: 40px; }
    @media only screen and (max-width: 812px) {
      .partners-steps__title {
        font-size: 26px;
        margin-bottom: 35px; }
        .partners-steps__title span {
          display: none; } }
  .partners-steps__documents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .partners-steps__documents {
        padding-top: 25px;
        padding-left: 16px;
        background-color: #545454; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .partners-steps__documents {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }

.partners-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 812px) {
    .partners-step {
      margin-bottom: 20px; } }
  .partners-step:last-child:after {
    display: none; }
  .partners-step:after {
    content: '';
    display: block;
    height: 45px;
    width: 14px;
    background: url("/static/images/icon-arrow-step.093d335ce5ac.svg") no-repeat center;
    background-size: contain; }
    @media only screen and (max-width: 812px) {
      .partners-step:after {
        display: none; } }
  .partners-step__icon {
    width: 112px;
    height: 112px;
    background-color: #fff;
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 25px; }
    @media only screen and (max-width: 812px) {
      .partners-step__icon {
        width: 69px;
        height: 69px;
        margin-right: 21px;
        background-size: 33px auto; } }
    .partners-step__icon--document {
      background-image: url("/static/images/doc-star.a54b05ec2f81.svg"); }
    .partners-step__icon--people {
      background-image: url("/static/images/people.5cc320d856e4.svg"); }
    .partners-step__icon--deal {
      background-image: url("/static/images/icon-deal.77fe42b31c50.svg"); }
    .partners-step__icon--income {
      background-image: url("/static/images/hand.26d79aaf158e.svg"); }
  .partners-step__text {
    max-width: 140px;
    margin-right: 15px;
    text-transform: uppercase;
    font-size: 16px; }

.partners-document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  margin-left: 60px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  opacity: 1; }
  @media only screen and (max-width: 812px) {
    .partners-document {
      padding-right: 20px;
      margin-bottom: 27px;
      margin-left: 0; } }
  .partners-document:nth-child(5n+1) {
    margin-left: 0; }
  .partners-document:hover {
    opacity: .7; }
  .partners-document__icon {
    width: 38px;
    height: 48px;
    background: url("/static/images/icon-document-white.3e8704bff88b.svg") no-repeat center;
    background-size: contain;
    margin-right: 15px; }
  .partners-document__title {
    padding-top: 3px;
    font-size: 16px; }
  .partners-document__property {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase; }
  .partners-document__titile {
    width: 170px;
    margin-bottom: 5px; }

.partners-callback {
  background-color: #515151;
  padding: 60px 0 58px;
  color: #fff; }
  @media only screen and (max-width: 812px) {
    .partners-callback {
      padding: 15px 0;
      background-color: #fff;
      color: #000; } }
  .partners-callback__title {
    color: inherit;
    margin-right: auto; }
    .partners-callback__title span.mobile {
      display: none; }
    .partners-callback__title span.desktop {
      display: inline-block; }
    @media only screen and (max-width: 812px) {
      .partners-callback__title span.mobile {
        display: inline-block; }
      .partners-callback__title span.desktop {
        display: none; } }
  .partners-callback__mail {
    color: inherit;
    margin-right: 70px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-size: 20px;
    line-height: 1.55; }
    .partners-callback__mail:after {
      display: none; }
    @media only screen and (max-width: 812px) {
      .partners-callback__mail {
        display: inline-block;
        color: #0baca2;
        border-bottom: none; }
        .partners-callback__mail:after {
          display: block;
          margin-top: -4px;
          background-color: #0baca2;
          height: 2px; } }
  .partners-callback__phone {
    color: inherit;
    text-decoration: none;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .partners-callback__phone {
        margin-top: 15px;
        font-size: 23px; } }

.partners-objects {
  padding: 25px 0 30px;
  background-color: #fff; }
  @media only screen and (max-width: 812px) {
    .partners-objects {
      padding: 25px 0 0;
      background-color: #f6f6f6; } }
  .partners-objects__title {
    margin-bottom: 30px; }

.partners-companys {
  padding: 30px 0;
  background-color: #fff; }
  .partners-companys__title {
    margin-bottom: 35px; }
  .partners-companys__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media only screen and (max-width: 812px) {
      .partners-companys__list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

.partners-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 322px;
  height: 133px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 30px;
  margin-left: 24px;
  pointer-events: none; }
  .partners-company:after, .partners-company:before {
    display: none; }
  .partners-company.link, .partners-company.link-color, .partners-company.mortgage-manager__email, .partners-company.commercial-info__phone, .partners-company.contacts-office__phone-number, .partners-company.contacts-office__email-link {
    pointer-events: all; }
  @media only screen and (max-width: 812px) {
    .partners-company {
      width: 100%;
      max-width: 130px;
      margin-right: 20px;
      margin-left: 20px;
      margin-bottom: 30px;
      height: auto;
      -webkit-box-shadow: none;
              box-shadow: none; } }
  .partners-company:nth-child(4n+1) {
    margin-left: 0; }
    @media only screen and (max-width: 812px) {
      .partners-company:nth-child(4n+1) {
        margin-right: 20px;
        margin-left: 20px;
        margin-bottom: 30px; } }
  .partners-company__image {
    max-width: 190px;
    max-height: 90px; }

.partners-forms {
  padding: 65px 0 60px;
  background-color: #fff;
  position: relative; }
  @media only screen and (max-width: 812px) {
    .partners-forms {
      padding: 32px 0 0; } }
  .partners-forms__title {
    margin-bottom: 33px; }
    @media only screen and (max-width: 812px) {
      .partners-forms__title {
        font-size: 24px; } }
  .partners-forms__tabs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 812px) {
      .partners-forms__tabs-container {
        width: 100%;
        overflow-y: scroll; } }
  @media only screen and (max-width: 812px) {
    .partners-forms__tab {
      font-size: 13px; } }

.partners-form {
  padding: 33px 0 60px;
  display: none; }
  @media only screen and (max-width: 812px) {
    .partners-form {
      padding: 33px 0 0; } }
  .partners-form.active {
    display: block; }
  .partners-form__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .partners-form__field {
    margin-right: 24px;
    margin-bottom: 33px;
    cursor: pointer; }
  .partners-form__field-name {
    display: block;
    margin-left: 24px;
    line-height: 1.2;
    margin-bottom: 15px; }
  .partners-form__input {
    width: 322px;
    min-height: 35px;
    padding: 9px 15px 9px 24px;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    border-radius: 16px;
    border: none;
    font-size: 14px; }
    .partners-form__input:focus {
      outline: none;
      -webkit-box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.2);
              box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.2); }
    @media only screen and (max-width: 812px) {
      .partners-form__input {
        width: calc(100vw - 16px - 16px);
        max-width: 322px; } }
    .partners-form__input.file {
      position: relative;
      padding-left: 70px; }
      .partners-form__input.file:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 58px;
        background-color: #09A09B;
        background-image: url("/static/images/upload-button.65248ce4c741.svg");
        background-position: center;
        background-size: 25px auto;
        background-repeat: no-repeat;
        color: #fff; }
  .partners-form__notifications {
    margin-bottom: 35px; }
  .partners-form__notifications-title {
    padding-left: 12px;
    margin-bottom: 17px; }
  .partners-form__notification {
    margin-left: 12px;
    cursor: pointer; }
  .partners-form__notification-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 17px;
    height: 17px;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-right: 7px;
    border-radius: 50%;
    vertical-align: middle; }
    .partners-form__notification-button:checked:after {
      content: '';
      display: block;
      position: absolute;
      width: 5px;
      height: 5px;
      background-color: #000;
      border-radius: 50%; }
  .partners-form__submit {
    margin-left: 12px;
    padding: 11px 65px; }
    @media only screen and (max-width: 812px) {
      .partners-form__submit {
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        min-height: 50px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .partners-form__submit {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  .partners-form__modal {
    top: 0;
    left: 0;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-transform: translate(-150vw, 0);
            transform: translate(-150vw, 0);
    -webkit-transition: opacity .5s ease, -webkit-transform 0s .5s ease;
    transition: opacity .5s ease, -webkit-transform 0s .5s ease;
    transition: transform 0s .5s ease, opacity .5s ease;
    transition: transform 0s .5s ease, opacity .5s ease, -webkit-transform 0s .5s ease;
    z-index: 10; }
    .partners-form__modal.active {
      opacity: 1;
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      -webkit-transition: opacity .5s ease, -webkit-transform 0s ease;
      transition: opacity .5s ease, -webkit-transform 0s ease;
      transition: transform 0s ease, opacity .5s ease;
      transition: transform 0s ease, opacity .5s ease, -webkit-transform 0s ease; }
  .partners-form__dialog {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column; }
    .partners-form__dialog.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .partners-form__dialog-message {
      margin-top: 24px;
      color: #fff;
      font-size: 18px; }
      @media only screen and (max-width: 812px) {
        .partners-form__dialog-message {
          font-size: 16px;
          text-align: center; } }
    .partners-form__dialog-icon {
      display: block;
      margin: 0 auto; }
  .partners-form .selectric {
    padding-left: 15px;
    width: 322px;
    height: 33px;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    border-radius: 16px;
    border: none; }
    @media only screen and (max-width: 812px) {
      .partners-form .selectric {
        width: calc(100vw - 16px - 16px);
        max-width: 322px; } }
    .partners-form .selectric .label {
      color: inherit; }
    .partners-form .selectric .button, .partners-form .selectric .button__rounded, .partners-form .selectric .popup__submit, .partners-form .selectric .mortgage-manager__request-button, .partners-form .selectric .partners-form__submit, .partners-form .selectric .realty-filter__action-button, .partners-form .selectric .contacts-info__button, .partners-form .selectric .button__military, .partners-form .selectric .button-big-rounded {
      background-color: #0baca2; }
      .partners-form .selectric .button:after, .partners-form .selectric .button__rounded:after, .partners-form .selectric .popup__submit:after, .partners-form .selectric .mortgage-manager__request-button:after, .partners-form .selectric .partners-form__submit:after, .partners-form .selectric .realty-filter__action-button:after, .partners-form .selectric .contacts-info__button:after, .partners-form .selectric .button__military:after, .partners-form .selectric .button-big-rounded:after {
        border-top-color: #fff; }
      .partners-form .selectric .button:hover, .partners-form .selectric .button__rounded:hover, .partners-form .selectric .popup__submit:hover, .partners-form .selectric .mortgage-manager__request-button:hover, .partners-form .selectric .partners-form__submit:hover, .partners-form .selectric .realty-filter__action-button:hover, .partners-form .selectric .contacts-info__button:hover, .partners-form .selectric .button__military:hover, .partners-form .selectric .button-big-rounded:hover, .partners-form .selectric .button:focus, .partners-form .selectric .button__rounded:focus, .partners-form .selectric .popup__submit:focus, .partners-form .selectric .mortgage-manager__request-button:focus, .partners-form .selectric .partners-form__submit:focus, .partners-form .selectric .realty-filter__action-button:focus, .partners-form .selectric .contacts-info__button:focus, .partners-form .selectric .button__military:focus, .partners-form .selectric .button-big-rounded:focus {
        background-color: #0baca2; }
  .partners-form .selectric-disabled {
    color: transparent; }

.partners {
  padding-top: 50px;
  background-color: #f6f6f6; }
  @media only screen and (max-width: 812px) {
    .partners {
      padding-top: 20px; } }
  .partners__title {
    margin-bottom: 30px;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .partners__title {
        font-size: 26px; } }
  .partners__container {
    background-color: #fff; }

.partners-info__crm_btn #MacroCabinetBtn {
  text-align: left; }
  .partners-info__crm_btn #MacroCabinetBtn button {
    background-color: #18a29b !important; }

.realty-list {
  min-height: 100vh;
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .realty-list {
      padding-top: 26px; } }
  .realty-list__main-title {
    margin-bottom: 20px;
    font-size: 40px; }
    @media only screen and (max-width: 812px) {
      .realty-list__main-title {
        font-size: 26px; } }
  .realty-list__body {
    background-color: #fafafa; }
  .realty-list__params {
    padding: 0 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 76px; }
    @media only screen and (max-width: 812px) {
      .realty-list__params {
        padding: 0 28px;
        height: 58px; } }
    .realty-list__params.active .realty-list__sort, .realty-list__params._active .realty-list__sort {
      opacity: 1;
      pointer-events: all;
      -webkit-transition: opacity .6s ease .2s;
      transition: opacity .6s ease .2s; }
    .realty-list__params-title {
      color: #a6a6a6;
      font-size: 13px; }
  .realty-list__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    -webkit-transition: opacity .3s ease .1s;
    transition: opacity .3s ease .1s;
    opacity: 0;
    pointer-events: none; }
    .realty-list__sort-container {
      margin-left: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .realty-list__sort-button {
      position: relative;
      padding-right: 14px;
      margin-right: 12px;
      font-size: 13px;
      color: #020202;
      -webkit-transition: color .25s ease, opacity .25s ease;
      transition: color .25s ease, opacity .25s ease; }
      .realty-list__sort-button:hover {
        color: #09A09B; }
        .realty-list__sort-button:hover:focus {
          opacity: 1; }
      .realty-list__sort-button:focus {
        opacity: .7; }
      .realty-list__sort-button:after, .realty-list__sort-button:before {
        content: '';
        position: absolute;
        top: 5px;
        right: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent; }
      .realty-list__sort-button:after {
        top: 50%;
        border-top: 5px solid #a6a6a6;
        -webkit-transform: translate(0, 3px);
                transform: translate(0, 3px); }
      .realty-list__sort-button:before {
        bottom: 50%;
        border-bottom: 5px solid #a6a6a6;
        -webkit-transform: translate(0, -2px);
                transform: translate(0, -2px); }
      .realty-list__sort-button.ASC:before, .realty-list-table__item.ASC .realty-list__sort-button:before {
        border-bottom-color: #09A09B; }
      .realty-list__sort-button.DESC:after, .realty-list-table__item.DESC .realty-list__sort-button:after {
        border-top-color: #09A09B; }
  .realty-list__mode {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    @media only screen and (max-width: 812px) {
      .realty-list__mode {
        display: none; } }
    .realty-list__mode-container {
      margin-left: 16px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .realty-list__mode-button {
      position: relative;
      padding-left: 22px;
      margin-right: 17px;
      color: #020202;
      font-size: 13px;
      -webkit-transition: color .25s ease;
      transition: color .25s ease; }
      .realty-list__mode-button.active, .realty-list__mode-button:hover {
        color: #09A09B; }
        .realty-list__mode-button.active:before, .realty-list__mode-button:hover:before {
          opacity: 0; }
        .realty-list__mode-button.active:after, .realty-list__mode-button:hover:after {
          opacity: 1; }
      .realty-list__mode-button.cards-mode:after {
        background-image: url("/static/images/dots-green.3cd8ac4f954b.svg"); }
      .realty-list__mode-button.cards-mode:before {
        background-image: url("/static/images/dots-black.1402f88a5267.svg"); }
      .realty-list__mode-button.list-mode:after {
        background-image: url("/static/images/gamburger-green.7af1dbbd1f3d.svg"); }
      .realty-list__mode-button.list-mode:before {
        background-image: url("/static/images/gamburger-black.90bc08fc0032.svg"); }
      .realty-list__mode-button:after, .realty-list__mode-button:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 14px;
        height: 14px;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease; }
      .realty-list__mode-button:after {
        opacity: 0; }
      .realty-list__mode-button:before {
        opacity: 1; }
  .realty-list__cards {
    margin-bottom: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .realty-list-table__sorting {
    position: relative;
    width: 100%;
    z-index: 4; }
  .realty-list-table__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 34px;
    height: 65px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    -webkit-transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    transition: opacity 0.3s ease 0.1s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    transition: opacity 0.3s ease 0.1s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    opacity: 0;
    pointer-events: none; }
    .realty-list-table__header.active {
      opacity: 1;
      pointer-events: all;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
      transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
      transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
      transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
      z-index: 4; }
  .realty-list-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 34px;
    height: 82px;
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
    color: #000;
    text-decoration: none; }
    .realty-list-table__row:first-of-type {
      margin-top: 65px; }
    .realty-list-table__row:hover .realty-list-table__item-title {
      color: #09A09B; }
    .realty-list-table__row:hover .realty-list-table__item-shield {
      background: #0baca2; }
    .realty-list-table__row:last-of-type {
      border-bottom: none; }
  .realty-list-table__item {
    padding-right: 20px; }
    .realty-list-table__item-title {
      font-size: 14px;
      color: #000;
      -webkit-transition: color .25s ease;
      transition: color .25s ease; }
    .realty-list-table__item-shield {
      display: inline-block;
      width: 51px;
      text-align: center;
      line-height: 26px;
      height: 26px;
      background: #09A09B;
      border-radius: 20px;
      color: #fff;
      -webkit-transition: background .25s ease;
      transition: background .25s ease; }
    .realty-list-table__item.id {
      width: 120px; }
    .realty-list-table__item.complex {
      width: 190px; }
    .realty-list-table__item.section {
      width: 150px; }
    .realty-list-table__item.floor {
      width: 143px; }
    .realty-list-table__item.room {
      width: 149px; }
    .realty-list-table__item.area {
      width: 161px; }
      .realty-list-table__item.area sup {
        font-size: 10px; }
    .realty-list-table__item.price-per-meter {
      width: 190px; }
    .realty-list-table__item.price {
      width: 150px; }
  .realty-list__test-container {
    display: none; }
    .realty-list__test-container.active {
      display: block; }
  .realty-list__container {
    min-height: calc(100vh - 598px - 110px);
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .realty-list__container .container.cards, .realty-list__container .cards.complex-list-finished__body, .realty-list__container .cards.flat-types__wrap, .realty-list__container .cards.company-layout__body, .realty-list__container .cards.company-chess, .realty-list__container .cards.history-layout, .realty-list__container .cards.company-history__container, .realty-list__container .cards.partners-info__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media only screen and (max-width: 812px) {
        .realty-list__container .container.cards, .realty-list__container .cards.complex-list-finished__body, .realty-list__container .cards.flat-types__wrap, .realty-list__container .cards.company-layout__body, .realty-list__container .cards.company-chess, .realty-list__container .cards.history-layout, .realty-list__container .cards.company-history__container, .realty-list__container .cards.partners-info__container {
          margin-bottom: 10px; } }
    .realty-list__container.active {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      pointer-events: all;
      position: relative;
      opacity: 1;
      -webkit-transition: opacity 0.6s ease 0.1s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
      transition: opacity 0.6s ease 0.1s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
      transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
      transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s; }
  .realty-list .flat-card, .realty-list .parking-card, .realty-list .mortgage-buy__section, .realty-list .commercial-object {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
    -webkit-transition: opacity 0.4s ease 0.1s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-box-shadow 0.3s ease;
    transition: opacity 0.4s ease 0.1s, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-box-shadow 0.3s ease;
    transition: opacity 0.4s ease 0.1s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, box-shadow 0.3s ease;
    transition: opacity 0.4s ease 0.1s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, box-shadow 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-box-shadow 0.3s ease; }
    .realty-list .flat-card.active, .realty-list .active.parking-card, .realty-list .active.mortgage-buy__section, .realty-list .active.commercial-object {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
      .realty-list .flat-card.active:hover, .realty-list .active.parking-card:hover, .realty-list .active.mortgage-buy__section:hover, .realty-list .active.commercial-object:hover {
        -webkit-transform: translate3d(0, -4px, 0);
                transform: translate3d(0, -4px, 0); }

.selectric-realty-filter-dd {
  display: block;
  width: 184px;
  max-width: 184px; }
  .selectric-realty-filter-dd.selectric-open .selectric {
    border-radius: 20px 20px 0 0; }
  .selectric-realty-filter-dd .selectric {
    width: 184px;
    max-width: 184px;
    border: 0;
    border-radius: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0))), #00998f;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #00998f; }
    .selectric-realty-filter-dd .selectric span.label {
      margin: 0 38px 0 20px;
      font-size: 16px;
      color: white; }
    .selectric-realty-filter-dd .selectric .button, .selectric-realty-filter-dd .selectric .button__rounded, .selectric-realty-filter-dd .selectric .popup__submit, .selectric-realty-filter-dd .selectric .mortgage-manager__request-button, .selectric-realty-filter-dd .selectric .partners-form__submit, .selectric-realty-filter-dd .selectric .realty-filter__action-button, .selectric-realty-filter-dd .selectric .contacts-info__button, .selectric-realty-filter-dd .selectric .button__military, .selectric-realty-filter-dd .selectric .button-big-rounded {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: none; }
      .selectric-realty-filter-dd .selectric .button:after, .selectric-realty-filter-dd .selectric .button__rounded:after, .selectric-realty-filter-dd .selectric .popup__submit:after, .selectric-realty-filter-dd .selectric .mortgage-manager__request-button:after, .selectric-realty-filter-dd .selectric .partners-form__submit:after, .selectric-realty-filter-dd .selectric .realty-filter__action-button:after, .selectric-realty-filter-dd .selectric .contacts-info__button:after, .selectric-realty-filter-dd .selectric .button__military:after, .selectric-realty-filter-dd .selectric .button-big-rounded:after {
        position: relative;
        left: auto;
        top: auto;
        display: block;
        border: 6px solid transparent;
        border-top-color: white;
        -webkit-transform: translateY(4px);
                transform: translateY(4px); }
  .selectric-realty-filter-dd .selectric-items {
    border: none;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden; }
    .selectric-realty-filter-dd .selectric-items .selectric-scroll > ul > li:first-child {
      display: none; }
    .selectric-realty-filter-dd .selectric-items .selectric-group.disabled li {
      display: none; }
    .selectric-realty-filter-dd .selectric-items li {
      height: 38px;
      padding: 0 20px;
      font-size: 14px;
      line-height: 38px;
      color: black; }
      .selectric-realty-filter-dd .selectric-items li.selected {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0))), #00998f;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #00998f;
        color: white; }

.realty-filter.active .realty-filter__main {
  max-height: 260px;
  -webkit-transition: max-height .3s ease-in;
  transition: max-height .3s ease-in; }
  @media only screen and (max-width: 812px) {
    .realty-filter.active .realty-filter__main {
      max-height: 1028px;
      -webkit-transition: max-height 0s ease-in;
      transition: max-height 0s ease-in; } }

.realty-filter.active .realty-filter__row:nth-child(2) {
  opacity: 1;
  -ms-pointer-events: auto;
  pointer-events: auto;
  -webkit-transition: opacity .3s ease-in .3s;
  transition: opacity .3s ease-in .3s; }
  @media only screen and (max-width: 812px) {
    .realty-filter.active .realty-filter__row:nth-child(2) {
      -webkit-transition: opacity 0s ease-in;
      transition: opacity 0s ease-in; } }

.realty-filter-slider {
  width: 296px; }
  @media only screen and (max-width: 812px) {
    .realty-filter-slider {
      width: 100vw;
      max-width: 296px; } }
  .realty-filter-slider__item {
    margin-bottom: 16px;
    height: 6px; }
    .realty-filter-slider__item.noUi-target {
      -webkit-box-shadow: none;
              box-shadow: none;
      background-color: #fff;
      outline: none;
      border: none;
      border-radius: 12px; }
  .realty-filter-slider__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .realty-filter-slider__input input {
    padding: 0 5px;
    margin: 0 14px;
    width: 90px;
    height: 28px;
    line-height: 28px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    font-size: 12px;
    background: #fff;
    text-align: center;
    color: #000;
    border: none;
    -webkit-transition: -webkit-box-shadow .25s ease;
    transition: -webkit-box-shadow .25s ease;
    transition: box-shadow .25s ease;
    transition: box-shadow .25s ease, -webkit-box-shadow .25s ease;
    outline: none; }
    .realty-filter-slider__input input:focus {
      -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.4);
              box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.4); }
  .realty-filter-slider__input span {
    color: #a6a6a6;
    font-size: 11px; }

.realty-filter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .realty-filter__row:nth-child(2) {
    opacity: 0;
    margin-top: 20px;
    -ms-pointer-events: none;
    pointer-events: none;
    -webkit-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in; }
    @media only screen and (max-width: 812px) {
      .realty-filter__row:nth-child(2) {
        -webkit-transition: opacity 0s ease-in;
        transition: opacity 0s ease-in; } }
  @media only screen and (max-width: 812px) {
    .realty-filter__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column; } }

.realty-filter__grid {
  display: grid;
  grid-template-columns: auto auto auto; }
  @media only screen and (max-width: 812px) {
    .realty-filter__grid {
      grid-template-columns: auto; } }

.realty-filter__main {
  padding: 19px 33px 19px 17px;
  max-height: 120px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #f6f6f6;
  -webkit-transition: max-height .3s ease-in .3s;
  transition: max-height .3s ease-in .3s; }
  @media only screen and (max-width: 812px) {
    .realty-filter__main {
      max-height: 464px;
      padding: 19px 16px;
      -webkit-box-shadow: none;
              box-shadow: none;
      -webkit-transition: max-height 0s ease-in;
      transition: max-height 0s ease-in; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .realty-filter__main {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }

.realty-filter__label {
  margin-bottom: 15px;
  font-size: 15px; }

.realty-filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
  min-height: 88px; }
  .realty-filter__item:last-child {
    width: 344px; }
  .realty-filter__item--empty {
    min-height: 0px; }
  @media only screen and (max-width: 812px) {
    .realty-filter__item {
      margin-bottom: 25px;
      padding: 0; }
      .realty-filter__item:last-of-type {
        margin-bottom: 0; } }

.realty-filter__button {
  margin-right: 8px; }
  .realty-filter__button:last-of-type {
    margin-right: 0; }

.realty-filter-selector {
  position: relative;
  height: 52px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #09A09B;
  color: #fff;
  z-index: 2; }
  .realty-filter-selector.active {
    z-index: 4; }
    .realty-filter-selector.active .realty-filter-selector__list {
      display: block; }
  .realty-filter-selector__main {
    width: 282px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 2; }
    @media only screen and (max-width: 812px) {
      .realty-filter-selector__main {
        width: 293px; } }
  .realty-filter-selector__title {
    max-width: 185px;
    font-size: 16px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden; }
  .realty-filter-selector__image {
    margin-left: 4px;
    margin-top: 4px;
    margin-right: 11px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 100%; }
  .realty-filter-selector__arrow {
    position: absolute;
    top: calc(50% + 3.5px);
    right: 20px;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff; }
  .realty-filter-selector__list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% - 22px);
    z-index: 1; }
    .realty-filter-selector__list-container {
      position: relative;
      padding-top: 22px; }
      .realty-filter-selector__list-container:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 282px;
        background-color: #09A09B;
        pointer-events: none;
        z-index: 0;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px; }
        @media only screen and (max-width: 812px) {
          .realty-filter-selector__list-container:after {
            width: 293px; } }
    .realty-filter-selector__list-items {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      width: 100vw;
      max-width: calc(1440px - 140px);
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 0 30px 17px;
      min-height: 215px;
      min-width: 320px;
      background-color: #09A09B;
      -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
              box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      border-top-left-radius: 0;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
      z-index: 3; }
      @media only screen and (max-width: 812px) {
        .realty-filter-selector__list-items {
          width: 293px;
          min-width: 0;
          padding: 20px 24px 17px;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
  .realty-filter-selector__item {
    margin-top: 49px;
    margin-right: 62px;
    width: 100px;
    min-height: 171px;
    text-align: center;
    cursor: pointer; }
    @media only screen and (max-width: 812px) {
      .realty-filter-selector__item {
        margin-bottom: 10px;
        margin-top: 0;
        margin-right: 0; } }
    .realty-filter-selector__item.active .realty-filter-selector__item-ava:after {
      display: block; }
    .realty-filter-selector__item:last-of-type {
      margin-right: 0; }
    .realty-filter-selector__item-ava {
      position: relative;
      width: 92px;
      height: 92px;
      border-radius: 100%;
      background-color: #fff; }
      .realty-filter-selector__item-ava img {
        position: absolute;
        left: 50%;
        top: -10px;
        right: 0;
        display: block;
        width: auto;
        max-height: 80px;
        height: auto;
        -webkit-transform: translate3d(-50%, 0, 0);
                transform: translate3d(-50%, 0, 0); }
      .realty-filter-selector__item-ava:after {
        content: '';
        display: none;
        position: absolute;
        top: -8px;
        right: -7px;
        width: 32px;
        height: 32px;
        border-radius: 100%;
        border: 2px solid #fff;
        background-color: #219653;
        background-image: url("/static/images/done-icon-white.bc677b5f75e4.svg");
        background-repeat: no-repeat;
        background-position: center; }
    .realty-filter-selector__item-title {
      margin: 11px auto 0;
      min-height: 34px;
      max-width: 94px;
      font-size: 14px;
      text-align: center; }
  .realty-filter-selector__image {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-image: url("/static/images/family-default.9ab5b9c308c5.png"); }
    .realty-filter-selector__image.active {
      background-size: 27px auto; }

.realty-filter__result-back {
  display: block;
  line-height: 1.5;
  font-size: 15px;
  cursor: pointer; }
  .realty-filter__result-back:hover span:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }
  .realty-filter__result-back span {
    display: inline-block;
    color: #09A09B; }
    .realty-filter__result-back span:after {
      margin-top: -2px;
      background-color: #09A09B; }
  .realty-filter__result-back.hidden {
    display: none; }

.realty-filter__reset, .realty-filter__show-more {
  position: relative;
  padding-left: 17px;
  margin-right: 64px;
  font-size: 13px;
  -webkit-transition: color .25s ease;
  transition: color .25s ease; }
  @media only screen and (max-width: 812px) {
    .realty-filter__reset, .realty-filter__show-more {
      margin-right: 16px;
      font-size: 12px; } }
  .realty-filter__reset:last-child, .realty-filter__show-more:last-child {
    margin-right: 0; }
  .realty-filter__reset:hover, .realty-filter__show-more:hover {
    color: #0baca2; }
  .realty-filter__reset:active, .realty-filter__show-more:active {
    color: #09A09B; }
  .realty-filter__reset:before, .realty-filter__show-more:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 11px;
    height: 11px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in; }

.realty-filter__reset {
  position: relative;
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease; }
  @media only screen and (max-width: 812px) {
    .realty-filter__reset {
      margin-left: 0; } }
  .realty-filter__reset:before {
    background-image: url("/static/images/cross-green.68c68428dd7d.svg"); }

.realty-filter__show-more:before {
  -webkit-transform: translate(0, -75%) rotate(0);
          transform: translate(0, -75%) rotate(0);
  background-image: url("/static/images/arrow-bottom-green.31ddeaf65051.svg"); }

.realty-filter__show-more.active:before {
  -webkit-transform: translate(0, -25%) rotate(-180deg);
          transform: translate(0, -25%) rotate(-180deg); }

.realty-filter__control {
  position: relative;
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 91px;
  -webkit-transition: height .25s ease;
  transition: height .25s ease; }
  @media only screen and (max-width: 812px) {
    .realty-filter__control {
      height: 108px;
      margin-top: 0; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .realty-filter__control {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  .realty-filter__control.active {
    height: 150px; }
    @media only screen and (max-width: 812px) {
      .realty-filter__control.active {
        height: 108px; } }
    .realty-filter__control.active .realty-filter-applied__body {
      opacity: 1;
      pointer-events: all; }
    .realty-filter__control.active .realty-filter__reset {
      opacity: 1;
      pointer-events: all; }
  .realty-filter__control-aside {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 42px;
    height: 100%; }
    @media only screen and (max-width: 812px) {
      .realty-filter__control-aside {
        padding: 0 15px; } }
  .realty-filter__control-adds {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 42px; }
    @media only screen and (max-width: 812px) {
      .realty-filter__control-adds {
        padding-top: 74px; } }

.realty-filter__action-block {
  max-width: 382px;
  margin: 0 auto;
  text-align: center; }
  @media only screen and (max-width: 812px) {
    .realty-filter__action-block {
      max-width: 100%;
      width: 100%;
      margin: 0; } }

.realty-filter__action-button {
  padding: 7px 46px 9px;
  margin-top: 29px;
  min-width: 283px;
  font-weight: 300; }
  @media only screen and (max-width: 812px) {
    .realty-filter__action-button {
      width: 100%;
      height: 52px;
      border-radius: 0;
      margin-top: 0;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .realty-filter__action-button:hover {
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .realty-filter__action-button.hidden {
    display: none; }

.realty-filter-applied__body {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  pointer-events: none; }
  @media only screen and (max-width: 812px) {
    .realty-filter-applied__body {
      display: none; } }

.realty-filter-applied__title {
  margin-right: 28px;
  font-size: 13px;
  color: #a6a6a6; }

.realty-filter-applied__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 29px; }

.realty-filter-applied__item {
  position: relative;
  padding: 5px 35px 8px 12px;
  margin-right: 16px;
  background-color: #f0f8f7;
  font-size: 12px;
  color: #616161;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease;
  border-radius: 20px; }
  .realty-filter-applied__item:last-of-type {
    margin-right: 0; }
  .realty-filter-applied__item:hover {
    background-color: #edf5f4; }
  .realty-filter-applied__item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    display: block;
    width: 11px;
    height: 11px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    background-image: url("/static/images/cross-green.68c68428dd7d.svg"); }

.realty-filter__action-mobile {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 16px + 16px); }

.favorite {
  padding-top: 54px;
  min-height: calc(100vh - 110px - 250px); }
  @media only screen and (max-width: 812px) {
    .favorite {
      padding-top: 24px; } }
  .favorite__cards {
    padding-top: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .favorite__cards input {
      display: none; }
  .favorite__main-title {
    font-size: 42px; }
    @media only screen and (max-width: 812px) {
      .favorite__main-title {
        font-size: 25px; } }
  .favorite__choice-link {
    color: #0baca2;
    text-decoration: none;
    -webkit-transition: color .25s ease;
    transition: color .25s ease; }
    .favorite__choice-link:hover {
      color: #09A09B; }

.contacts-info {
  padding-bottom: 45px;
  width: 45.138%;
  min-height: 650px; }
  @media only screen and (max-width: 812px) {
    .contacts-info {
      min-height: 320px;
      width: 100%;
      padding-bottom: 0; } }
  .contacts-info__wrapper {
    position: relative; }
  .contacts-info__title {
    margin-bottom: 20px; }
  .contacts-info__list {
    margin-bottom: 35px; }
    @media only screen and (max-width: 812px) {
      .contacts-info__list {
        margin-bottom: 26px; } }
  .contacts-info__button {
    padding: 10px 50px; }
    @media only screen and (max-width: 812px) {
      .contacts-info__button {
        display: none;
        padding: 0 50px;
        text-align: center;
        width: 100%;
        min-height: 50px;
        line-height: 50px;
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none; }
        .contacts-info__button.active {
          display: block; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .contacts-info__button.full-width {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
    @media only screen and (max-width: 812px) {
        .contacts-info__button:hover {
          -webkit-box-shadow: none;
                  box-shadow: none; } }
    .contacts-info__button.mobile-route {
      display: none; }
      @media only screen and (max-width: 812px) {
        .contacts-info__button.mobile-route {
          display: block; } }
  .contacts-info__map {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%; }
    @media only screen and (max-width: 812px) {
      .contacts-info__map {
        display: none; } }

.contacts-office {
  margin-bottom: 20px; }
  @media only screen and (max-width: 812px) {
    .contacts-office {
      margin-bottom: 13px;
      background-color: #fff;
      outline: none;
      -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } }
  .contacts-office:first-child .contacts-office__content {
    display: block; }
  .contacts-office:last-child {
    margin-bottom: 0; }
  .contacts-office.active .contacts-office__button {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .contacts-office__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 20px;
    font-size: 26px;
    border-bottom: 1px solid #dadada;
    cursor: pointer; }
    @media only screen and (max-width: 812px) {
      .contacts-office__header {
        padding-bottom: 0;
        padding-right: 30px;
        padding-left: 26px;
        height: 87px;
        border-bottom: none; } }
    .contacts-office__header:hover .contacts-office__name {
      color: #18a29b; }
    .contacts-office__header:hover .contacts-office__button {
      -webkit-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  .contacts-office__name {
    -webkit-transition: color .2s ease;
    transition: color .2s ease; }
    @media only screen and (max-width: 812px) {
      .contacts-office__name {
        font-size: 22px; } }
  .contacts-office__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border: 1px solid #b6b6b6;
    border-radius: 50%;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease; }
    .contacts-office__button:after {
      content: '';
      display: block;
      width: 7px;
      height: 13px;
      background-image: url("/static/images/arrow-right-green.a15b6eab3661.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
  .contacts-office__content {
    display: none;
    padding: 20px 0 15px;
    border-bottom: 1px solid #dadada; }
    @media only screen and (max-width: 812px) {
      .contacts-office__content {
        padding: 0;
        border-bottom: none; } }
  .contacts-office__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px; }
    @media only screen and (max-width: 812px) {
      .contacts-office__phones {
        padding-left: 26px;
        margin-bottom: 0; } }
  .contacts-office__phone {
    margin-right: 30px;
    margin-bottom: 20px; }
  .contacts-office__phone-description {
    font-size: 14px;
    color: #18a29b;
    margin-bottom: 8px; }
  .contacts-office__phone-number {
    font-size: 20px;
    color: #000;
    text-decoration: none; }
  .contacts-office__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 812px) {
      .contacts-office__info {
        padding-left: 26px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .contacts-office__location {
    margin-right: 30px; }
  .contacts-office__zip {
    margin-bottom: 10px;
    font-size: 13px;
    color: #18a29b; }
    @media only screen and (max-width: 812px) {
      .contacts-office__zip {
        margin-bottom: 5px;
        color: #c9c9c9; } }
  .contacts-office__address {
    font-size: 13px;
    line-height: 2.1; }
  .contacts-office__email {
    color: #18a29b; }
    @media only screen and (max-width: 812px) {
      .contacts-office__email {
        margin-top: 19px;
        margin-bottom: 22px; } }
  .contacts-office__email-title {
    margin-bottom: 8px;
    font-size: 14px; }
  .contacts-office__email-link {
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    color: #28967f;
    text-decoration: none; }
    .contacts-office__email-link:after {
      background-color: #28967f; }
  .contacts-office__phone, .contacts-office__location, .contacts-office__email {
    width: 225px; }

.contacts {
  padding-top: 50px; }
  @media only screen and (max-width: 812px) {
    .contacts {
      padding-top: 20px; } }
  @media only screen and (max-width: 812px) {
    .contacts {
      background-color: #f6f6f6; } }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #545454;
  color: #fff;
  padding-top: 60px;
  pointer-events: none;
  -webkit-transform: translate3d(-110vw, 0, 0);
          transform: translate3d(-110vw, 0, 0);
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  z-index: 4; }
  .menu.active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all; }
  .menu__container {
    padding: 37px 10px 100px 37px;
    overflow-y: scroll;
    height: 100vh; }
  .menu__link {
    color: #fff;
    font-size: 18px;
    text-decoration: none; }
    .menu__link sup {
      color: #0baca2; }
  .menu__item {
    margin-bottom: 25px; }
    .menu__item.fav {
      display: none; }
      .menu__item.fav.active {
        display: block; }
  .menu__list {
    list-style: none;
    margin-bottom: 70px; }
  .menu__submenu {
    margin-top: 25px; }
    .menu__submenu-item {
      list-style: none;
      margin-bottom: 20px; }
    .menu__submenu-link {
      color: #fff;
      text-decoration: none;
      font-size: 15px; }
  .menu__phone-number {
    margin-top: 30px;
    color: #fff;
    display: block;
    font-size: 22px; }
  .menu__phone {
    text-decoration: none; }

.purchase-corp {
  width: 100%; }
  .purchase-corp-intro {
    position: relative;
    padding-top: 54px;
    padding-bottom: 77px;
    color: #fff;
    min-height: 425px;
    background-color: #0baca2; }
    @media only screen and (max-width: 812px) {
      .purchase-corp-intro {
        padding-bottom: 28px;
        padding-top: 26px; } }
    .purchase-corp-intro:after {
      content: "";
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: url("/static/images/wave-border-green.dec3dd1e1114.svg");
      background-repeat: repeat-x;
      background-position: center bottom;
      pointer-events: none; }
    .purchase-corp-intro__container {
      background-image: url("/static/images/clouds-and-sun.207f988c4d4c.svg");
      background-size: auto;
      background-position: right top;
      background-repeat: no-repeat; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-intro__container {
          overflow: hidden; } }
    .purchase-corp-intro__main-title {
      font-size: 40px; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-intro__main-title {
          font-size: 26px; } }
    .purchase-corp-intro__subtitle {
      margin-bottom: 75px;
      margin-top: 16px;
      font-size: 16px; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-intro__subtitle {
          margin-bottom: 32px; } }
    .purchase-corp-intro__features {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      max-width: 1170px;
      background-image: url("/static/images/wave-small.e8a94336b65b.svg");
      background-position: center;
      background-repeat: repeat-x;
      margin: 0 auto; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-intro__features {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background: none; } }
      .purchase-corp-intro__features-item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 157px;
        height: 157px;
        border-radius: 50%;
        background-color: #0baca2;
        z-index: 1; }
        @media only screen and (max-width: 812px) {
          .purchase-corp-intro__features-item {
            margin-bottom: 24px; } }
      .purchase-corp-intro__features-body {
        width: 131px;
        height: 131px;
        background-color: #09A09B;
        border-radius: 50%;
        color: #fff;
        text-align: center; }
      .purchase-corp-intro__features-title {
        padding-top: 30px;
        margin-bottom: 1px;
        font-size: 60px; }
      .purchase-corp-intro__features-value {
        width: 273px;
        font-size: 18px;
        line-height: 1.4;
        -webkit-transform: translate(-25%, 0);
                transform: translate(-25%, 0); }
        @media only screen and (max-width: 812px) {
          .purchase-corp-intro__features-value {
            position: relative;
            left: 50%;
            -webkit-transform: translate(-50%, 0);
                    transform: translate(-50%, 0);
            font-size: 13px; } }
  .purchase-corp-about {
    min-height: 293px;
    background-color: #fff;
    padding-top: 84px;
    padding-bottom: 87px; }
    @media only screen and (max-width: 812px) {
      .purchase-corp-about {
        padding-top: 53px;
        padding-bottom: 68px; } }
    .purchase-corp-about__title {
      color: #020202;
      margin-bottom: 26px;
      font-size: 18px;
      line-height: 1.4; }
      .purchase-corp-about__title span {
        color: #0baca2; }
    .purchase-corp-about__body {
      margin: 0 auto;
      max-width: 792px;
      text-align: center; }
    @media only screen and (max-width: 812px) {
      .purchase-corp-about__button {
        border-radius: 0;
        padding: 17px;
        -webkit-box-shadow: none;
                box-shadow: none; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .purchase-corp-about__button {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
  .purchase-corp-pluses {
    padding-top: 60px;
    padding-bottom: 73px;
    position: relative;
    min-height: 500px;
    background-color: #ebf5f4; }
    @media only screen and (max-width: 812px) {
      .purchase-corp-pluses {
        padding-bottom: 46px;
        padding-top: 42px; } }
    .purchase-corp-pluses:after, .purchase-corp-pluses:before {
      content: "";
      position: absolute;
      right: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: url("/static/images/wave-border-gray.7b3d6848bda2.svg");
      background-repeat: repeat-x;
      pointer-events: none; }
    .purchase-corp-pluses:after {
      top: 100%;
      background-position: center bottom; }
    .purchase-corp-pluses:before {
      bottom: 100%;
      background-position: center top; }
    .purchase-corp-pluses__main-title {
      margin: 0 auto;
      width: 100%;
      max-width: 810px;
      text-align: center;
      color: #020202;
      font-size: 30px;
      line-height: 1.4; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-pluses__main-title {
          font-size: 20px; } }
      .purchase-corp-pluses__main-title span {
        display: block;
        color: #0baca2; }
    .purchase-corp-pluses__items {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 62px auto 0;
      max-width: 1096px; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-pluses__items {
          margin: 32px auto 0;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column; } }
    .purchase-corp-pluses__item {
      width: 227px; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-pluses__item {
          margin: 0 auto 54px; }
          .purchase-corp-pluses__item:last-of-type {
            margin-bottom: 0; } }
      .purchase-corp-pluses__item-ico {
        width: 227px;
        height: 227px;
        border-radius: 50%;
        background-color: #fff;
        margin-bottom: 30px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto; }
        .purchase-corp-pluses__item-ico.ico1 {
          background-image: url("/static/images/desk-ico.b9473ea34be3.svg"); }
        .purchase-corp-pluses__item-ico.ico2 {
          background-image: url("/static/images/beatch-ico.a4423334dc58.svg"); }
        .purchase-corp-pluses__item-ico.ico3 {
          background-image: url("/static/images/chart-ico.8dd25db14e89.svg"); }
      .purchase-corp-pluses__item-description {
        position: relative;
        left: 50%;
        color: #0baca2;
        font-size: 18px;
        line-height: 1.4;
        width: 100vw;
        max-width: 413px;
        text-align: center;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0); }
        @media only screen and (max-width: 812px) {
          .purchase-corp-pluses__item-description {
            font-size: 16px; } }
  .purchase-corp-business {
    padding-top: 70px;
    padding-bottom: 10px;
    background-color: #fff; }
    @media only screen and (max-width: 812px) {
      .purchase-corp-business {
        padding-top: 42px;
        font-size: 26px; } }
    .purchase-corp-business__title {
      color: #020202;
      font-size: 30px;
      text-align: center; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-business__title {
          font-size: 26px; } }
    .purchase-corp-business__card-list {
      margin: 60px auto 72px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      max-width: 1090px;
      width: 100%; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-business__card-list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column;
          margin: 60px auto 12px; } }
    .purchase-corp-business__card {
      padding: 34px 21px 32px;
      width: 320px;
      margin-right: 55px;
      min-height: 431px;
      text-align: center;
      border: 1px solid #bae5e1; }
      .purchase-corp-business__card:nth-child(3n) {
        margin-right: 0; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-business__card {
          width: 100%;
          max-width: 100%;
          margin-right: 0;
          margin-bottom: 32px; } }
      .purchase-corp-business__card-top-title {
        color: #bdbdbd;
        font-size: 18px;
        margin-bottom: 20px; }
      .purchase-corp-business__card-ico {
        margin-bottom: 24px;
        height: 155px;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
        .purchase-corp-business__card-ico.ship1 {
          background-image: url("/static/images/ship1.0408b63c9b62.svg"); }
        .purchase-corp-business__card-ico.ship2 {
          background-image: url("/static/images/ship2.1506842a4c8c.svg"); }
        .purchase-corp-business__card-ico.ship3 {
          background-image: url("/static/images/ship3.e831efcfbd11.svg"); }
      .purchase-corp-business__card-title {
        margin-bottom: 3px;
        font-size: 40px;
        color: #09A09B; }
      .purchase-corp-business__card-description {
        text-align: inherit;
        font-size: 16px;
        color: #020202; }
    .purchase-corp-business__add-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 36px auto 83px;
      max-width: 1090px;
      width: 100%; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-business__add-list {
          margin: 36px auto 52px;
          max-width: 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column; } }
    .purchase-corp-business__add-card {
      margin-right: 56px;
      padding: 25px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      max-width: 320px;
      width: 100%;
      min-height: 185px;
      background-color: #f6f6f6;
      color: #0baca2;
      font-size: 18px; }
      @media only screen and (max-width: 812px) {
        .purchase-corp-business__add-card {
          margin-right: 0;
          margin-bottom: 32px;
          max-width: 100%; } }
      .purchase-corp-business__add-card:nth-child(3n) {
        margin-right: 0; }

.mother-capital {
  background-color: #fff;
  padding-bottom: 80px; }
  @media only screen and (max-width: 812px) {
    .mother-capital {
      padding-bottom: 0; } }
  .mother-capital-intro {
    padding-top: 48px;
    min-height: 387px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-image: url("/static/images/mother-bg.5117001e4c5e.png"); }
    @media only screen and (max-width: 812px) {
      .mother-capital-intro {
        background-image: url("/static/images/mother-bg-mobile.061f09705a1f.png");
        padding-top: 28px;
        padding-bottom: 72px;
        min-height: 302px;
        background-position: left bottom; } }
    .mother-capital-intro__content {
      max-width: 680px; }
    .mother-capital-intro__main-title {
      margin-bottom: 36px;
      font-size: 40px;
      color: #020202; }
      @media only screen and (max-width: 812px) {
        .mother-capital-intro__main-title {
          font-size: 26px;
          margin-bottom: 16px; } }
    .mother-capital-intro__text {
      max-width: 680px;
      line-height: 1.65;
      font-size: 16px;
      color: #000; }
  .mother-capital-case {
    padding-top: 86px;
    padding-bottom: 54px; }
    @media only screen and (max-width: 812px) {
      .mother-capital-case {
        padding-top: 16px; } }
    .mother-capital-case__list {
      margin: 0 auto;
      width: 100%;
      max-width: 1073px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      @media only screen and (max-width: 812px) {
        .mother-capital-case__list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column; } }
    .mother-capital-case__card {
      padding: 36px 22px 38px;
      margin-right: 56px;
      max-width: 320px;
      width: 100%;
      min-height: 431px;
      border: 1px solid #0baca2;
      text-align: center; }
      @media only screen and (max-width: 812px) {
        .mother-capital-case__card {
          max-width: 100%;
          margin-right: 0;
          margin-bottom: 28px; } }
      .mother-capital-case__card:nth-child(3n) {
        margin-right: 0; }
      .mother-capital-case__card-ico {
        height: 60px;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
        .mother-capital-case__card-ico.case1 {
          background-image: url("/static/images/case-1.b374f2170d5f.svg"); }
        .mother-capital-case__card-ico.case2 {
          background-image: url("/static/images/case-2.5e08390d3039.svg"); }
        .mother-capital-case__card-ico.case3 {
          background-image: url("/static/images/case-3.3f54c43d308f.svg");
          background-size: auto 50px; }
      .mother-capital-case__card-case {
        margin-bottom: 17px;
        margin-top: 24px;
        font-size: 30px;
        color: #09A09B; }
      .mother-capital-case__card-title {
        margin-bottom: 24px;
        font-size: 16px;
        text-align: inherit;
        color: #020202;
        line-height: 1.5; }
      .mother-capital-case__card-item {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.4; }
        .mother-capital-case__card-item:last-of-type {
          margin-bottom: 0; }
    .mother-capital-case__important {
      margin: 62px auto 0;
      width: 100%;
      max-width: 610px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media only screen and (max-width: 812px) {
        .mother-capital-case__important {
          margin: 7px auto 0; } }
      .mother-capital-case__important-ico {
        width: 115px;
        height: 115px;
        line-height: 115px;
        text-align: center;
        text-transform: uppercase;
        border: 1px solid #f74d4d;
        font-size: 22px;
        color: #f74d4d;
        border-radius: 50%; }
        @media only screen and (max-width: 812px) {
          .mother-capital-case__important-ico {
            margin-bottom: 18px; } }
      .mother-capital-case__important-text {
        margin: 1rem;
        font-size: 21px;
        text-align: justify;
        color: #020202;
        line-height: 1.5; }
  .mother-capital-steps {
    background-color: #fff; }
    .mother-capital-steps__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media only screen and (max-width: 812px) {
        .mother-capital-steps__list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column; } }
    .mother-capital-steps__card {
      padding: 26px 14px 26px 26px;
      width: 100%;
      max-width: 320px;
      min-height: 207px;
      margin-right: 26px;
      margin-bottom: 62px;
      background-color: #09A09B; }
      @media only screen and (max-width: 812px) {
        .mother-capital-steps__card {
          max-width: 100%;
          margin-bottom: 32px;
          margin-right: 0; } }
      .mother-capital-steps__card:nth-child(4n) {
        margin-right: 0; }
      .mother-capital-steps__card-number {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
        line-height: 34px;
        background-color: #fff;
        font-size: 18px;
        border-radius: 50%;
        color: #020202;
        text-align: center; }
      .mother-capital-steps__card-text {
        font-size: 16px;
        line-height: 1.6;
        color: #fafafa; }
        @media only screen and (max-width: 812px) {
          .mother-capital-steps__card-text {
            max-width: 374px; } }
        .mother-capital-steps__card-text.text-big strong {
          text-transform: uppercase;
          font-size: 24px; }
        .mother-capital-steps__card-text strong {
          color: #fff; }
    .mother-capital-steps__call-back {
      text-align: center;
      padding-top: 16px; }
    @media only screen and (max-width: 812px) {
      .mother-capital-steps__call-btn {
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        min-height: 53px; } }
  @media only screen and (max-width: 812px) and (max-width: 812px) {
    .mother-capital-steps__call-btn {
      width: calc(100% + 16px + 16px);
      margin-left: -16px;
      margin-right: -16px; } }
