@font-face{ 
    font-family: firasans-regular; 
    font-display: swap;
	src: local('FiraSans-Regular'),
	url("/themes/fonts/FiraSans-Regular.otf") format('opentype'),
    url('/themes/fonts/FiraSans-Regular.woff') format('woff'),
	url("/themes/fonts/FiraSans-Regular.woff2") format('woff2');
}

@font-face{
    font-family: firasans-medium; 
    font-display: swap;
	src: local('FiraSans-Medium'),
	url("/themes/fonts/FiraSans-Medium.otf") format('opentype'),
    url('/themes/fonts/FiraSans-Medium.woff') format('woff'),
	url("/themes/fonts/FiraSans-Medium.woff2") format('woff2');
}

@font-face{
    font-family: firasans-bold; 
    font-display: swap;
	src: local('FiraSans-Bold'),
	url("/themes/fonts/FiraSans-Bold.otf") format('opentype'),
    url('/themes/fonts/FiraSans-Bold.woff') format('woff'),
	url("/themes/fonts/FiraSans-Bold.woff2") format('woff2');
}

@font-face{
    font-family: firasans-semibold; 
    font-display: swap;
	src: local('FiraSans-SemiBold'),
	url("/themes/fonts/FiraSans-SemiBold.otf") format('opentype'),
    url('/themes/fonts/FiraSans-SemiBold.woff') format('woff'),
	url("/themes/fonts/FiraSans-SemiBold.woff2") format('woff2');
}

@font-face{
    font-family: firasans-extrabold; 
    font-display: swap;
	src: local('FiraSans-ExtraBold'),
	url("/themes/fonts/FiraSans-ExtraBold.otf") format('opentype'),
    url('/themes/fonts/FiraSans-ExtraBold.woff') format('woff'),
	url("/themes/fonts/FiraSans-ExtraBold.woff2") format('woff2');
}



:root{
    --regular-font-family: firasans-regular, calibri, arial;
    --bold-font-family: firasans-bold, calibri, arial;
    --medium-font-family: firasans-medium, calibri, arial;
    --extrabold-font-family: firasans-extrabold, calibri, arial;
    --semibold-font-family: firasans-semibold, calibri, arial;
    --inherit-color: #191919;
    --one-color:#D9B16C;
    --border-color:#F6F6F6;
    --fail-color: #FF1820;
    --body-font-size: 16px;
    --input-font-size: 16px;
    --hover-background: #E6E6E6;
    --inherit-background: rgba(25,25,25,0.5);
}

html{

}

html,
html *{
    max-width:  999999px;
}


/*class*/


div.center-block{
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
	max-width:1200px;
}

section.itempage--columns{
	padding: 0 15px 30px;
}

.itempage--overblock__name{
	padding:0 15px;
}

section{
	position:relative;
}

.block-number{
	height: 40px;
    width: 45px;
    border-left: 4px solid var(--one-color);
    position: absolute;
    top: 60px;
    left: 14.4%;
    color: var(--one-color);
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--extrabold-font-family);
}

.first-screen-block .block-number{
	top: -40px;
	opacity:0;
	transition: all 0.8s ease;
}

.open-page .first-screen-block .block-number{
	top: 200px;
	opacity:1;
}

section > .center-block{
    padding: 100px 0;
}

div.flex-block{
    display:flex;
}

div.inline_bl{
    display:inline-block;
    vertical-align:top;
}

a{
    color:#000;
    transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}


/*CMS-CLASSES*/

html,body {
	height:100%;
}

body {
	background: #F6F6F6;
	margin:0;
	font-family:var(--regular-font-family),calibri,arial;
	font-size:16px;
	overflow-x:hidden;
	color: var(--inherit-color);
}

body::-webkit-scrollbar {
	width: 0;
	height: 3px;
	transition:all 0.5s ease;
 }
 body.open-page::-webkit-scrollbar, .about-company .scroll-block::-webkit-scrollbar {
	width: 10px;
	height: 3px;
 }
 body::-webkit-scrollbar-button, .about-company .scroll-block::-webkit-scrollbar-button {
	background-color: #262626;
	height: 0;
 }
 body::-webkit-scrollbar-track, .about-company .scroll-block::-webkit-scrollbar-track {
	 background-color: #fff;
	 width: 5px;
 }
 body::-webkit-scrollbar-track-piece, .about-company .scroll-block::-webkit-scrollbar-track-piece {
	background-color: #F5F5F5;
 }
 body::-webkit-scrollbar-thumb, .about-company .scroll-block::-webkit-scrollbar-thumb {
	height: 50px;
	background-color: var(--one-color);
 }
 body::-webkit-scrollbar-corner, .about-company .scroll-block::-webkit-scrollbar-corner {
	 background-color: #fff;
 }
 body::-webkit-resizer, .about-company .scroll-block::-webkit-resizer {
	 background-color: #666;
 }

 body.open-page{
    overflow-x:hidden;
    overflow-y: scroll;
}

.deliver > section:before,
.content--footer__deliver > section:before,
.fnc--center--catalog.white-block:before,
.content--center--page.white-block:before{
	content: '';
    position: absolute;
    background: rgba(246, 246, 246, 0.1);
    top: 0;
    bottom: 0;
    left: 14.4%;
    z-index: 11;
    width: 4px;
}

.deliver > section.white-block:before,
.content--footer__deliver > section.white-block:before,
.fnc--center--catalog.white-block:before,
.content--center--page.white-block:before{
	background: rgba(25, 25, 25, 0.1);
}

#step-four .block-number,
.content--center--page.white-block.big-form .block-number{
    top: 195px;
}

button {
	cursor:pointer;
	cursor:hand;
}

div, section, input, textarea, select, button, a {
	box-sizing:border-box;
	transition: all 0.3s linear;
}

.fnc--payment--title h1{
	font-size: 2.25em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 0;
    font-family: var(--bold-font-family);
}

.fnc--payment--title p{
    font-size: 1.5em;
}

.fnc--payment--title .but-block{

}

.fnc--payment--title .but-block a{
	display: inline-block;
    margin-top: 20px;
}


a { 
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

h1 {
	font-size:24px;
	padding:10px 0;
	margin:0;
}

h2,
h3,
h1 span,
.content--center--page__text h1{
    font-size: 2.25em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 60px;
	font-family: var(--bold-font-family);
	
}

.content--center--page__text h1 {
    padding: 70px 0 30px;
}

h1.h-form{
    font-size: 2.25em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--bold-font-family);
    color: var(--one-color);
    padding: 20px 0 50px;
}

.star {
	color:var(--fail-color);
}

.breadcrumbs{
	display:none;
}

.text--fail {
	color:var(--fail-color);
	font-size:12px;
}

.no--info--find {
	color:var(--fail-color);
	font-size:12px;
}

input, button {
	outline:none;
}

button,
.but-block a {
	border: 2px solid var(--one-color);
    padding: 13.5px 15px;
	font-family:var(--bold-font-family),calibri, arial;
	font-size: 1em;
	background:var(--one-color);
	color:var(--inherit-color);
	max-width:250px;
	width: 100%;
	margin:0 auto;
	cursor:pointer;
	border-radius: 30px;
	display: block;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

button:hover,
.but-block a:hover {
	background:var(--3-text-color);
	box-shadow: 0px 0 0 rgba(0, 0, 0, 0.15);
}

.popup--container__close button.js__close--popup,
.js__cart--delete{
    width: 40px;
    display: inline-block;
    height: 40px;
    font-size: 0;
    border-radius: 0;
    background: #191919;
	border: none;
	position:relative;
}

.popup--container__close button.js__close--popup:hover,
.js__cart--delete:hover{
	background: var(--one-color);
}

.popup--container__close button.js__close--popup:before,
.js__cart--delete:before{
	content:'';
	position:absolute;
	width: 40px;
	height: 40px;
	margin:auto;
	background: url(/themes/img/plus.svg) no-repeat center center;
	transform: rotate(-45deg);
	left:0;
	right:0;
	bottom:0;
	top:0;
}

input[type="text"],
input[type="tel"],
input[type="password"],
textarea,
select {
    padding: 8px 15px;
    font-family: var(--regular-font-family);
    font-size: 1em;
	border: none;
	border-bottom: 2px solid #191919;
    width: 100%;
    resize: none;
    color: #191919;
	background: transparent;
	outline:none;
}

textarea{
	border: 2px solid #191919;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus {
    border-bottom: 2px solid var(--one-color);
}

textarea:focus{
	border: 2px solid var(--one-color);
}

input[type='text']::-webkit-input-placeholder, input[type='tel']::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder{
    color:#191919;
}

input[type='text']::-moz-placeholder, input[type='tel']::-moz-placeholder, textarea::-moz-input-placeholder, select::-moz-input-placeholder{
    color:#191919;
}

/* Firefox 19+ */
input[type='text']:-moz-placeholder, input[type='tel']:-moz-placeholder, textarea:-moz-input-placeholder, select:-moz-input-placeholder{
    color:#191919;
}

/* Firefox 18- */
input[type='text']:-ms-input-placeholder, input[type='tel']:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder{
    color:#191919;
}

input[type="datetime-local"] {
	padding:8px 15px;
	font-family:verdana,arial,sans-serif;
	font-size:13px;
	border:2px solid var(--one-color);
	width: 100%;
}

input[type="datetime-local"]:focus {
	border-bottom:2px solid var(--3-text-color);
}

input.fail--input {
	border-bottom:2px solid var(--fail-color);
}


textarea.fail--input{
	border:2px solid var(--fail-color);
}

.js__body--background {
	display: none;
    background: rgba(25, 25, 25, 0.5);
    width: 100%;
    height: 120%;
    position: fixed;
    top: -20px;
    z-index: 400;
    opacity: 0;
}


.js__body--popup {
    position: fixed;
    background: #f9f9f9;
    padding: 20px;
    display: none;
    z-index: 500;
    width: 500px;
	left:50%;
	top:50%;
	transform: translateY(-50%) translateX(-50%);
    max-width: 90%;
	opacity: 0;
	max-height: 90%;
	overflow-y:auto;
	overflow-x:hidden;
}

.js__big--images--popup {
    width: 1200px;
}

.pointerhand {
	cursor:pointer;
	cursor:hand;
}

.body section.home {
	max-width:100% !important;
}

/*Ð¨Ð°Ð¿ÐºÐ°*/


header{
	position: fixed;
    left: 0;
	top: -135px;
    right: 0;
    z-index: 101;
    transition: all 0.5s ease;
	box-shadow: 0 0 0 0 rgba(0,0,0,0.12);
	transition:all 0.5s ease;
}

.some-page header{
	background: #191919;
}


.open-page header{
	top:0;
}

header.active {
	box-shadow: 0 3px 10px 0 rgba(0,0,0,0.12);
    background: rgba(25, 25, 25, 0.9);
}

.overhead {

	overflow:hidden;
	transition:all 0.5s ease;
}

.some-page .overhead{
	background: #f6f6f6;
}

header.active .overhead .center-block{
	
}

.overhead .center-block {
	max-width: 1200px;
    margin: 0 auto;
    width: 100%;
	display:flex;
	justify-content: space-between;
	align-items:center;
	height:60px;
	transition:all 0.5s ease;
}

header.active .overhead .center-block{
	height:35px;
}


.overhead .phones a{
	font-size: 1em;
	color: #f6f6f6;
	font-family: var(--extrabold-font-family), calibri, arial;
	padding-left: 16px;
	background: url(/themes/img/phone.svg) no-repeat left center;
	margin-right: 24px;
	text-decoration: none;
}

.overhead .phones a:last-child{
	margin-right:0;
}

header > .center-block {
	height: 75px;
	align-items: center;
	justify-content: space-between;
}


.headcolumnlogo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.headcolumnlogo img{

}

header.active .headcolumnlogo img{
	
}

.some-page {
    padding-top: 135px;
    min-height: 600px;
}


p.descriptor{
	font-size: 1em;
    color: #D9B16C;
    padding-left: 8px;
    line-height: 19px;
    margin: 0;
}

.header--centerhead--inner__column1 {
	padding:0px;
	flex-basis:1px;
}

.header--centerhead--inner__column2 {
	display:flex;
	flex-grow:1;
	align-items:center;
}

.header--centerhead--inner--column2__in1 {
	padding:5px;
	    flex-grow: 1;
}

.header--centerhead--inner--column2__in2 {
	padding:5px;
}

.header--centerhead--inner__column3 {
	display:flex;
}

.header--centerhead--inner--column3__in1 {
	padding:5px;
}

.header--centerhead--inner--column3__in2 {
	padding:5px;
}

.header--underhead {
	border-bottom:1px solid var(--one-color);
}

.header--underhead__inner {
	max-width: 1200px;
    margin: 0 auto;
    width: 100%;
	display:flex;
	justify-content: space-between;
}

header .but-block a{
    background: transparent;
    width: 100%;
    border: 2px solid var(--one-color);
    color: var(--one-color);
    white-space: nowrap;
}

header .but-block a:hover{
	background: var(--one-color);
	color: #f6f6f6;
}

@media all and (max-width: 700px) {
   
	.header--underhead__inner {
		flex-wrap: wrap;
    }
	
}

.header--underhead--inner__left {
	
}

.header--underhead--inner__right {
	
}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€*/

.under--header--slider {
	
	
}

.under--header--slider__left {
	
}

.under--header--slider__center {
	
}

.under--header--slider__right {
	
}

/*Ð‘Ð»Ð¾Ðº ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð°*/

.content--center--main {
	width:100%;
	margin:0 auto;
	max-width:1200px;
}

.content--center--inner {
    display: flex;
    flex-direction: column;
}

.content--center--inner__left {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
}

@media all and (max-width: 800px) {
	
	.content--center--inner__left {
		display:none;
	}
	
}

.content--center--inner--left__column {
	
}

.content--center--inner__center {
	flex-grow: 1;
    flex-basis: 80%;
}

.content--center--inner--center__column {
	
}

.content--center--inner__right {
	flex-basis:260px;
	max-width:260px;
}

@media all and (max-width: 800px) {
	
	.content--center--inner__right {
		display:none;
	}
	
}

.content--center--inner--right__column {
	
}

.content--center--page {
	display:flex;
	flex-direction:column;
}

.content--center--page__text {
    position: relative;
    font-size: 1.0625em;
    margin-bottom: 60px;
}

.content--center--page__text p strong{
	font-family: var(--bold-font-family),calibri,arial;
}

.content--center--page__text ul,
.content--center--page__text ol{
    padding-left: 20px;
}

.fnc--files--list{
	margin:30px 15px 60px;
}

.content--center--page__text p.zagl-p{
    font-size: 1.5em;
    margin: 30px 0;
    font-family: var(--bold-font-family);
}


.content--center--page__text li{
	margin-bottom: 15px;
}


div.back-to.back-to-fourth-step{
	top: 40px;
}

div.back-to.back-to-second-step{
	top: 105px;
}

.content--center--page__main {
	
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ð¸Ñ‚ÐµÐ»Ð¸*/

.content--center__separator {
	
}

.content--left__deliver {
	padding-top: 60px;
}

.content--center__deliver {
	
	
}

.content--right__deliver {
	
	
}

.content--footer__deliver {
	
	
}

/*ÐŸÐ¾Ð´Ð²Ð°Ð»*/

.content--footer {
	background:var(--one-color);
	width:100%;
}

.content--footer__inner {
	border-top:1px solid var(--3-text-color);
}

.fnc--footer--flex {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	color:var(--inherit-color);
}

.fnc--footer--flex a {
	color:var(--inherit-color);
}

.fnc--footer--flex__column1 {
	flex-basis:33%;
	padding:10px;
}

.fnc--footer--flex__column2 {
	flex-basis:33%;
	padding:10px;
}

.fnc--footer--flex__column3 {
	flex-grow:1;
	padding:10px;
	text-align:right;
}

@media all and (max-width: 500px) {
   
	.fnc--footer--flex {
		flex-wrap:wrap;
	}
	
	.fnc--footer--flex__column1 {
		flex-basis:auto;
		padding:10px;
	}

	.fnc--footer--flex__column2 {
		flex-basis:auto;
		padding:10px;
	}
	
}

/*Ð¥Ð»ÐµÐ±Ð½Ñ‹Ðµ ÐºÑ€Ð¾ÑˆÐºÐ¸*/

.breads {
	
}

.breads__container {
	padding:10px 0;
}

.breads__inner {
	display:flex;
}

.breads--inner__separator {
	padding:0 2px;
}

.breads--inner__item {
	padding:0 2px;
}

.breads--inner__item__active {
	
}

/*ÐœÐ¾Ð´ÑƒÐ»Ð¸*/

/*ÐŸÐ¾Ð¸ÑÐº*/

.fnc--search {
	position:relative;
	z-index: 1;
}

.fnc--search__container {
	display:flex;
	justify-content: space-between;
	align-items: center;
	position:relative;
}

.fnc--search__inner {
	
}

.fnc--search__field {
	width:100%;
}

.fnc--search__button {
	position: absolute;
    right: 5px;
}

.fnc--search__button button {
	background-image: url(/themes/main/search.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    font-size: 0;
    padding: 0;
    border: 0;
    width: 24px;
    height: 24px;
    background-size: 24px;
}

.search--list--item {
	padding:5px;
}

.search--list--item__name {

}

.search--list--item__info {

}

.fnc--search--dropdown {
	display:none;
	position:absolute;
	width:100%;
}

.fnc--search--dropdown__inner {
	background:var(--inherit-color);
	border:1px solid var(--one-color);
}

.fnc--search--dropdown__row {
	display:flex;
	align-items:center;
	border-bottom:1px solid var(--11-text-color);
	cursor:pointer;
	cursor:hand;
}

.fnc--search--dropdown__row:hover {
	background:var(--11-text-color);
}

.fnc--search--dropdown__name {
	padding:4px;
	flex-grow:1;
}

.fnc--search--dropdown__price {
	padding:4px;
	color:var(--fail-color);
	flex-basis:110px;
	text-align:center;
}


.fnc--search--dropdown__image {
	padding:4px;
	width:60px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-basis:60px;
}

.fnc--search--dropdown__image img{
	max-width:60px;
	max-height:60px;
}

/*ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ ÐºÐ½Ð¾Ð¿ÐºÐ¸*/

.fnc--login--buttons__container {
	display:flex;
	justify-content: space-between;
}

.fnc--login--buttons__inner {
	padding:0 5px;
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ Ð¼ÐµÐ½ÑŽ*/

.menu--chapters {
	display:flex;
}

.menu--chapters__item {
	margin: 0 25px 0 0;
	position: relative;
}

.menu--chapters__item:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 11.5px);
    width: 2px;
    height: 20px;
    background: #F6f6f6;
    margin: auto;
}

.some-page .menu--chapters__item:before,
.some-page header .languages > div:first-child:before {
	background: #191919;
}

.menu--chapters__item:last-child:before{
	display:none;
}

.menu--chapters__submenu {
	display:none;
	position:absolute;
	top: 36px;
	left:0px;
	background:var(--one-color);
	padding:10px 15px;
	z-index:3;
}

.menu--chapters__submenu a{
	color:var(--inherit-color);
	font-size:13px !important;
}

.menu--chapters--submenu__item {
	min-width:200px;
	padding:5px 0;
}

.menu--chapters__item:hover .menu--chapters__submenu {
	display:block;
}

.menu--chapters__item:hover, .menu--chapters--item__active {

}

.menu--chapters__item a{
	
color: #f6f6f6;
	
font-size: 0.875em;
	
font-family: var(--medium-font-family);
}

.some-page header .menu--chapters__item a,
.some-page .overhead .phones a,
.some-page header .languages > div a {
	color: #191919;
}

.menu--chapters__item:hover a, .menu--chapters--item__active a,
.some-page header .menu--chapters__item:hover a,.some-page header .menu--chapters--item__active a,
.some-page header .languages > div a:hover, .some-page header .languages > div.languageact a{
	color:var(--one-color);
	text-decoration:none;
}


.breads--inner__item__separator{
	font-size: 0;
    transform: rotate(-90deg);
    width: 25px;
    background: url(/themes/img/arrow.svg) no-repeat center center;
    background-size: 13px;
}



/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ ÐºÐ¾Ð»Ð¾Ð½ÐºÐ°*/

.fnc--column--chapters {
	margin-bottom:15px;
}

.fnc--column--chapters__title {
	padding:10px;
	font-weight:bolder;
}

.fnc--column--chapters__container {
	padding:10px;
}

.fnc--column--chapter0 {
	padding:5px;
}

.fnc--column--chapter__active0 {
	padding:5px;
}

.fnc--column--chapter1 {
	padding:5px;
	padding-left:20px;
}

.fnc--column--chapter__active1 {
	padding:5px;
	padding-left:20px;
}

.fnc--column--chapter2 {
	padding:5px;
	padding-left:40px;
}

.fnc--column--chapter__active2 {
	padding:5px;
	padding-left:40px;
}

.fnc--column--chapter3 {
	padding:5px;
	padding-left:60px;
}

.fnc--column--chapter__active3 {
	padding:5px;
	padding-left:60px;
}

/*Ð Ð°Ð·Ð´ÐµÐ»Ñ‹ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--center--chapters {
    padding: 0;
}

.fnc--center--chapters__container {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}

.fnc--center--chapters__list--item  {
	flex-basis:calc(33% - 40px);
	margin:15px;
	padding:10px;
	display:flex;
	flex-direction:column;
	text-align:center;
}

@media all and (max-width: 700px) {
   
	.fnc--center--chapters__container {
		flex-wrap: wrap;
    }
	
}

@media all and (max-width: 600px) {
   
	.fnc--center--chapters__list--item  {
		flex-basis:calc(50% - 40px);
	}
	
}

@media all and (max-width: 400px) {
   
	.fnc--center--chapters__list--item  {
		flex-basis:calc(100% - 40px);
	}
	
}

.fnc--center--chapters__list--item:hover  {
	box-shadow:0 0 1px 0 var(--3-text-color);
}

.fnc--center--chapters--item__main  {
	
}

.fnc--center--chapters--item__name  {
	padding:10px 0;
}

.fnc--center--chapters--item__name a {
	font-size:18px;
}

.fnc--center--chapters--item__image {
	padding:10px 0;
}

.fnc--center--chapters--item__image img{
	max-width:100%;
}

.fnc--center--chapters--item__additional  {
	
}

.fnc--center--chapters--item__info  {
	
}

.fnc--center--chapters--item__button {
	padding:10px 0;
}

.fnc--center--chapters--item__button a{
	border-bottom:1px var(--one-color) solid;
	font-size:14px;
	color:var(--one-color);
}

.fnc--center--chapters--item__button a:hover{
	border-bottom:1px var(--3-text-color) solid;
	font-size:14px;
	color:var(--3-text-color);
	text-decoration:none;
}

/*ÐœÐµÐ½ÑŽ Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ð¾Ðµ*/

.menu--chapters--mobile {
	display:none;
}

@media all and (max-width: 700px) {
    
	.menu--chapters {
    }
    
	.menu--chapters--mobile {
        position: relative;
        display: none;
        width: 32px;
        height: 32px;
        margin-left: 0px;
        margin-top: 4px;
        margin-bottom: 4px;
    }
	
}

.js__mobile--menu--container {
	display: none;
    position: fixed;
    height: 100%;
    width: 0px;
    top: 0px;
    left: 0;
    z-index: 4292929;
    max-height: 100%;
    overflow-y: auto;
    background: var(--inherit-color);
    border-right: 1px solid var(--4-text-color);
	opacity:0;
}

.js__show--mobile--menu {
	font-size:0;
	cursor:pointer;
	cursor:hand;
	width:32px;
	height:32px;
	background:url('/themes/main/menu.png');
}

.fnc--mobile--chapters__logo {
	padding:5px;
}

.fnc--mobile--chapters__item {
	padding:5px;
}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ð¼ÐµÐ½ÑŽ*/

.menu--catalog {
	display:flex;
}

.menu--catalog__item {
	padding: 10px 32px 10px 0;
	position:relative;
}

.menu--catalog__submenu {
	display:none !important;
	position:absolute;
	top: 36px;
	left:0px;
	background:var(--one-color);
	padding:10px 15px;
	z-index:1;
}

.menu--catalog__submenu a{
	color:var(--inherit-color);
	font-size:13px !important;
}

.menu--catalog--submenu__item {
	min-width:200px;
	padding:5px 0;
}

.menu--catalog__item:hover .menu--catalog__submenu {
	display:block;
}

.menu--catalog__item:hover, .menu--catalog--item__active {
}

.menu--catalog__item a{
	font-size: 1em;
	color: #f6f6f6;
	font-family: var(--bold-font-family), calibri, arial;
}

.menu--catalog__item:hover a, .menu--catalog--item__active a{
	color: var(--one-color);
	text-decoration:none;
}

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ ÐºÐ¾Ð»Ð¾Ð½ÐºÐ°*/

.fnc--column--catalog {
	margin-bottom:15px;
}

.fnc--column--catalog__title {
	padding:10px;
	font-weight:bolder;
}

.fnc--column--catalog__container {
	padding:10px;
}

.fnc--column--category0 {
	padding:5px;
}

.fnc--column--category__active0 {
	padding:5px;
}

.fnc--column--category__active0 a{
	color:var(--3-text-color);
	text-decoration:underline;
}

.fnc--column--category1 {
	padding:5px;
	padding-left:20px;
}

.fnc--column--category__active1 {
	padding:5px;
	padding-left:20px;
}

.fnc--column--category__active1 a{
	color:var(--3-text-color);
	text-decoration:underline;
}

.fnc--column--category2 {
	padding:5px;
	padding-left:40px;
}

.fnc--column--category__active2 {
	padding:5px;
	padding-left:40px;
}

.fnc--column--category__active2 a{
	color:var(--3-text-color);
	text-decoration:underline;
}


.fnc--column--category3 {
	padding:5px;
	padding-left:60px;
}

.fnc--column--category__active3 {
	padding:5px;
	padding-left:60px;
}

.fnc--column--category__active3 a{
	color:var(--3-text-color);
	text-decoration:underline;
}


/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--center--catalog{
    padding: 30px 0 60px;
}

.fnc--center--catalog__container {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}

.fnc--center--catalog__list--item  {
	flex-basis:calc(585px - 40px);
	margin:15px;
	padding:10px;
	display:flex;
	flex-direction:column;
	text-align:center;
}


.fnc--center--catalog__list--item:hover  {
	box-shadow:0 0 1px 0 var(--3-text-color);
}

.fnc--center--catalog--item__main  {
	
position: relative;
}

.fnc--center--catalog--item__name  {

}

.fnc--center--catalog--item__name a {
    padding: 10px 0;
    background: var(--one-color);
    color: #f6f6f6;
    max-width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 4px 0 0 4px;
    position: absolute;
    right: 0;
    bottom: 20px;
    font-family: var(--semibold-font-family);
    width: 100%;
    font-size: 1.5em;
	text-decoration: none;
	z-index: 1;
}

.fnc--center--catalog--item__image {
	padding: 0;
	height: auto;
	background: #191919;
	border-radius: 6px;
}

.fnc--center--catalog--item__image a{
    line-height: 0;
    display: block;


}

.fnc--center--catalog--item__image img{
	max-width:100%;
	max-height: 400px;
	border-radius: 6px;
	transition: all 0.5s ease;
	opacity:1;
}

.fnc--center--catalog--item__image:hover img{
	opacity:0.5;
}

.fnc--center--catalog--item__additional  {
	
display: none;
}

.fnc--center--catalog--item__info  {
	
}

.fnc--center--catalog--item__button {
	padding:10px 0;
}

.fnc--center--catalog--item__button a{
	border-bottom:1px var(--one-color) solid;
	font-size:14px;
	color:var(--one-color);
}

.fnc--center--catalog--item__button a:hover{
	border-bottom:1px var(--3-text-color) solid;
	font-size:14px;
	color:var(--3-text-color);
	text-decoration:none;
}

.fnc--center--catalog--item__submenu {
	padding:10px 0;
}

.fnc--center--catalog--item__submenu--list {
	max-width:100%;
	padding:3px 0;
}

.fnc--center--catalog--item__submenu--list a {
	
}



/*first-screen-block*/

.first-screen-block{
    background: url(/themes/img/bg-first-screen.jpg) no-repeat center top;
    padding-top: 135px;
    position: relative;
    min-height: 895px;
}

.some-page .first-screen-block {
	padding-top: 0;
	min-height: 765px;
}


.some-page .first-screen-block .block-number {
    top: 70px;
}

.first-screen-block .center-block{
    min-height: 670px;
	position: relative;
	padding:0;
}

.first-screen-block a.next-block{
	position: absolute;
	bottom: -100px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background: #f6f6f6;
    transform: rotate(45deg);
    border-radius: 4px 0 0 0;
	z-index: 1;
	opacity:0;
	transition: all 0.5s ease;
}

.open-page .first-screen-block a.next-block {
    position: absolute;
	bottom: -40px;
	opacity:1;
}

.first-screen-block a.next-block:before{
    content: url(/themes/img/arrow.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 15px;
    transform: rotate(-45deg);
    text-align: center;
}

.first-screen-block a.next-block:after{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--one-color);
    z-index: -1;
    width: 50px;
    height: 50px;
    border-radius: 4px;
	box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.5s ease;
}

.first-screen-block a.next-block:hover:after{
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
}

.title-and-advantages{
	padding-top: 164px;
    width: 100%;
}


.title-and-advantages h1{
    font-size: 4em;
    color: var(--one-color);
    text-transform: uppercase;
    line-height: 1.2;
    font-family: var(--bold-font-family), calibri, arial;
    padding: 0;
	letter-spacing: 0.05em;
	top:20px;
	opacity:0;
	transition: all 0.5s ease;
	position:relative;
}



.after-h{
    margin-top: 0;
    margin-bottom: 55px;
    color: #f6f6f6;
    font-family: var(--semibold-font-family), calibri, arial;
    font-size: 1.5em;
}

.title-and-advantages .after-h{
	top:20px;
	opacity:0;
	transition: all 0.5s ease;
	position:relative;
}

.open-page .title-and-advantages h1,
.open-page .title-and-advantages .after-h{
	top:0;
	opacity:1;
}
 
.title-and-advantages .flex-block:before{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	right: calc(1200px + 360px + 200px);
	width: calc(1200px + 360px + 200px);
	background: rgba(25, 25, 25, 0.5);
	transition: all 1s ease;
}

.open-page .title-and-advantages .flex-block:before{
	right: -200px;
}

.title-and-advantages .flex-block{
    position: relative;
    height: 200px;
    align-items: center;
    justify-content: space-between;
    padding-right: 108px;
}


.title-and-advantages .flex-block .adv-bl{
    position: relative;
    z-index: 1;
	text-align: center;
	opacity:0;
	transition:all 0.5s ease 1s;
	top:20px;
}

.open-page .title-and-advantages .flex-block .adv-bl{
	opacity:1;
	top:0;
}

.adv-bl{

}

.phone-form{
    position: relative;
    z-index: 1;
    max-width: 340px;
	margin-top: 30px;
	transition: all 0.5s ease;
	opacity:0;
	right:-100px;
}

.open-page .phone-form{
	right:0;
	opacity:1;
	position:relative;
}

.phone-form .form-block{
	position: absolute;
    top: 60px;
    border: 2px dashed #000;
    left: 30px;
    right: 30px;
    height: 560px;
}

.phone-form .form-block.active{
    background: rgba(25, 25, 25, 0.8);
}

.phone-form strong{
	display: block;
    font-size: 1.5em;
    font-weight: 100;
    font-family: var(--medium-font-family);
}

.phone-form .form-title{
    max-width: 250px;
    border-radius: 4px;
    background: #191919;
    color: #f6f6f6;
    width: 100%;
    margin: 30px auto;
    padding: 11px 20px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5;
    z-index: 3;
    position: relative;
}

.d-and-d-text{
	display:none;
	font-size: 0.75em;
    border-radius: 4px;
    background: #191919;
    max-width: 250px;
    margin: 0 auto;
    color: #f6f6f6;
    text-align: center;
    padding: 3.5px 1px;
    position: absolute;
    bottom: 29px;
    right: 0;
    left: 0;
    width: 100%;
	margin: auto;
	z-index: 1;
}

.adv-bl .text-block{
    color: #F6F6F6;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.5;
}

.adv-bl .img-block{
    font-size: 2.25em;
    color: var(--one-color);
    font-family: var(--bold-font-family);
    line-height: 50px;
    height: 50px;
}


/*first-screen-block-end-*/

/*catalog-block*/

.catalog-block h2{
    margin-bottom: 0;
}

#step-one.catalog-block h2,
#step-two.catalog-block h2{
    margin-bottom: 60px;
}

.back-to.back-to-third-step{
	display:none;
}

#step-four .back-to-third-step{
	display:block;
}

.catalog-block .after-h{
    color: var(--inherit-color);
    margin-top: 10px;
}

.close-modal-feedback-form{
	font-size: 0;
    border-radius: 0;
    border: none;
    height: 40px;
    width: 40px;
    background: var(--one-color);
    position: absolute;
    top: 15px;
	right: 15px;
	cursor:pointer;
	transition:all 0.5s ease;
}

.close-modal-feedback-form img{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	transform: rotate(-45deg);
	fill: #fff;

}

.close-modal-feedback-form:hover{
	background: #E6E6E6;

}


.after-h strong{
	color: var(--one-color);
}

.catalog-block .flex-block{
	flex-wrap: wrap;
    justify-content: space-between;
}


.catalog-block .category-link{
    max-width: 57.25%;
    width: 687px;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	height: 300px;
	margin-bottom:30px;
}

.catalog-block .category-link:before,
.format-link:before,
.fnc--products--listitem__image a:before{
	content:'';
	background: rgba(25, 25, 25, 0);
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	border-radius: 6px;
	transition: all 0.5s ease;
}

.catalog-block .category-link:hover:before,
.format-link:hover:before,
.fnc--products--listitem__image a:hover:before{
	background: rgba(25, 25, 25, 0.3);
}

.category-link:nth-child(2),
.category-link:nth-child(3){
	max-width: 40.16%;
    width: 482px;
}

.catalog-block .category-link:first-child{
	background-image: url(/themes/img/perila-dlya-lesnitc.jpg);
}

.catalog-block .category-link:nth-child(2){
	background-image: url(/themes/img/perila-dlya-balkonov.jpg);
}

.catalog-block .category-link:nth-child(3){
	background-image: url(/themes/img/perila-dlya-kriltca.jpg);
}
.catalog-block .category-link:nth-child(4){
	background-image: url(/themes/img/pristennie-poruchni.jpg);
}

.catalog-block .flex-block:nth-child(4) .category-link:nth-child(1){
	background-image: url(/themes/img/perila-pleksi-glass.jpg);
}
.catalog-block .flex-block:nth-child(4) .category-link:nth-child(2){
	background-image: url(/themes/img/perila-celnostekl.jpg);
}

.category-link:hover{
    box-shadow: 0px 0 6px rgba(0, 0, 0, 0.5);
}

.category-link .name-cat{
    background: var(--one-color);
    color: #f6f6f6;
    max-width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 4px 0 0 4px;
    position: absolute;
    right: 0;
    bottom: 20px;
    font-family: var(--semibold-font-family);
    width: 100%;
    font-size: 1.5em;
}

.category-link a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
    cursor: hand;
}

.big-form .center-block{
	position:relative;
}

.format-link{
    flex-basis: 380px;
    max-width: 33.33333%;
    height: 300px;
    margin-bottom: 70px;
    border-radius: 6px;
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
	position:relative;
}

.format-link:hover{
	box-shadow: 0px 0 0 rgba(0, 0, 0, 0.15);
}

.format-link:first-child{
	background: url(/themes/img/forma-zakaza-1.jpg) no-repeat center center;
}

.format-link:nth-child(2){
    background: url(/themes/img/forma-zakaza-2.jpg) no-repeat center center;
}

.format-link:nth-child(3){
    background: url(/themes/img/forma-zakaza-3.jpg) no-repeat center center;
}

.format-link:nth-child(2){
	margin: 0 30px;
}

.format-link a{
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 6px;
    height: 300px;
    cursor: pointer;	
}

.format-link p.name-cat{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--one-color);
    max-width: 350px;
    margin: auto;
    border-radius: 0 0 6px 6px;
    padding: 15px 25px;
    box-sizing: border-box;
    color: #f6f6f6;
}

.format-link p.name-cat ~ span{
    font-family: var(--semibold-font-famiy);
    position: absolute;
    top: calc(100% + 70px);
    max-width: 335px;
    left: 0;
    right: 0;
	margin: 10px auto 0;
	display:none;
}

.back-to{
	position: absolute;
    top: 105px;
    right: 0;
    font-size: 1.5em;
    font-family: var(--semibold-font-family);
    padding-left: 35px;
	background: url(/themes/img/gold-arrow.svg) no-repeat left center;
	cursor:pointer;
	cursor: hand;
}

.noitemsfound{
	color:var(--fail-color);
	text-align:center;
	font-family: var(--medium-font-family);
	padding:30px 0;
}



/*catalog-block-end*/

/*designer-dream-block*/

.designer-dream-block{
	background: url(/themes/img/bg-third-block.jpg) no-repeat center top;
}

.designer-dream-block .center-block{
    min-height: 918px;
    padding-bottom: 54px;
}

.designer-dream-block h3{
    color: #f6f6f6;
    margin-bottom: 10px;
}

h2 span,
h3 span{
	color: var(--one-color);
}

.center-block .after-h{
	font-family: var(--medium-font-family), calibri, arial;
}

.designer-dream-block .flex-block{
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.designer-dream-block .component{
    width: calc(50% - 15px);
    margin-bottom: 30px;
    height: 300px;
	text-align: right;
	position:relative;
}

.designer-dream-block .component:before,
.designer-dream-block .component a{
    border-radius: 6px;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
    max-width: 380px;
    height: 300px;
    overflow: hidden;
    display: inline-block;
}

.designer-dream-block .component a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;;
    z-index: 1;
}

.designer-dream-block .component a:hover{
}

.designer-dream-block .component:nth-child(even){
	text-align:left;
}

.designer-dream-block .component:first-child:before{
	content: url(/themes/img/assortiment-1.jpg);
}

.designer-dream-block .component:nth-child(2):before{
	content: url(/themes/img/assortiment-2.jpg);
}

.designer-dream-block .component:nth-child(3):before{
	content: url(/themes/img/assortiment-3.jpg);
}

.designer-dream-block .component:nth-child(4):before{
	content: url(/themes/img/assortiment-4.jpg);
}

.component > div{
    background: rgba(25, 25, 25, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 240px;
    border-radius: 6px;
    padding: 30px 14px 12px 20px;
    text-align: left;
}

.designer-dream-block .component:nth-child(even) > div{
	left:auto;
	right:0;
}

.component .img-block{
	line-height: 0;
}

.component .title-block{
	font-size: 1.5em;
    font-family: var(--medium-font-family);
    color: var(--one-color);
    margin: 0;
}

.component .text-block{
	color:#f6f6f6;
}

.component .title-block ~ p{
	margin: 10px 0 0;
    line-height: 1.4;
}

/*designer-dream-block--end--*/

/*mid-princip*/

.mid-princip h3{

}

.mid-princip .flex-block{
    justify-content: space-between;
    padding-top: 33px;
}

.mid-princip .princip{
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
}

.mid-princip .princip:last-child{
	margin:0;
}

.princip .text-block{
    margin-left: 16px;
    text-align: left;
}

.princip .img-block{
    width: 100px;
    height: 100px;
    background: var(--one-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
	line-height: 0;
	position:relative;
}

.princip .img-block:before{
    content: '';
    position: absolute;
    top: -16px;
    left: -25px;
    color: #E5E5E5;
    font-family: var(--extrabold-font-family);
    font-size: 3em;
    z-index: -1;
}

.princip:first-child .img-block:before{
	content:'01';
}

.princip:nth-child(2) .img-block:before{
	content:'02';
}

.princip:last-child .img-block:before{
	content:'03';
}

.princip .text-block p.title-block{
    letter-spacing: 0.04em;
    font-size: 1.5em;
    text-transform: uppercase;
    color: var(--one-color);
    font-family: var(--extrabold-font-family);
    margin: 0;
}

.princip .text-block p ~ p{
	margin-bottom:0;
}

.princip .but-block{
	margin-top:15px;
}

.princip .but-block a{
	display: inline-block;
}

.photo-block{
	position:relative;
	line-height:0;
}

.photo-block img{
	border-radius: 6px;
}

.photo-block:before{
    content: '';
    top: -20px;
    left: -20px;
    bottom: -20px;
    background: #E6E6E6;
    border-radius: 6px;
    width: 327px;
    position: absolute;
    z-index: -1;
}

/*mid-princip--end--*/

/*special-form-block*/

.special-form-block{
/* 	background: url(/themes/img/bg-fifth.jpg) no-repeat center top; */
}

.special-form-block .flex-block{
	align-items: center;
    justify-content: center;
}

.special-form-block .center-block {
    min-height: 1px;
    padding-bottom: 62px;
}

.special-form-block h3{
	margin-bottom:10px;
}

.four-things{
	display: flex;
    flex-wrap: wrap;
    max-width: 460px;
    margin-right: 60px;
}

.four-things .four-things{
    display: flex;
    flex-wrap: wrap;
    max-width: 460px;
}

.thing .text-block{
    margin: 0 0 60px;
    line-height: 1.5;

}

.thing:nth-child(3) .text-block,
.thing:last-child .text-block{
	margin-bottom:0;
}

.four-things .thing{
    width: 50%;
    color: #f6f6f6;
}

h4.form-title{
	color: var(--one-color);
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 25px;
}

.special-form-block .form-block{
    border-radius: 6px;
    color: #f6f6f6;
    text-align: center;
    padding: 30px 0;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}



.fnc--feedback.fnc--feedback_modal-form input[type="text"],
.fnc--feedback.fnc--feedback_modal-form input[type="tel"],
.fnc--feedback.fnc--feedback_modal-form textarea,
.fnc--feedback.fnc--feedback_modal-form select,
.form-line input[type="text"],
.form-line input[type="tel"]{
    padding: 8px 15px;
    font-family: var(--regular-font-family);
    font-size: 1em;
    border: 2px solid #F6F6F6;
    width: 100%;
    resize: none;
    color: #f6f6f6;
    background: transparent;
}


.fnc--feedback.fnc--feedback_modal-form input[type="text"]:focus,
.fnc--feedback.fnc--feedback_modal-form input[type="password"]:focus,
.fnc--feedback.fnc--feedback_modal-form textarea:focus,
.fnc--feedback.fnc--feedback_modal-form select:focus,
.form-line input[type="text"]:focus,
.form-line input[type="tel"]:focus{
    border: 2px solid #F6F6F6;
	box-shadow: 0 0 2px var(--one-color);
}


.fnc--feedback.fnc--feedback_modal-form input[type="text"]::-webkit-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="tel"]::-webkit-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="password"]::-webkit-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form textarea::-webkit-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form select::-webkit-input-placeholder,
.form-line input[type="text"]::-webkit-input-placeholder,
.form-line input[type="tel"]::-webkit-input-placeholder{
    color:#f6f6f6;
}


.fnc--feedback.fnc--feedback_modal-form input[type="text"]::-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="tel"]::-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="password"]::-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form textarea::-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form select::-moz-input-placeholder,
.form-line input[type="text"]::-moz-input-placeholder,
.form-line input[type="tel"]::-moz-input-placeholder{
    color:#f6f6f6;
}

/* Firefox 19+ */

.fnc--feedback.fnc--feedback_modal-form input[type="text"]:-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="tel"]:-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="password"]:-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form textarea:-moz-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form select:-moz-input-placeholder,
.form-line input[type="text"]:-moz-input-placeholder,
.form-line input[type="tel"]:-moz-input-placeholder{
    color:#f6f6f6;
}

/* Firefox 18- */

.fnc--feedback.fnc--feedback_modal-form input[type="text"]::-ms-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="tel"]::-ms-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form input[type="password"]::-ms-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form textarea::-ms-input-placeholder,
.fnc--feedback.fnc--feedback_modal-form select::-ms-input-placeholder,
.form-line input[type="text"]::-ms-input-placeholder,
.form-line input[type="tel"]::-ms-input-placeholder{
    color:#f6f6f6;
}


.fnc--feedback.fnc--feedback_modal-form input.fail--input,
.fnc--feedback.fnc--feedback_modal-form textarea.fail--input,
.fnc--feedback.fnc--feedback_modal-form select.fail--input,
.fnc--feedback.fnc--feedback_modal-form textarea.fail--input, 
.fnc--feedback.fnc--feedback_modal-form select.fail--input,
.form-line input[type="text"].fail--input,
.form-line input[type="tel"].fail--input{
	border:2px solid var(--fail-color);
}



.special-form-block input[type="text"],
.special-form-block input[type="tel"]{
	padding: 18px 24px;
}

.special-form-block .fnc--feedback--main__line {
    width: 32%;
    margin-right: 2%;
}



.four-things .thing .img-block{
	height: 58px;
	background-position: left top;
	background-repeat: no-repeat;
}

.four-things .thing:first-child .img-block{
	background-image: url(/themes/img/spec-1.svg);
}

.four-things .thing:nth-child(2) .img-block{
	background-image: url(/themes/img/spec-2.svg);
}

.four-things .thing:nth-child(3) .img-block{
	background-image: url(/themes/img/spec-3.svg);
}

.four-things .thing:nth-child(4) .img-block{
	background-image: url(/themes/img/spec-4.svg);
}

.four-things .thing{
	width:50%;
	color:#f6f6f6;
}

.special-form-block .fnc--feedback--main__button button {
    color: var(--inherit-color);
    background: var(--one-color);
	padding: 18px 24px;
}

.special-form-block .fnc--feedback--main__button button:hover,
.form-line button:hover {
    color: var(--one-color);
    background: transparent;
} 

.special-form-block .fnc--feedback--main__button {
    text-align: center;
    padding: 0;
}


/*special-form-block--end--*/

/*projects-block*/

.projects-block{
	background: #e6e6e6;
	width:100%;
	overflow:hidden;
}

.projects-block .center-block{

}

.projects-block h3{
	margin-bottom: 10px;
}
.projects-block p.after-h{
	color: var(--inherit-color);
}

.projects-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-block .project-one{
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.projects-block .project-one:before{
	content:'';
	position:absolute;
	top:225px;
	left:0;
	right:0;
	bottom:0;
	background: #E6E6E6;
	border-radius: 6px;
	z-index:-1;
}

.projects-block .project-one .img-block img{
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
	border-radius: 6px;	
	max-width: 615px;
}

.projects-block .project-one .text-block{
    padding: 15px 47px;
    text-align: left;
}

.projects-block .project-one .text-block strong{
	font-weight:bold;
	color:#000000;
	
}

.project-one.slick-slide div.img-block{
    width: 278px;
    height: 350px;
    overflow: hidden;
    border-radius: 6px;
	margin: 50px auto 50px;
}

.project-one.slick-slide.slick-current div.img-block{
	width: 575px;
    height: 450px;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 auto;
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.8s ease;
}

.project-one.slick-slide:before,
.project-one.slick-slide .text-block{
	opacity:0;
	transform: scale(0.5) translate(0, -200);
	transition: all 0.5s ease;
	width: 615px;
}

.project-one.slick-slide.slick-current:before,
.project-one.slick-slide.slick-current .text-block{
    opacity: 1;
    transform: scale(1) translate(0, 0);
    width: 615px;
}

.project-one.slick-slide.slick-active{
	width: 292.5px !important;
}

.project-one.slick-slide.slick-active .img-block{
    margin: 50px auto 50px;
}

.project-one.slick-slide.slick-current.slick-active{
	width:615px !important;
}


.project-one.slick-slide.slick-current.slick-active .img-block{
	margin: 0 auto;
}



/*projects-block--end--*/

/*sheme-block*/

.sheme-block{
    background: url(/themes/img/bg-seventh.jpg) no-repeat center top;
}

.sheme-block .center-block{
    min-height: 700px;
}

.sheme-block .flex-block{

width: 100%;
}

.step-sheme{
	margin-top:45px;
	padding-top: 114px;
	position:relative;
	width: 25%;
	text-align: center;
	margin-bottom: 60px;
}

.step-sheme:first-child{
	background: url(/themes/img/step-1.svg) no-repeat center top;
}

.step-sheme:nth-child(2){
	background: url(/themes/img/step-2.svg) no-repeat center top;
}

.step-sheme:nth-child(3){
	background: url(/themes/img/step-3.svg) no-repeat center top;
}

.step-sheme:nth-child(4){
	background: url(/themes/img/step-4.svg) no-repeat center top;
}

.step-sheme:before{
	color:#f6f6f6;
	font-family: var(--extrabold-font-family);
	font-size: 3em;
	letter-spacing: 0.05em;
	position:absolute;
	top: -46px;
	left: 24%;
}

.step-sheme:first-child:before{
	content:'01';
}

.step-sheme:nth-child(2):before{
	content:'02';
}

.step-sheme:nth-child(3):before{
	content:'03';
}

.step-sheme:nth-child(4):before{
	content:'04';
}


.step-sheme:after{
    content: '';
    position: absolute;
    top: 50px;
    left: 75%;
    width: 50%;
    background: url(/themes/img/line-sheme.svg) repeat-x center top;
    height: 2px;
}

.step-sheme:last-child:after{
	display:none;
}

.step-sheme .text-block{
	line-height: 1.5;
	font-size: 1.5em;
	letter-spacing: 0.05em;
	color:#f6f6f6;
	font-family: var(--medium-font-family);
	margin: 0;
}

.sheme-block .but-block a{
    background: transparent;
    border: 2px solid var(--one-color);
    color: var(--one-color);
}

.sheme-block .but-block a:hover{
	background: #d9b16c;
    color: #f6f6f6;
}



/*sheme-block--end--*/

/*form-call-us*/

.form-call-us .center-block{
    min-height: 564px;
    background: url(/themes/img/bg-form-project.jpg) no-repeat right center;
}

.form-call-us .form-block{
	max-width: 450px;
    margin: 0 auto;
}

.form-call-us input[type="text"], 
.form-call-us input[type="password"], 
.form-call-us textarea, 
.form-call-us select {
	border:none;
	border-bottom: 2px solid #191919;
	box-shadow: none;
	color:#191919;
}

.form-call-us input.fail--input,
.form-call-us textarea.fail--input{
	border-bottom: 2px solid var(--fail-color);
}

.form-call-us input[type='text']::-webkit-input-placeholder, 
.form-call-us input[type='tel']::-webkit-input-placeholder, 
.form-call-us textarea::-webkit-input-placeholder, 
.form-call-us select::-webkit-input-placeholder{
    color:#191919;
}

.form-call-us input[type='text']::-moz-placeholder, 
.form-call-us input[type='tel']::-moz-placeholder, 
.form-call-us textarea::-moz-input-placeholder, 
.form-call-us select::-moz-input-placeholder{
    color:#191919;
}

/* Firefox 19+ */
.form-call-us input[type='text']:-moz-placeholder, 
.form-call-us input[type='tel']:-moz-placeholder, 
.form-call-us textarea:-moz-input-placeholder, 
.form-call-us select:-moz-input-placeholder{
    color:#191919;
}

/* Firefox 18- */
.form-call-us input[type='text']:-ms-input-placeholder, 
.form-call-us input[type='tel']:-ms-input-placeholder, 
.form-call-us textarea:-ms-input-placeholder, 
.form-call-us select:-ms-input-placeholder{
    color:#191919;
}

.form-call-us .fnc--feedback__second--title{
	display:none;
}

.form-call-us .fnc--feedback--main__button {
    padding: 20px 0 0;
    text-align: center;
}

.form-call-us  .fnc--feedback--main__button button {
    color: var(--inherit-color);
	background: var(--one-color);
	border: 2px solid var(--one-color);
}

.form-call-us  .fnc--feedback--main__button button:hover {
    color: var(--one-color);
    background: transparent;
}

/*--form-call-us--end--*/


/*footer*/

footer{
	background: #191919;
}

footer .center-block{
	position: relative;
    padding: 76px 0 61px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .arrow-top{
	position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background: #f6f6f6;
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
}

footer a.arrow-top{
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
	background: #f6f6f6;
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
}

footer a.arrow-top:before{
	content: url(/themes/img/arrow.svg);
    position: absolute;
    top: 0px;
    bottom: 3px;
    left: 0;
    right: 3px;
    margin: auto;
    width: 20px;
    height: 15px;
    transform: rotate(135deg);
    text-align: center;
}

footer a.arrow-top:after{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--one-color);
    z-index: -1;
    width: 50px;
    height: 50px;
    border-radius: 4px;
	box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.5s ease;
}

footer a.next-block:hover:after{
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
}


footer .menu-block .flex-block .menu--chapters,
footer .menu-block .flex-block .menu--catalog{
    flex-direction: column;
}

footer .menu-block .flex-block .menu--chapters{
	margin-right: 50px;
}

.footer-title{
    font-size: 1em;
    color: var(--one-color);
    margin: 0 0 15px;
    font-family: var(--medium-font-family);
}

footer .menu--catalog__item {
    padding: 0 0 15px 0;
    position: relative;
}

footer .menu--chapters__item {
	margin: 0 0 15px 0;
}

footer .menu--chapters__item a,
footer .menu--catalog__item a{
    color: #f6f6f6;
    font-size: 1em;
    font-family: var(--medium-font-family);
}

footer .menu--chapters__item:before{
	display:none;
}

footer .menu-block{
    max-width: 400px;
    width: 100%;
}

footer .contacts-block{
	max-width: 380px;
	width:100%;
}


footer .phones a{
    font-size: 1em;
    font-family: var(--medium-font-family);
    color: #f6f6f6;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

p.schadule{
	font-size: 1em;
    font-family: var(--medium-font-family);
    color: #f6f6f6;
    margin: 0 0 0 30px;
    line-height: 1.5;
}

/*footer--end--*/

/*ÐšÐ°Ñ‚Ð°Ð»Ð¾Ð³ Ð¼ÐµÐ³Ð° Ð¼ÐµÐ½ÑŽ/*


/*-- ÐœÐ•Ð“ÐÐœÐ•ÐÐ®--*/

.fnc--megamenu {
    width: 100%;
    background: var(--one-color);
}

.fnc--megamenu--container {
    max-width: 1200px;
    cursor: pointer;
    cursor: hand;
    margin: 0 auto;
	align-items:center;
    display: flex;
    flex-direction: row;
	justify-content: space-between;
}

.fnc--megamenu--category {
    display: flex;
    align-items: center;
    cursor: pointer;
    cursor: hand;
	flex-grow: 1;
    text-align: center;
    justify-content: center;
	flex-direction: column;
}

.fnc--megamenu--category:hover {
    display: flex;
    align-items: center;
    background: var(--inherit-color);
}

.fnc--megamenu--category:hover .fnc--megamenu--category__link {
    color: var(--one-color);
	text-decoration:none;
}

.fnc--megamenu--category__active {
    display: flex;
    align-items: center;
    cursor: pointer;
    cursor: hand;
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    background: var(--inherit-color);
	flex-direction: column;
}

.fnc--megamenu--category__link {
	color:var(--inherit-color);
	display:block;
	padding: 15px 10px;
}

.fnc--megamenu--category__link__active  {
	color: var(--one-color);
	display:block;
	padding: 15px 10px;
}

.fnc--megamenu--submenu__load {
	opacity:0;
	display:block;
}

.fnc--megamenu--submenu {
	opacity:1;
	display:none;
}

.fnc--megamenu--category__active:hover .fnc--megamenu--submenu {
    display: block;
}

.fnc--megamenu--category:hover .fnc--megamenu--submenu {
    display: block;
}

.fnc--megamenu--submenu  {
	position: relative;
    left: 0%;
    top: 0px;
    z-index: 200;
    display: none;
}

.fnc--megamenu--submenu:hover {
    display: block;
}

.fnc--megamenu--submenu__inner {
    position: absolute;
}

@media all and (max-width: 770px) {
    .fnc--megamenu--submenu__inner {
        display: none;
    }
}

.fnc--megamenu--submenu__inner--info {
    position: relative;
    width: 100%;
    z-index: 200;
    background: var(--inherit-color);
	border:1px solid var(--one-color);
	border-top:0;
}

.fnc--megamenu--submenu__row {
	display: flex;
    flex-direction: row;
}

.fnc--megamenu--submenu__column {
	display: flex;
    flex-direction: column;
}

.fnc--megamenu--submenu__column {
    min-width: 250px;
    text-align: left;
}

.fnc--megamenu--submenu__main {
	padding: 5px 20px;
	margin-bottom: 5px;
}

.fnc--megamenu--submenu__mainlink {
	
}

.fnc--megamenu--submenu__mainsublink {
    padding: 3px 3px 3px 10px;
}

.fnc--megamenu--submenu__link {
   color: var(--one-color);
}

.fnc--megamenu--submenu__link:hover {
    color: var(--one-color);
    text-decoration: underline;
}

.fnc--megamenu--submenu__sublink {
    color: var(--one-color);
    font-size: 90%;
}

.fnc--megamenu--submenu__sublink:hover {
    color: var(--one-color);
    font-size: 90%;
    text-decoration: none;
}


/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾Ðµ Ð¼ÐµÐ½ÑŽ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð° */

.fnc--catalog--adapt {
    display: none !important;
}


@media all and (max-width: 700px) {
    .fnc--megamenu {
		display: none;
    }
	.menu--catalog {
	}
	.header--underhead--inner__left {
		width:100%;
	}
}

.fnc--adaptive--category {
	padding:10px;
	text-align:center;
	background:var(--12-text-color);
}

.fnc--adaptive--category a{
	color:var(--one-color);
}

.fnc--adaptive--category:hover {
	background: var(--one-color);
}

.fnc--adaptive--category:hover a{
	color: var(--inherit-color);
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² ÐµÐ´Ð¸Ð½Ð¸Ñ†Ð°*/

.content--center--article {
	padding:10px;
}

.page--article--back {
	padding:10px 0;
}

.page--article--back a{
	border-bottom:1px var(--one-color) solid;
	font-size:14px;
	color:var(--one-color);
}

.page--article--back a:hover{
	border-bottom:1px var(--3-text-color) solid;
	font-size:14px;
	color:var(--3-text-color);
	text-decoration:none;
}

.page--article--name {
	padding:10px 0;
}

.page--article--text {
	padding:10px 0;
}

.page--article--text img {
	max-width:100%;
}

.page--article--date {
	padding:10px 0;
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--articles--list {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.fnc--articles--listitem {
	flex-basis:30%;
}

@media all and (max-width: 600px) {
   
	.fnc--articles--listitem {
		flex-basis:46%;
	}
	
}

@media all and (max-width: 400px) {
   
	.fnc--articles--listitem {
		flex-basis:96%;
	}
	
}

.fnc--articles--listitem__main {
	padding:5px;
}

.fnc--articles--listitem__name {
	padding:5px;
}

.fnc--articles--listitem__image img {
	max-width:100%;
}

.fnc--articles--listitem__info {
	
}

.fnc--articles--listitem__date {
	padding:5px;
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² Ð² ÐºÐ¾Ð»Ð¾Ð½ÐºÐµ*/

.fnc--column--articles {
	
}

.fnc--column--articles__title {
	
}

.fnc--column--articles__container {
	
}

.fnc--column--article_listitem {
	
}

.fnc--column--article--listitem__img {
	
}

.fnc--column--article--listitem__img  img{
	max-width:100%;
}

.fnc--column--article--listitem__info {
	
}

.fnc--column--article--listitem__name {
	
}

.fnc--column--article--listitem__date {
	
}

.fnc--column--articles__button {
	
}

/*Ð›ÐµÐ½Ñ‚Ð° ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² Ð¿Ð¾ Ñ†ÐµÐ½Ñ‚Ñ€Ñƒ*/

.fnc--center--articles {
	padding:50px 0;
}

.fnc--center--articles__title {
	max-width: 1200px;
    width: 100%;
    margin: 0 auto;
	font-size:22px;
	text-align:center;
}

.fnc--center--articles__container {
	max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.fnc--center--articles__listitem {
	flex-basis:calc(33% - 40px);
	margin:15px;
	padding:10px;
	display:flex;
	flex-direction:column;
	text-align:center;
}

@media all and (max-width: 700px) {
   
	.fnc--center--articles__container {
		flex-wrap: wrap;
    }
	
}

@media all and (max-width: 600px) {
   
	.fnc--center--articles__listitem {
		flex-basis:calc(50% - 40px);
	}
	
}

@media all and (max-width: 400px) {
   
	.fnc--center--articles__listitem {
		flex-basis:calc(100% - 40px);
	}
	
}

.fnc--center--article--listitem__main {
	
}

.fnc--center--articles--listitem__image {
	
}

.fnc--center--articles--listitem__image img {
	max-width:100%;
}

.fnc--center--articles--listitem__info {
	text-align:left;
	padding:5px 0;
}

.fnc--center--articles--listitem__name {
	font-size: 16px;
	padding:10px 0;
}

.fnc--center--article--listitem__date {
	
}

.fnc--center--articles__button {
	padding:10px 0;
	text-align:center;
}

.fnc--center--articles__button a{
	border-bottom:1px var(--one-color) solid;
	font-size:14px;
	color:var(--one-color);
}

.fnc--center--articles__button a:hover{
	border-bottom:1px var(--3-text-color) solid;
	font-size:14px;
	color:var(--3-text-color);
	text-decoration:none;
}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€*/

.fnc--slider--container {
	transition:none;
}

.fnc--slider--inner {
	transition:none;
}

.fnc--slider--inner__images {
	
}

.js__adv--banner__absolute {
	position:absolute;
	transition:none;
	transition:none;
}


.js__fnc--slider--inner__relative {
	position:relative;
	display: flex;
    justify-content: center;
	transition:none;
}

.js__fnc--slider--inner__absolute {
	position:absolute;
	opacity:0;
	transition:none;
}

.fnc--slider--inner__text {
	position:absolute;
}

.fnc--slider--inner--arrows__left {
	position:absolute;
	top:50%;
	left:1%;
}

.fnc--slider--inner--arrows__right {
	position:absolute;
	top:50%;
	right:1%;
}

.fnc--slider--inner--arrow__left {
	
}

.fnc--slider--inner--arrow__right {
	
}

.fnc--slider--inner__buttons {
	position:absolute;
	top:90%;
	width:100%;
}

.fnc--slider--inner--buttons__inner {
	display: flex;
    justify-content: center;
}

.fnc--slider--inner--button {
	padding: 5px 10px;
    background: var(--inherit-color);
    border-radius: 100%;
    border: 1px solid var(--12-text-color);
	margin:0 5px;
}

.fnc--slider--inner--button:hover {
	padding: 5px 10px;
	background: var(--one-color);
	color:var(--inherit-color);
	border-radius: 100%;
    border: 1px solid var(--12-text-color);
	margin:0 5px;
}

.fnc--slider--inner--button__active {
	padding: 5px 10px;
	background: var(--one-color);
	color:var(--inherit-color);
	border-radius: 100%;
    border: 1px solid var(--12-text-color);
	margin:0 5px;
}

/*ÐŸÐ°Ð³Ð¸Ð½Ð°Ñ†Ð¸Ñ*/

.fnc--pagination {
	display:flex;
	justify-content: center;
	padding:10px 0;
}

.fnc--paging--button {
	margin:5px;
	padding:5px;
	border:1px solid var(--one-color);
	color:var(--inherit-color);
	background:var(--one-color);
}

.fnc--paging--button:hover {
	margin:5px;
	padding:5px;
	border:1px solid var(--one-color);
	color:var(--one-color);
	background:var(--inherit-color);
}

.fnc--paging--button__now {
	margin:5px;
	padding:5px;
	border:1px solid var(--one-color);
}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÐ»Ð°Ð¹Ð´ÐµÑ€*/

.fnc--slider--gallery {
	padding:50px 10px;
}

.fnc--slider--gallery__title {
	font-size:18px;
	text-align:center;
}

.fnc--slider--gallery__container {
	display: flex;
    flex-direction: row;
    align-items: center;
}

.fnc--slider--gallery--container__center {
	margin:0 auto;
}

.fnc--slider--gallery--container--center__main {
	display: flex;
    flex-direction: row;
}

.fnc--slider--gallery--container--center__listitem {
	display:flex;
}

.fnc--slider--gallery--container--center__item {
	width:286px;
	margin:5px;
	display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
}

.fnc--slider--gallery--container--center__image img {
	max-width:100%;
}

.fnc--slider--gallery--button {
	padding:10px 0;
	text-align:center;
}

.fnc--slider--gallery--button a{
	border-bottom:1px var(--one-color) solid;
	font-size:14px;
	color:var(--one-color);
}

.fnc--slider--gallery--button a:hover{
	border-bottom:1px var(--3-text-color) solid;
	font-size:14px;
	color:var(--3-text-color);
	text-decoration:none;
}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÑ‚Ð¾Ð»Ð±ÐµÑ†*/

.fnc--column--gallery {
	
}

.fnc--column--gallery__title {
	
}

.fnc--column--gallery__container {
	
}

.fnc--column--gallery__listitem {
	
}

.fnc--column--gallery--listitem__name {
	
}

.fnc--column--gallery--listitem__image {
	
}

.fnc--column--gallery__button {
	
}

/*Ð“Ð°Ð»ÐµÑ€ÐµÑ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--gallery--list {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	padding:5px;
}

.fnc--gallery--listitem {
	flex-basis:22%;
	margin-bottom:10px;
}

@media all and (max-width: 600px) {
   
	.fnc--gallery--listitem {
		flex-basis:30%;
	}
	
}

@media all and (max-width: 400px) {
   
	.fnc--gallery--listitem {
		flex-basis:90%;
	}
	
}

.fnc--gallery--listitem__image img {
	max-width:100%;
}

.fnc--gallery--listitem__text {
	
}

/*Ð’Ð¾Ð¿Ñ€Ð¾Ñ-Ð¾Ñ‚Ð²ÐµÑ‚*/

.fnc--addfaq--container {
	max-width:500px;
	width:100%;
	margin:0 auto;
}

.fnc--addfaq--title {
	font-size:17px;
	text-align:center;
}

.fnc--addfaq--item {
	padding:3px;
}


/*ÐžÐ¿Ñ€Ð¾ÑÑ‹*/

.fnc--polls--main__inner {
    display: flex;
    position: relative;
	padding:10px 0;
	padding-right: 20px;
}

.fnc--polls--main--inner__votes {
	position:absolute;
	right:0;
}

input.js__poll--check {
	display:none;
}

#drop-zone label{
	cursor:pointer;
}

input.js__poll--check + label.active{
	display:none;
}

input.js__poll--check + label:before {
	content: "\2713";
    font-size: 13px;
    color: transparent;
    text-align: center;
	font-weight:bolder;
    border:2px solid var(--one-color);
	background:var(--inherit-color);
	cursor:pointer;
	cursor:hand;
	padding:0 3px 0 4px;
	transition: all 0.3s ease;
	cursor:pointer
}

input.js__poll--check:hover + label:before {
	content: "\2713";
    font-size: 13px;
    color: var(--one-color);
    text-align: center;
	font-weight:bolder;
    border:2px solid var(--one-color);
	background:var(--inherit-color);
	cursor:pointer;
	cursor:hand;
	padding:0 3px 0 4px;
}

i

.fnc--polls--main__linein {
	height:20px;
	background:#eee;
}

/*Ð¤Ð¾Ñ€Ð¼Ñ‹ ÑÐ²ÑÐ·Ð¸*/

.fnc--feedback {
	padding:50px 10px;
	background:var(--one-color);
	color:var(--inherit-color);
}

.fnc--feedback--container {
	max-width:600px;
	width:100%;
	margin:0 auto;
}

.fnc--feedback__title {
	font-size: 20px;
	padding:10px 0;
}

.fnc--feedback__second--title {
    font-size: 16px;
    padding: 10px 0 20px;
    color: var(--one-color);
}

.fnc--feedback--main {
	
}

.fnc--feedback--main__line {
	
}

.fnc--feedback--main__name {
	padding:5px 0;
}

.fnc--feedback--main__param {
    padding: 0 0 20px;
    margin: 0 auto;
    max-width: 460px;
}

.fnc--feedback--main__button  {
	padding:10px 0;
	text-align:center;
}

.fnc--feedback--main__button button  {
    color: var(--one-color);
    background: var(--inherit-color);
    border: 2px solid var(--one-color);
}

.fnc--feedback--main__button button:hover  {
	background: var(--one-color);
	color: var(--inherit-color);
}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ Ð² ÐºÐ¾Ð»Ð¾Ð½ÐºÐµ*/

.fnc--column--comments {
	
}

.fnc--column--comments__title {
	
}

.fnc--center--comments--container {
	
}

.fnc--center--comments--listitem__main {
	
}

.fnc--center--comments--listitem__name {
	
}

.fnc--center--comments--listitem__text {
	
}

.fnc--center--comments--listitem__date {
	
}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--comments {
	max-width:1000px;
	width:100%;
	margin:0 auto;
	padding:50px 0;
}

.fnc--slider--comments__title {
	font-size:17px;
	text-align:center;
}

.fnc--slider--comments--container {
	display:flex;
	align-items: center;
    justify-content: center;
	padding:10px;
}

.fnc--slider--comments__main {
	padding:0 40px;
	max-width:500px;
	width:100%;
}

.fnc--slider--comments__name {
	padding:5px 0;
}

.fnc--slider--comments__text {
	padding:5px 0;
}

.fnc--slider--comments__date {
	padding:5px 0;
}

/*ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°*/

.fnc--comments--list {
	padding:10px;
	max-width:1200px;
}

.fnc--addcomment--container {
	max-width:500px;
	width:100%;
	margin:0 auto;
}

.fnc--addcomment--title {
	text-align:center;
	font-size:17px;
}

.fnc--addcomment--item {
	padding:3px;
}

.fnc--comments--listitem {
	border-bottom:1px solid var(--12-text-color);
}

.fnc--comments--listitem__main {
	display:flex;
	align-items: center;
	padding:3px 0;
	justify-content: space-between;
}

.fnc--comments--listitem__name {
	font-weight:bolder;
}

.fnc--comments--listitem__text {
	font-size:17px;
	padding:3px 0;
}

/*Ð—Ð°ÐºÐ°Ð·Ð°Ñ‚ÑŒ Ð·Ð²Ð¾Ð½Ð¾Ðº*/

.fnc--order--call {
	
}

/*ÐŸÐ¾Ð¿Ð°Ð¿*/

.js__body--popup {
	
}

.popup--callme--container {
	
}

.popup--container__main {
	
}

.popup--container__close {
	text-align:right;
}

.popup--container__title {
    color: #191919;
    font-size: 1.5em;
    padding: 10px 0 30px;
    font-family: var(--bold-font-family);
    text-align: center;	
}

.popup--container__line {
	padding:5px 0;
}

.popup--container__button {
	
}

/*ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ*/

.fnc--login--fields {
	
}

.fnc--login--fields--container {
	
}

.fnc--login--fields__main {
	
}

.fnc--login--fields__field {
	padding:5px 0;
}

.fnc--login--fields__buttons {
	display:flex;
	justify-content:space-between;
}

.fnc--login--fields__social {
	text-align:center;
	padding:5px 0;
}

.fnc--login--fields--social__buttons {
	display:flex;
	justify-content: space-evenly;
}

.fnc--login--fields__forgot {
	padding:5px 0; 
	text-align:right;
}

.js__forgot--button {
	cursor:pointer;
	cursor:hand;
}

/*Ð ÐµÐ³Ð¸ÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ*/

.registration--center--page {
	max-width:1200px;
	margin:0 auto;
	width:100%;
	padding:30px 10px;
}

.registration--main {
	
}

.registration--main__title {
	font-size: 22px;
	padding:3px 0;
}

.registration--main__inner {
	
}

.registration--main__line {
	padding:3px 0;
}

.registration--main__name {
	padding:3px 0;
}

.registration--main__param {
	padding:3px 0;
}

.registration--main__button {
	padding:3px 0;
}

.js__registration--page--info {
	color:var(--fail-color);
}

/*ÐÐºÐºÐ°ÑƒÐ½Ñ‚*/

.account--center--page {
	max-width:1200px;
	margin:0 auto;
	width:100%;
	padding:30px 10px;
}

.account--info--row {
	font-size: 22px;
	padding:3px 0;
}

.account--info--row__welcome {
	
}

.account--tabs {
	display:flex;
	align-items: flex-end;
	margin:20px 0;
	border-bottom:1px solid var(--one-color);
	height:42px;
}

.account--tabs__position {
	margin-right:1px;
}

.account--tab {
	border:1px solid var(--one-color);
	padding:5px 30px;
	cursor:pointer;
	cursor:hand;
	height:30px;
}

.account--tab__active {
	border:1px solid var(--one-color);
	background:var(--one-color);
	color:var(--inherit-color);
	padding:5px 30px;
	cursor:pointer;
	cursor:hand;
	height:42px;
}

.account--tabs__columns {
	display:flex;
	justify-content: space-between;
}

.account--tabs---column__left {
	flex-basis:48%;
}

.account--tabs---column__right {
	flex-basis:48%;
}

.account--tabs--column__title {
	font-size:18px;
	padding:3px;
}

.account--main__line {
	padding:3px;
}	

.account--main__name {
	padding:3px;
}

.account--main__param {
	padding:3px;
}

.account--main__button {
	padding:3px;
}

.js__user--data--info, .js__user--main--info {
	color:var(--fail-color);
	padding:3px;
	font-size:12px;
}

.js__user--avatar--container img{
	max-width:150px;
	max-height:150px;
}

.fnc--account--order {
	margin-bottom:15px;
	border-bottom:1px solid var(--12-text-color);
	padding-bottom:10px;
}

.fnc--account--order__wrap {
	
}

.fnc--account--order__titlerow {
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.fnc--account--order__number {
	
}

.fnc--account--order__parent {
	
}

.fnc--account--order__inforow {
	padding:5px 0;
}

.fnc--cartlist--container {
	padding:5px 0;
}

.fnc--account--order__more {
	text-decoration:underline;
	cursor:pointer;
	cursor:hand;
}

/*Ð‘Ð»Ð¾Ðº Ð½Ð°Ð´ ÑÐ¿Ð¸ÑÐºÐ¾Ð¼ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð²*/

.fnc--itemshow--container {
	display: none;
	justify-content: space-between;
	padding:5px 2px;
}

@media all and (max-width: 600px) {
	
	.fnc--itemshow--container {
		flex-wrap:wrap;
	}
	
}

/*Ð‘Ð»Ð¾Ðº ÑÐ¾Ñ€Ñ‚Ð¸Ñ€Ð¾Ð²ÐºÐ¸*/

.fnc--sorting {
	display: flex;
	align-items:center;
}

.fnc--sorting__title {
	padding:5px 5px 5px 0;
}

.fnc--sorting__wrap {
	display: flex;
	align-items:center;
}

.fnc--sorting__cell {
	padding:5px;
}

.fnc--sorting--cell__inner {
	display: flex;
	align-items:center;
}

.fnc--sorting--cell--inner__arrow {
	padding-left:5px;
}

.js__sort--button {
	cursor:pointer;
	cursor:hand;
}

/*Ð‘Ð»Ð¾Ðº ÐºÐ¾Ð»-Ð²Ð¾ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² Ð½Ð° ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ðµ*/

.fnc--perpage--items {
	
}

.fnc--perpage--items--container {
	
}

/*Ð‘Ð»Ð¾Ðº Ñ‚Ð¸Ð¿Ð° Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð²*/

.fnc--viewblock--items {
	display:flex;
	align-items:center;
}

.fnc--viewblock--table div{
	width:26px;
	height:26px;
	background:url('/themes/main/table.jpg') no-repeat;
	cursor:pointer;
	cursor:hand;
	margin:0 2px;
}

.fnc--viewblock--table__active div {
	width:26px;
	height:26px;
	background:url('/themes/main/table_act.jpg') no-repeat;
	cursor:pointer;
	cursor:hand;
	margin:0 2px;
}

.fnc--viewblock--list div{
	width:26px;
	height:26px;
	background:url('/themes/main/list.jpg') no-repeat;
	cursor:pointer;
	cursor:hand;
	margin:0 2px;
}

.fnc--viewblock--list__active div{
	width:26px;
	height:26px;
	background:url('/themes/main/list_act.jpg') no-repeat;
	cursor:pointer;
	cursor:hand;
	margin:0 2px;
}

/*Ð¡Ð¿Ð¸ÑÐ¾Ðº Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°*/

.fnc--products--listVer {
	display: flex;
    flex-wrap: wrap;
    padding: 10px 0 50px;
}

.fnc--products--listitem {
	flex-basis: calc(23.16% - 4px);
	display:flex;
	flex-direction:column;
	align-items:center;
	margin:15px 30px 15px 0;
	position:relative;
}

.fnc--products--listitem:nth-child(4n+4){
	margin-right: 0;
}

.fnc--products--listitem:hover {
	box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--products--listitem__icon {
	position:absolute;
	top:0px;
	left:0px;
	display: none;
}

.fnc--products--listitem__main {
	
}

.fnc--products--listitem__name {
	padding:5px;
	text-align:center;
	height: 50px;
    display: none;
    align-items: center;
}

.fnc--products--listitem__image {
    display: flex;
    height: 200px;
    width: 274px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	border-radius: 6px;
	background: #fff;
}

.fnc--products--listitem__image img {
    max-width: 100%;
    max-height: 200px;
    display: block;
    border-radius: 6px;
}

.fnc--products--listitem__votes {
	display: none;
    align-items: center;
	padding:5px 0;
	justify-content:center;
}

.fnc--products--listitem__vote {
	padding:0 5px;
}

.fnc--products--listitem__info {
	display:none;
	padding:5px;
}

.fnc--products--listitem__buttons {
	display:none;
	align-items:center;
	justify-content:space-evenly;
	width: 90%;
	padding:5px 0;
}

.fnc--products--listitem__shopinfo {
	display:none;
	flex-direction:column;
	align-items:center;
	padding:10px 0;
}

.fnc--products--listitem__price {
	padding:5px;
    color: #191919;
	display:flex;
	align-items:center;
}

.fnc--products--listitem__oldprice {
	
}

.fnc--products--listitem__actprice {
	
}

.fnc--products--listitem__buy {
	
}


/*Ð¡Ð¿Ð¸ÑÐ¾Ðº Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² ÑÐ¿Ð¸ÑÐ¾Ðº*/

.fnc--products--listHor {
	display:flex;
	flex-direction:column;
	padding:10px 0;
}

.fnc--products--listhoritem {
	display:flex;
	flex-direction:column;
	margin:2px 0;
	border:1px solid #eee;
	position:relative;
}

.fnc--products--listhoritem:hover {
	box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--products--listhoritem__icon {
	position:absolute;
	top:0px;
	left:0px;
}

.fnc--products--listhoritem__inner {
	display:flex;
	flex-direction:row;
}

.fnc--products--listhoritem__main {
	padding-left:15px;
}

.fnc--products--listhoritem__name {
	padding:5px 0;
}

.fnc--products--listhoritem__image {
	display:flex;
	flex-basis:200px;
	height:220px;
	padding:10px 0;
	align-items:center;
	justify-content:center;
}

.fnc--products--listhoritem__image img {
	max-width:100%;
	max-height:200px;
	display: block;
}

.fnc--products--listhoritem__votes {
	display: flex;
    align-items: center;
	padding:5px 0;
	justify-content:center;
}

.fnc--products--listhoritem__vote {
	padding:0 5px;
}

.fnc--products--listhoritem__info {
	padding:5px;
}

.fnc--products--listhoritem__buttons {
	display: flex;
}

.fnc--products--listhoritem__buttons div {
	padding-right:10px;
}

.fnc--products--listhoritem__price {
	padding:5px;
	color:var(--fail-color);
}

/*Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.content--item--page {
	
}

.itempage--nextitems {
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.itempage--nextitems__prev {
	
}

.itempage--nextitems__next {
	
}

.itempage--overblock {
	
}

.itempage--overblock__name h1{
	font-size: 2.25em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 30px;
    font-family: var(--bold-font-family);
}

.itempage--overblock__code,
.itempage--center--status,
.itempage--center--prices{
	display:none;
}



.itempage--columns {
	display: flex;
    padding-bottom: 30px;
}

.itempage--left--column {
	width: 100%;
    max-width: 400px;
}

.itempage--center--column {
	flex-grow: 1;
    padding: 0 0 0 30px;
    max-width: 60%;
}

.itempage--right--column {
	width: 100%;
	max-width: 250px;
	display:none;
}

@media all and (max-width: 800px) {
	
	.itempage--columns {
		flex-wrap:wrap;
	}
	
	.itempage--left--column {
		max-width: 100%;
		padding:0 5px;
	}

	.itempage--center--column {
		flex-grow:1;
		padding:0 5px;
	}

	.itempage--right--column {
		padding:0 5px;
		max-width: 100%;
	}
	
	.itempage--nextitems { 
		display:none;
	}
	
}

.itempage--item--image {
	height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    cursor: hand;
    margin-bottom: 16px;
}

.itempage--item--image img{
    max-width: 100%;
    max-height: 380px;
    border-radius: 6px;
}

.itempage--item--image__icons {
	
}

.itempage--center--name {
	
}

.itempage--center--code {
	padding:3px 0;
}

.itempage--center--pricefor {
	padding:3px 0;
}

.itempage--center--price {
	padding:3px 0;
	color:var(--fail-color);
	font-size:18px;
}

.itempage--center--valutes {
	padding:3px 0;
}

.itempage--center--valutes__inner {
	
}

.itempage--center--brand {
	padding:3px 0;
}

.itempage--center--text {
    background: rgb(25, 25, 25);
    padding: 30px;
    border-radius: 6px;
	color: #191919;
	background: #E6E6E6;
}

.itempage--center--buttons {
    display: flex;
    align-items: center;
    padding: 5px 0;
    display: none;
}

.itempage--center--quest {
	padding-right:5px;
}

.itempage--center--favor {
	padding:0 5px;
}

.itempage--center--compare {
	padding:0 5px;
}

.favor--item {
	background-image:url('/themes/main/favorite.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	font-size:0;
}

.favor--item__active, .favor--item__active:hover, .favor--item:hover {
	background-image:url('/themes/main/favorite_red.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	font-size:0;
}

.compare--item {
	background-image:url('/themes/main/comparison.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	font-size:0;
}

.compare--item__active, .compare--item__active:hover, .compare--item:hover {
	background-image:url('/themes/main/comparison_red.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	font-size:0;
}

/*Ð¢Ð°Ð±Ñ‹ Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.itempage--tabs {
	padding:10px 0 30px 0;
}

.itempage--tabs--buttons {
	display:flex;
	align-items: flex-end;
	margin:20px 0;
	border-bottom:1px solid var(--one-color);
	height:42px;
}

.itempage--tabs--button {
	margin-right:1px;
}

.itempage--tabs--button__inner {
	border:1px solid var(--one-color);
	padding:5px 30px;
	cursor:pointer;
	cursor:hand;
	height:30px;
}

.itempage--tabs--button__inner--active {
	border:1px solid var(--one-color);
	background:var(--one-color);
	color:var(--inherit-color);
	padding:5px 30px;
	cursor:pointer;
	cursor:hand;
	height:42px;
}

@media all and (max-width: 600px) {
	
	.itempage--tabs--buttons {
		flex-direction: column;
		align-items: center;
		height: auto;
	}
	
	.itempage--tabs--button__inner {
		height:auto;
		width:100%;
	}
	
	.itempage--tabs--button__inner--active {
		height:auto;
		width:100%;
	}
	
	.itempage--tabs--button {
		width:100%;
		margin-right:0px;
	}
	
	.itempage--tabs--button__inner {
		padding:15px 30px;
	}

	.itempage--tabs--button__inner--active {
		padding:15px 30px;
	}
	
}

.itempage--tab--info {
	
}

.itempage--files--container {
	
}

.itempage--files--listitem {
	display:flex;
	align-items:center;
}

.itempage--files--listitem__icon {
	width:50px;
}

.itempage--files--listitem__icon img{
	max-width:100%;
}

.itempage--files--listitem__name {
	padding-left:15px;
}

.itempage--center--prices {
	font-size:18px;
	color:var(--fail-color);
	padding:5px 0;
	display:none;
	align-items:flex-end;
}

.itempage--center--valutes {
	padding:5px 0;
	display:flex;
	align-items:flex-end;
}

.itempage--product__oldprice {
	color:var(--1-text-color);
	text-decoration:line-through;
	padding-right:10px;
	font-size:14px;
}

.itempage--product__actprice {
	
}

.itempage--valute__oldprice {
	color:var(--1-text-color);
	text-decoration:line-through;
	padding-right:10px;
	font-size:12px;
}

.itempage--valute__actprice {
	
}

.itempage--center--buyinfo {
	padding:5px 0;
	display:none;
	align-items:center;

}

.itempage--center--quantity {
	width:80px;
	padding-right:5px;
}

.itempage--center--quantity input{
	text-align:center;
}

.itempage--center--buybutton {
	padding:0 5px;
}

.itempage--center--oneclick {
	padding:0 5px;
}

/*-- Ð‘Ð»Ð¾Ðº Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð² Ñ‚Ð¾Ð²Ð°Ñ€Ð°--*/

.itempage--center--options {
	max-width:300px;
}

.itempage--center--option {
	position:relative;
	margin:4px 0;
}

.itempage--center--option__input {
	display:flex; 
	align-items:center;
	border:1px solid var(--one-color);
	padding:10px;
	cursor:pointer;
	cursor:hand;
}

.itempage--center--option__image {
	padding-right:10px;
}

.itempage--center--option__image img{
	max-width:24px;
	max-height:24px;
}

.itempage--center--option__dropdown {
	display:none;
	position:absolute; 
	width:100%;
	border:1px solid var(--one-color);
	background:var(--inherit-color);
	z-index: 2;
}

.itempage--center--option__dropdown--line {
	display:flex; 
	align-items:center;
	padding:10px;
	border-bottom:1px solid var(--12-text-color);
	cursor:pointer;
	cursor:hand;
}

.itempage--center--option__dropdown-line:hover {
	background:var(--12-text-color);
}

.itempage--center--checks {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

.itempage--center--check {
	display:flex;
	align-items:center;
	margin:2px;
	border:1px solid var(--12-text-color);
	margin-left:0;
	padding:5px;
	cursor:pointer;
	cursor:hand;
}

.itempage--center--check div {
	padding:2px;
}

/*ÐÐºÑ†Ð¸Ð¾Ð½Ð½Ñ‹Ðµ Ð½Ð°Ð±Ð¾Ñ€Ñ‹*/

.itempage--actpocket--container {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--12-text-color);
    padding: 10px;
}

.itempage--actpocket--wrap {
    display:flex;
	align-items:center;
	justify-content: space-between;
}

.itempage--actpocket--title {
    font-size: 18px;
    color: var(--fail-color);
    padding: 5px;
    margin-bottom: 10px;
}

.itempage--actpocket--center {
	display:flex;
	align-items:center;
}

@media all and (max-width: 600px) {
	
	.itempage--actpocket--wrap {
		flex-direction:column;
	}
	
	.itempage--actpocket--center {
		flex-direction:column;
	}
	
}

.itempage--actpocket--plus {
	padding:0 20px;
	color:var(--fail-color);
	font-size:18px;
	font-weight:bolder;
}

.itempage--actpocket--item {
	
}

.itempage--actpocket--img {
	height:160px;
	padding:5px 0;
	display:flex;
	align-items:center;
	justify-content:center;
}

.itempage--actpocket--img img{
	max-width:150px;
	max-height:150px;
}

.itempage--actpocket--name {
	padding:10px 0;
}

.itempage--actpocket--oldprice {
	color:var(--1-text-color);
	text-decoration:line-through;
	padding-right:10px;
	font-size:14px;
	padding:2px 0;
}

.itempage--actpocket--newprice {
	color:var(--fail-color);
	font-size:17px;
	padding:2px 0;
}

.itempage--actpocket--summ {
	padding:0 20px;
	color:var(--fail-color);
	font-size:18px;
	font-weight:bolder;
}

.itempage--actpocket--allprice {
	color:var(--fail-color);
	font-size:18px;
}

.itempage--actpocket--buybutton {
	padding:10px 0;
}

/*Ð¡Ñ‡ÐµÑ‚Ñ‡Ð¸Ðº*/

.itempage--center--timer {
    background: var(--12-text-color);
    padding: 10px;
	font-size:110%;
    color:var(--fail-color);
	display:flex;
	flex-direction:row;
	align-items:center;
	margin:4px 0;
}

.itempage--center--timer__title {
   color:var(--fail-color);
}

.itempage--center--clock {
	display:flex;
	flex-direction:row;
	padding-left:10px;
	font-size:150%;
}

/*Ð ÐµÐ¹Ñ‚Ð¸Ð½Ð³*/

.itempage--center--rate {
	display:none;
	flex-direction:row;
	align-items:center;
	padding:5px 0;
}

.fnc--addcomment--vote {
	display:flex;
	flex-direction:row;
	align-items:center;
	padding:5px 0;
}

.fnc--addcomment--vote__name {
	padding-right:10px;
}

.itempage--vote--rate {
	margin-right:3px;
}

.fnc--addcomment--vote__rate {
	margin-right:3px;
	cursor:pointer;
	cursor:hand;
}

.item--vote {
	background-image:url('/themes/main/star.svg');
	width: 20px;
    height: 20px;
}

.item--vote--act {
	background-image:url('/themes/main/star_act.svg');
	width: 20px;
    height: 20px;
}

.fnc--comments--list__votes {
	display:flex;
	flex-direction:row;
	align-items:center;
	padding:5px 0;
}

.fnc--comments--list__vote {
	margin-right:3px;
}

/*Ð¥Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸ÑÑ‚Ð¸ÐºÐ¸ Ñ‚Ð¾Ð²Ð°Ñ€Ð°*/

.item--page--chars--container {
	
}

.item--page--chars__row {
    display: flex;
    flex-direction: row;
	width:100%;
}

.item--page--chars__row:nth-child(odd) {
	background: var(--hard-light-color);
}

.item--page--chars__row--name {
    padding: 5px;
    flex-basis:20%;
    font-size: 100%;
}

.item--page--chars__row--text {
    padding: 5px;
    font-size: 100%;
	flex-basis:80%;
}

.fnc--product--icon__action {
	background-image: url(/themes/main/price.svg);
    background-repeat: no-repeat;
	background-size: 30px;
    width:30px;
	height:30px;
}

.fnc--product--icon__top {
	background-image: url(/themes/main/cap.svg);
    background-repeat: no-repeat;
	background-size: 30px;
    width:30px;
	height:30px;
}

.fnc--product--icon__new {
	background-image: url(/themes/main/new.svg);
    background-repeat: no-repeat;
	background-size: 30px;
    width:30px;
	height:30px;
}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ ÑÐ¸ÑÑ‚ÐµÐ¼Ð½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸*/

.fnc--slider--sameitems {
	position: relative;
	padding:0 5px;
}

.fnc--slider--sameitems__title {
	font-size:18px;
	padding:20px 0;
}
.fnc--slider--sameitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--sameitems--inner {
	
}

.slider--sameitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--sameitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--sameitem__main {
	display: flex;
}

.fnc--slider--topitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--topitems__title {
	font-size:18px;
	padding:15px 0;
	color:var(--3-text-color);
	border-bottom:1px solid var(--3-text-color);
	margin-bottom:10px;
	background-image:url('/themes/main/cap.svg');
	background-repeat:no-repeat;
	background-position:0% 50%;
	background-size: 30px;
	padding-left:40px;
}

.fnc--slider--topitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--topitems--inner {
	
}

.slider--topitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--topitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--topitem__main {
	display: flex;
	align-items: flex-start;
}

.fnc--slider--newitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--newitems__title {
	font-size:18px;
	padding:20px 0;
}
.fnc--slider--newitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--newitems--inner {
	
}

.slider--newitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--newitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--newitem__main {
	display: flex;
}

.fnc--slider--actitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--actitems__title {
	font-size:18px;
	padding:20px 0;
}
.fnc--slider--actitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--actitems--inner {
	
}

.slider--actitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--actitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--actitem__main {
	display: flex;
}

.fnc--slider--lasitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--lasitems__title {
	font-size:18px;
	padding:20px 0;
}
.fnc--slider--lasitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--lasitems--inner {
	
}

.slider--lasitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--lasitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--lasitem__main {
	display: flex;
}

.fnc--slider--favitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--favitems__title {
	font-size:18px;
	padding:20px 0;
}
.fnc--slider--favitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--favitems--inner {
	
}

.slider--favitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--favitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--favitem__main {
	display: flex;
}

.fnc--slider--accessoriesitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--accessoriesitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--accessoriesitems--inner {
	
}

.slider--accessoriesitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--accessoriesitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--accessoriesitem__main {
	display: flex;
}

.fnc--slider--complectitems {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--complectitems__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content:center;
}

.slider--complectitems--inner {
	
}

.slider--complectitems__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--complectitems__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--complectitem__main {
	display: flex;
}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--item__left {
    padding-right: 5px;
    box-sizing: border-box;
}

.fnc--slider--item__right {
    padding-left: 5px;
    box-sizing: border-box;
}

.fnc--slider--listitem {
	width: 258px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border:1px solid #eee;
	position:relative;
}

@media all and (max-width: 1100px) {
    .fnc--slider--listitem { width: 288px; }
}

.fnc--slider--listitem:hover {
	box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--items--slider__main {
	
}

.fnc--items--slider__icon {
	position:absolute;
	left:0;
	top:0;
}

.fnc--items--slider__name {
	padding: 5px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
	justify-content: center;
}

.fnc--items--slider__image  {
	padding:5px 0;
	height:220px;
	display:flex;
	justify-content: center;
    align-items: center;
}

.fnc--items--slider__image img {
	max-width:100%;
	max-height:200px;
}

.fnc--products--slider__buttons {
	display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90%;
    padding: 5px 0;
}

.fnc--products--slider__votes {
	display: flex;
    align-items: center;
	padding:5px 0;
	justify-content:center;
}

.fnc--products--slider__vote {
	padding:0 5px;
}

.fnc--products--slider__shopinfo {
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:10px 0;
}

.fnc--products--slider__price {
	padding:5px;
	color:var(--fail-color);
	display:flex;
	align-items:center;
}

.fnc--products--slider__oldprice {
	
}

.fnc--products--slider__actprice {
	
}

.fnc--products--slider__buy {
	min-height:32px;
}

.fnc--slider--item__button {
	padding:5px 0;
	text-align: center;
}

.fnc--slider--item__button a{
	padding:10px 15px;
	border:1px solid transparent;
	border-bottom:1px solid var(--one-color);
	display:inline-block;
	margin:0 auto;
}

.fnc--slider--item__button a:hover{
	border:1px solid var(--one-color);
	background:var(--one-color);
	color:var(--inherit-color);
	text-decoration:none;
}

/*Ð¢Ð¾Ð¿ Ñ‚Ð¾Ð²Ð°Ñ€Ñ‹ Ð² Ñ†ÐµÐ½Ñ‚Ñ€Ðµ*/

.fnc--center-topitems {
	max-width:1200px;
	width:100%;
	padding:10px;
	margin:0 auto;
}

.fnc--center-topitems__title {
	font-size: 18px;
    padding: 20px 0;
}

.fnc--center-topitems__ver--container {
	display:flex;
	flex-wrap:wrap;
}

.fnc--center-topitems__hor--container {
	
}

/*Ð¢Ð¾Ð²Ð°Ñ€Ñ‹ Ð² ÑÑ‚Ð¾Ð»Ð±Ð¸ÐºÐµ*/

.fnc--items--column {
	
}

.fnc--items--column__title {
	font-size: 18px;
    padding: 20px 0;
}

.fnc--items--column__container {
	
}

.fnc--items--column__listitem {
	padding:10px 0;
	border-bottom:1px solid #eee;
}

.fnc--items--column__name{
	text-align:center;
	padding:5px 0;
}

.fnc--items--column__price {
	color:var(--fail-color);
	text-align:center;
	padding:5px;
}

.fnc--items--column__image--left, .fnc--items--column__image--right  {
	text-align:center;
}

.fnc--items--column__image--left img {
	max-width:100%;
	max-height:150px;
}

.fnc--items--column__image--right img {
	max-width:100%;
	max-height:150px;
}

.fnc--products--column__buy {
	padding:10px 0;
	text-align:center;
}

.fnc--items--column__button {
	padding:8px 0;
	text-align:center;
}

/*ÐžÐºÐ½Ð¾ Ð·Ð°Ð´Ð°Ñ‚ÑŒ Ð²Ð¾Ð¿Ñ€Ð¾Ñ*/

.popup--container--iteminfo {
	display:flex;
}

.popup--container--iteminfo__image {
    width: 50%;
    text-align: center;
    margin-right: 20px;
}

.popup--container--iteminfo__image img {
	max-width:100%;
	max-height:100px;
}

.popup--container--iteminfo__main {
	
}

.popup--container--iteminfo__name {
    font-size: 1em;
    padding-bottom: 10px;
    font-family: var(--medium\-font-family);
}

.popup--container--iteminfo__code {
	
}

/*Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ñ… Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹*/

.fnc--small--images__wrap {
	display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}

.fnc--small-image--button{
	line-height:0;
}

.fnc--small-image--button a{
	display:block;
}

.fnc--small--images__left {
	padding-right: 5px;
    box-sizing: border-box;
}

.fnc--small--images__right {
	padding-left: 5px;
    box-sizing: border-box;
}

.fnc--small--images__center {
	width: 100%;
}

.fnc--small--images--inner {
	display: flex;
    flex-direction: row;
}

.fnc--small--images--listitem__main {
	margin: 2px;
    width: 75px;
	height:75px;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
	cursor:hand;
	border:1px solid #eee;
}

.fnc--small--images--listitem__main:hover {
	box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--small-image--button {
	
}

.fnc--small-image--button img {
	max-width: 100%;
    max-height: 71px;
    border-radius: 6px;
}

/*Ð‘Ð¾Ð»ÑŒÑˆÐ¾Ðµ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ*/

.fnc--bigimage--header--line {
	display:flex;
	justify-content:space-between;
}

.fnc--bigimage--header__name {
	font-size:18px;
}

.fnc--bigimage--header__code {
	
}

.fnc--bigimage--inner {
	display: flex;  
	align-items: center; 
	justify-content: center;
}

.fnc--bigimage--left {
	position:absolute;
	z-index:200;  
	top:50%;
	left:0px;
}

.fnc--bigimage--right {
	position:absolute; 
	z-index:200; 
	top:50%; 
	right:0px;
}

.js__slider--small--images--popup {
	overflow-y:hidden
}

.js__slider--small--images--inner {
	margin:0 auto; 
	display:flex; 
	align-items:center; 
	justify-content:center;
}

.js__slider--small--images--item {
	border:1px solid transparent; 
	cursor:pointer; cursor:hand; 
	display:flex; 
	align-items:center; 
	justify-content:center;	
	width: 80px; 
	margin:2px; 
	height:80px;
}

.js__slider--small--images--item img {
	display:block; 
	max-width:78px;	
	max-height:78px;
}

.js__image--itembig {
	cursor:pointer;
	cursor:hand;
}


/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ð² ÑÐ»Ð°Ð¹Ð´ÐµÑ€Ðµ*/

.fnc--slider--brands {
	position: relative;
	padding:0 5px;
	max-width:1200px;
	margin:0 auto;
}

.fnc--slider--brands__title {
	font-size:18px;
	padding:15px 0;
	color:var(--3-text-color);
	border-bottom:1px solid var(--3-text-color);
	margin-bottom:10px;
	background-image:url('/themes/main/apple.svg');
	background-repeat:no-repeat;
	background-position:0% 50%;
	background-size: 30px;
	padding-left:40px;
}

.fnc--slider--brands__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.slider--brands--inner {
	
}

.slider--brands__container {
	display: block;
    overflow: hidden;
    margin: 0px auto;
}

.js__slider--brands__container {
	display: flex;
    flex-direction: row;
}

.fnc--slider--brands__main {
	display: flex;
}

.fnc--slider--brands__left {
    padding-right: 5px;
    box-sizing: border-box;
}

.fnc--slider--brands__right {
    padding-left: 5px;
    box-sizing: border-box;
}

.fnc--slider--listbrand {
	width: 263px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border:1px solid #eee;
}

.fnc--slider--listbrand:hover {
	box-shadow: 0 0 2px 1px var(--13-text-color);
}

.fnc--brands--slider__name {
	padding:5px;
	text-align:center;
}

.fnc--brands--slider__image  {
	padding:5px 0;
	height:220px;
	display:flex;
	justify-content: center;
    align-items: center;
}

.fnc--brands--slider__image img {
	max-width:100%;
	max-height:200px;
}

.fnc--slider--brands__button {
	padding:5px 0;
	text-align: center;
}

.fnc--slider--brands__button a{
	padding:10px 15px;
	border:1px solid transparent;
	border-bottom:1px solid var(--one-color);
	display:inline-block;
	margin:0 auto;
}

.fnc--slider--brands__button a:hover{
	border:1px solid var(--one-color);
	background:var(--one-color);
	color:var(--inherit-color);
	text-decoration:none;
}

/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ð² ÑÑ‚Ð¾Ð»Ð±Ð¸ÐºÐµ*/

.fnc--brands--column {
	
}

.fnc--brands--column__title {
	font-size: 18px;
    padding: 20px 0;
}

.fnc--brands--column--container {
	
}

.fnc--brands--column__listitem {
	padding:10px 0;
	border-bottom:1px solid #eee;
}

.fnc--brands--column__name {
	
}

.fnc--brands--column__image--left img {
	max-width:100%;
}

.fnc--brands--column__image--right img {
	max-width:100%;
}

.fnc--brands--column__button {
	padding:10px 0;
}


/*ÐŸÑ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ð¸ Ñ†ÐµÐ½Ñ‚Ñ€*/

.fnc--brands--list {
	padding:30px 0;
}

.fnc--brands--container {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}

.fnc--brands--listitem {
	flex-basis:calc(33% - 40px);
	margin:15px;
	padding:10px;
	display:flex;
	flex-direction:column;
	text-align:center;
}

@media all and (max-width: 700px) {
   
	.fnc--brands--container {
		flex-wrap: wrap;
    }
	
}

@media all and (max-width: 600px) {
   
	.fnc--brands--listitem {
		flex-basis:calc(50% - 40px);
	}
	
}

@media all and (max-width: 400px) {
   
	.fnc--brands--listitem {
		flex-basis:calc(100% - 40px);
	}
	
}

.fnc--brands--listitem:hover {
	box-shadow:0 0 1px 0 var(--3-text-color);
}

.fnc--brands--listitem__main {
	
}

.fnc--brands--listitem__name  {
	padding:10px 0;
}

.fnc--brands--listitem__name a {
	font-size:18px;
}

.fnc--brands--listitem__image {
	padding: 10px 0;
    display: flex;
    align-items: center;
    height: 200px;
    justify-content: center;
}

.fnc--brands--listitem__image img{
	max-width:100%;
}

.fnc--brands--listitem__info  {
	
}

/*Ð¤Ð¸Ð»ÑŒÑ‚Ñ€Ñ‹*/


.mobile--show--filters {
	display:none;
	margin:0 auto;
	padding:10px 0;
	text-align:center;
}

.js__filters--popup {
	display: none;
    position: fixed;
    height: 100%;
    width: 0px;
    top: 0px;
    left: 0;
    z-index: 4292929;
    max-height: 100%;
    background: #f6f6f6;
    border-right: 1px solid var(--4-text-color);
	opacity:0;
}

.js__filters--popup--content {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 100%;
}

.js__filters--popup--close {
	padding: 5px;
    text-align: right;
}

@media all and (max-width: 800px) {
	
	.js__filters--wrapper {
		display:none;
	}
	
	.mobile--show--filters {
		display:block;
	}

	.fnc--filters--wrap {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: column;
	}

	div.fnc--filters--item {
		width: 100%;
	}

	.js__filters--popup--content {
		padding: 5px 15px;
	}

	.fnc--filters--item__params {
		padding: 3px 0 30px;
	}

	.fnc--filters--title{
		display:none;
	}
	
}

.fnc--filters--container {
	padding:5px 10px;
}

.js__filters--popup--content {
	padding:5px 10px;
}

.fnc--filters--title {
    font-size: 2.2em;
    text-transform: uppercase;
    font-family: var(--bold-font-family);
    margin-bottom: 45px;
}

.fnc--filters--wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fnc--filters--item {
    width: 25%;
}

.fnc--filters--item__name {
	padding:3px 0;
}

.fnc--filters--item__params {
	padding:3px 0;
}

.fnc--filters--item__inner {
	display:flex;
	padding:3px 0;
}

.fnc--filters--item__inner select{
    width: 100%;
    box-shadow: none;
}

.fnc--filters--item__inner--name {
	padding:0 5px  0 0;
}

.fnc--filters--item__inner--param {
	flex-grow:1;
	padding:0 5px;
}

.fnc--filters--item__inner--slider {
	display:flex;
	padding:3px 0;
	justify-content:space-between;
	align-items:center;
}

.fnc--filters--item__inner--slider div:nth-child(2) {
	padding:0 5px;
}

.fnc--filters--button {
	padding:5px 0;
}

.label--filter--checkbox {
	width:14px;
	height:14px;
	border:1px solid var(--one-color);
	background:var(--inherit-color);
	display: block;
	cursor:pointer;
	cursor:hand;
	position:relative;
}

input[type=checkbox]:checked + label:before {
	content:"";
	display: block;
	width:10px;
	height:10px;
	background:var(--one-color);
	position:absolute;
	top: 2px;
    left: 2px;
}

input[type=checkbox]:not([disabled]):hover + label:before {
	content:"";
	display: block;
	width:10px;
	height:10px;
	background:var(--one-color);
	position:absolute;
	top: 2px;
    left: 2px;
}

input[type=checkbox]:disabled + label {
	background:var(--11-text-color);
	border:1px solid var(--11-text-color);
	cursor:default;
}

.js__filter--check {
	display:none;
}

.js__brand--check {
	display:none;
}

/*ÐšÐ¾Ñ€Ð·Ð¸Ð½Ð°*/

.fnc--cart--container {
	cursor: pointer;
    cursor: hand;
    background-image: url(/themes/main/cart.svg);
    background-size: 34px;
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 48px;
}

.fnc--cart--container__title {
	font-weight:bolder;
	padding-bottom:5px;
}

.fnc--cartlist--section {
    max-width: 1075px;
    margin: 0 auto;
    width: 100%;
}

.fnc--cartlist--container table {
	width: 100%;
    padding: 10px 0;
    border-collapse: collapse;
    margin: 10px 0;
}

.fnc--cartlist--container table td{
	padding: 5px;
    vertical-align: middle;
    border: 1px solid var(--one-color);
}

.js__cart--popup {
	width: 800px;
    background: #f6f6f6;
}

.fnc--cartlist--row__title {
    color: var(--one-color);
    text-align: center;
    background: #191919;
}

.fnc--cartlist--row__title td{
	background: #191919;
}

.fnc--cartlist--row__total {
    background: #191919;
    color: var(--one-color);
}

.fnc--cartlist--row:nth-child(odd) {
	background: var(--12-text-color);
}

.fnc--cartlist--cell__code {
	width:80px;
	word-wrap:break-word;
	text-align:center;
}

.fnc--cartlist--row__title .fnc--cartlist--cell__img {
	font-size:0;
}

.fnc--cartlist--cell__img {
	width:60px;
	text-align:center;
}

.fnc--cartlist--cell__img img {
	max-width:100%;
	max-height:60px;
}

.fnc--cartlist--cell__qnt {
	width:80px;
	text-align:center;
}

.fnc--cartlist--cell__qnt input,
.fnc--cartlist--cell__qnt input:focus{
	text-align: center;
    border: 1px solid #191919;
    width: 40px;
    padding: 8px 0;
}

.fnc--cartlist--cell__price, .fnc--cartlist--cell__total__summ, .fnc--cartlist--cell__amount {
	text-align:center;
	width:100px;
}

.fnc--cartlist--cell__delete {
	text-align:center;
	width:50px;
}

.fnc--cartlist--cell__total__text {
	text-align:right;
}

@media all and (max-width: 600px) {
	
	.fnc--cartlist--cell__code {
		display:none;
	}
	.fnc--cartlist--cell__price {
		display:none;
	}

}

.fnc--cartlist--params__table {
	padding:2px 0 !important;
	color: var(--one-color);
	font-size:11px;
	width:auto !important;
}

.fnc--cartlist--params__table--name {
	padding:2px 0 !important;
}

.fnc--cartlist--params__table--param {
	padding:2px 0 !important;
	padding-left:10px !important;
}

.fnc--cartpopup--buttons {
	display:flex;
	justify-content:space-between;
	padding:10px 0;
}

.fnc--cartpopup--buttons > div{
	width:50%;
}

.cart--page--container{
	padding: 80px 0 100px;
}

.fnc--cartpopup--continue {
	
}

.fnc--cartpopup--gotocart {
	
}

.fnc--cartpopup--empty {
	
}

.cart--page--inner {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    flex-wrap: wrap;
}

.cart--page--inner__left {
    flex-basis: calc(50% - 10px);
    margin-bottom: 30px;
}

.cart--page--inner__line{
	margin-bottom: 20px;
}



h2.small-one{
	text-align: center;
    color: var(--one-color);
    font-size: 1.5em;
    text-transform: none;
    margin-bottom: 30px;
}

.cart--page--inner__right {
	flex-basis:calc(50% - 10px);
	padding-left:10px;
}

@media all and (max-width: 600px) {
	
	.cart--page--title {
		padding:0 5px;
	}
	.cart--page--inner {
		flex-wrap:wrap;
	}
	.cart--page--inner__left {
		flex-basis:calc(100% - 10px);
		padding:0px 5px;
		margin:0 auto;
	}

	.cart--page--inner__right {
		flex-basis:calc(100% - 10px);
		padding:0px 5px;
		margin:0 auto;
	}
	
}

.cart--page--inner--block__name {
	padding:3px 0;
	position:relative;
	display:none;
}

.cart--page--inner--block__name:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#f6f6f6;
}

.cart--page--inner--block__param {
    max-width: 450px;
    padding: 0;
    margin: 0 auto;
}

.cart--page--checkout {
    padding: 30px 10px 0;
    text-align: center;
}

.cart--page--payment__line {
	display:flex;
	padding:5px 0;
	align-items:center;
}

.cart--page--payment__line--left {
	
}

.cart--page--payment__line--right {
	
}

.fnc--comparision--container {
	cursor:pointer;
	cursor:hand;
}

.fnc--comparision--container__wrap {
	background-image:url('/themes/main/comparison.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	position:relative;
}

.fnc--comparision--active {
	background-image:url('/themes/main/comparison_red.svg');
}

.fnc--comparision--amount {
	position: absolute;
    background: var(--inherit-color);
    color: var(--fail-color);
    padding: 2px 5px;
    border-radius: 100%;
    left: 0;
    top: 0;
    font-size: 12px;
    border: 1px solid var(--one-color);
}

.fnc--favors--container {
	cursor:pointer;
	cursor:hand;
}

.fnc--favors--container__wrap {
	background-image:url('/themes/main/favorite.svg');
	background-repeat:no-repeat;
	background-size:100%;
	background-color:transparent;
	width:30px;
	height:30px;
	position:relative;
}

.fnc--favors--active {
	background-image:url('/themes/main/favorite_red.svg');
}

.fnc--favors--amount {
	position: absolute;
    background: var(--inherit-color);
    color: var(--fail-color);
    padding: 2px 5px;
    border-radius: 100%;
    left: 0;
    top: 0;
    font-size: 12px;
    border: 1px solid var(--one-color);
}

.fnc--products--listitem__article,
.fnc--products--listitem__quantity,
.fnc--products--listitem__buy{
    display: none;
}

/*catalog-table*/

div.flex-block.table-catalog-header {
    display: flex;
    width: 100%;
    border: 1px solid var(--one-color);
	height: 42px;
	box-sizing: border-box;
}

.catalog-part{
	border: 1px solid var(--one-color);
    border-top: 0;
    width: 100%;
    text-align: center;
    height: 42px;
    box-sizing: border-box;
    background: var(--inherit-color);
    color: var(--one-color);
    display: flex;
    align-items: center;
	justify-content: center;
	font-size: 1.125em;
}

.table-catalog-header > div{
    width: 18%;
    border-right: 1px solid var(--one-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--one-color);
    font-size: 1.125em;
    box-sizing: border-box;
}

.table-catalog-header > div:nth-child(3),
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__name{
	width:28%;
}

.table-catalog-header > div:last-child{
	border:none;
}

.table-catalog-header ~ div .fnc--products--listitem{

}

.table-catalog-header ~ div.fnc--products--listitem{
	flex-basis: 100%;
    display: flex;
    flex-direction: row;
    align-items: normal;
    margin: 0;
    position: relative;
    border: 1px solid var(--one-color);
    border-top: none;
}

.table-catalog-header ~ div.fnc--products--listitem > div{
	width: 18%;
	display: flex;
	border-right:1px solid var(--one-color);
}

.table-catalog-header ~ div.fnc--products--listitem > div:last-child,
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__shopinfo{
	border:none;
}

.table-catalog-header ~ div.but-block{
	width: 100%;
    padding: 30px 0 60px;
}




.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__main,
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__article,
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__name,
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__quantity,
.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__shopinfo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
} 

.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__quantity{
	flex-direction: column;
	position:relative;
}

.upQuantity{
    background: #191919 url(/themes/img/arrow-item.svg) no-repeat center center;
    width: 30px;
	height: 20px;
	transition: all 0.5s ease;
	cursor: pointer;
}

.n-q{
	position: absolute;
    left: calc(50% + 20px);
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.downQuantity{
    background: #191919 url(/themes/img/arrow-item.svg) no-repeat center center;
    width: 30px;
	height: 20px;
	transition: all 0.5s ease;
	transform: rotate(180deg);
}

.downQuantity:hover,
.upQuantity:hover{
	background-color: var(--one-color);	
	cursor: pointer;
}

.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__image {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__buy{
	position:absolute;
	top:0;
	bottom:0;
	height:40px;
	width: 40px;
	right:-40px;
	margin:auto;
}


.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__buy button{
	font-size: 0;
    border-radius: 0;
    border: none;
    height: 40px;
    width: 40px;
    background: var(--inherit-color) url(/themes/img/plus.svg) no-repeat center center;
}

.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__buy button:hover{
	background-color: var(--one-color);
}


.table-catalog-header ~ div.fnc--products--listitem .fnc--products--listitem__quantity input{
	border: 1px solid var(--inherit-color);
    width: 30px;
    height: 30px;
    padding: 0;
    text-align: center;
}

.table-catalog-header ~ div .fnc--products--listitem__image img {
    max-width: 90%;
	max-height: 140px;
    display: block;
    border-radius: 6px;
}


.catalog-table-st .content--center--inner__left{
	display:none;
}


/*slider*/



.slider {
	width: 50%;
	margin: 100px auto;
}

.slick-slide {
  margin: 0px;
}

.slick-slide img {

}

.slick-prev:before,
.slick-next:before {
  color: black;
}


.slick-slide {
  transition: all ease-in-out .3s;
}

.slick-active {
}

.slick-current {
  opacity: 1;
}


/* Slider */
.slick-slider
{
position: relative;

display: block;
box-sizing: border-box;

-webkit-user-select: none;
   -moz-user-select: none;
	-ms-user-select: none;
		user-select: none;

-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
	touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}


.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0 !important;
    width: 100%;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	 -o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
}

.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
display: flex;
align-items: flex-start;
}
.slick-track:before,
.slick-track:after
{
display: table;

content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}

.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}


[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img {
display: block;
margin: 0 auto;
max-width: 100%;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
	display: block;
    outline: none;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;

height: auto;

border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}


/* Arrows */
.slick-prev,
.slick-next{
    position: absolute;
    top: 0;
    bottom: 140px;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--one-color);
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease;
    margin: auto;
}

.slick-prev{

}

.slick-next{
}

.slick-prev:hover,
.slick-next:hover{background-color: #191919;box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.15);border-color: #191919;z-index: 1;}


.slick-prev.slick-disabled,
.slick-next.slick-disabled
{

opacity: .1;
}

.slick-prev:before,
.slick-next:before
{
	content:'';
	width:50px;
	height:50px;
	background: url(/themes/img/arrow-white.svg) no-repeat center 58%;
	margin:auto;
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	top:0;
}

.slick-prev:before{

}

.slick-prev:hover:before,
.slick-next:hover:before{

}



.slick-prev
{z-index: 1;left: -17px;transform: rotate(-45deg);right: auto;}
[dir='rtl'] .slick-prev
{
}
.slick-prev:before
{

transform: rotate(135deg);
}
[dir='rtl'] .slick-prev:before
{

}

.slick-next
{right: -17px;left: auto;transform: rotate(-45deg);}
[dir='rtl'] .slick-next
{


}
.slick-next:before
{

transform: rotate(-45deg);
}
[dir='rtl'] .slick-next:before
{

}

/* Dots */
.slick-dotted.slick-slider{
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
text-align: center;
}

.slick-dots
{
position: absolute;
bottom: 71px;
right: 100%;
display: block;
width: 50%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
line-height: 0;
}
.slick-dots li
{
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 10px;
padding: 0;
cursor: pointer;
}
.slick-dots li button
{
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
background: #f6f6f6;
}



li.slick-active button{
background: var(--inherit-background);
box-shadow: 0px 4px 20px rgba(225, 46, 60, 0.4);
}

.slick-dots li button:hover,
.slick-dots li button:focus{
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
opacity: 1;
}
.slick-dots li button:before
{

}
.slick-dots li.slick-active button:before{

}




/*slider--end--*/

.protection-block .center-block{
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.protection-block .protect{
	font-size: 0.75em;
}

/*effe-line*/

.effe-line{
    /*background:#666666;*/
    text-align: center;
    font-size: 16px;
    padding: 10px 0;
}

.effe-line a{
    text-decoration:none;
    color: #191919;
	/*color:#f6f6f6;*/
	font-weight: bold;
}

.effe-line a:hover{
    
}

.effe-line a span{
    
}

.effe-line a br{
    display:none;
}

.effe-line img{
    max-width: 18px;
    margin-top: -9px;
    margin-left: -12px;
    left: 13px;
    top: 6px;
    position: relative;
}

@media screen and (max-width:499px){
    .effe-line a br{
        display:block;
    }
}

/*effe-line*/

/*modal-form*/

.fnc--feedback.fnc--feedback_modal-form{
	padding: 50px 10px;
    background: rgba(25, 25, 25, 0.5);
    color: #f6f6f6;
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    z-index: 101;
    text-align: center;
    display: none;
    align-items: center;
}

.fnc--feedback.fnc--feedback_modal-form.active{
	display:flex;
}

.fnc--feedback.fnc--feedback_modal-form .fnc--feedback--container{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px 30px;
    background: var(--inherit-color);
    position: relative;
}

.fnc--feedback.fnc--feedback_modal-form .fnc--feedback__title {
    font-size: 1.5em;
    padding: 10px 0 0;
    font-family: var(--bold-font-family);
}

.fnc--feedback.fnc--feedback_modal-form .fnc--feedback--main__name{
	display:none;
}


/*form-line*/

.form-line label{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
	background: rgba(25, 25, 25, 0);
	transition: all 0.5 ease;
}

.form-line label:hover{
    background: rgba(25, 25, 25, 0.7);
}

#drop-zone label{
	cursor:pointer;
}

#drop-zone.active,
.form-line label.active{
	display:none;
}

.form-line label span{
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    border: 2px solid var(--one-color);
    padding: 13.5px 15px;
    font-family: var(--bold-font-family),calibri, arial;
    font-size: 1em;
    background: var(--one-color);
    color: var(--inherit-color);
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 30px;
    display: block;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
	cursor:pointer;
}

.form-line.hidden{
	opacity:0;
	transition: all 0.5s ease;
	top: 20px;
	bottom:auto;
}

.form-line.visible{
	top:0;
	opacity:1;
	z-index:1;
}

.form-line ~ .form-line{
	margin-bottom: 30px;
	padding:0 20px;
}


/*mobile-menu*/


.h-menu{
    right: -100%;
    width: 100%;
    position: fixed;
	top: 74px;
	padding-bottom:74px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #f6f6f6;
    z-index: 106;
    transition: all 0.8s ease;
}

.h-menu .mfp-close{
    color: #000;
    font-size: 3em;
}

.h-menu.active{
    right: 0;
}

.open-hamburger-menu{
    position: absolute;
    top: 0;
	bottom: 0;
	margin:auto;
	right:15px;
    z-index: 110;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    cursor: pointer;
    cursor: hand;
    transition: all 0.2s ease;
}

/*.open-hamburger-menu:before{
    content: 'Menu';
    color: #f6f6f6;
}*/

.open-hamburger-menu.active:before{
    opacity:0;
}

header.active ~ .open-hamburger-menu{

}

.open-hamburger-menu.active{
}

.open-hamburger-menu span{
	height: 4px;
    background: #d9b16c;
    display: block;
    margin-bottom: 8px;
    width: 100%;
    transition: all 0.2s ease;
	border-radius: 6px;
	position:relative;
}

.open-hamburger-menu span:nth-child(2){
    max-width:80%;
}


.open-hamburger-menu span:last-child{
    margin:0;
}

.open-hamburger-menu span:last-child{
    margin:0;
}


.open-hamburger-menu.active span:nth-child(2){
    opacity:0;
}

.open-hamburger-menu.active span:first-child {
    top: 12px;
    transform: rotate(45deg);
}

.open-hamburger-menu.active span:last-child {
    bottom: 12px;
    transform: rotate(-45deg);
}

.mobile-nav .menu--catalog__item a {
    width: 100%;
    padding: 15px 15px;
    font-size: 1em;
    color: #191919;
    font-family: var(--medium-font-family), calibri, arial;
    display: block;
    border-bottom: 1px solid #d9b16c;
}

.mobile-nav .menu--chapters__item {
    margin: 0;
    position: relative;
    display: block;
    width: 100%;
}

.mobile-nav .menu--chapters__item a {
    width: 100%;
    color: #191919;
    font-size: 1em;
    font-family: var(--medium-font-family);
    border-bottom: 1px solid #d9b16c;
    display: block;
    padding: 15px 15px;
}

.mobile-nav .menu--catalog,
.mobile-nav .menu--chapters {
	flex-direction: column;
}

.mobile-nav .menu--catalog__item {
	padding: 0;
}


.mobile-nav .phones a{
    color: #191919;
    font-size: 1.2em;
    margin: 0;
	line-height: 1.8;
	font-family: var(--bold-font-family);
}

.mobile-nav .phones{
	padding: 20px 0;
	display:flex;
	flex-direction: column;
	align-items: center;
}


.h-menu .content-block  a{
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h-menu .content-block  div.topchapters_separator{
	display:none;
}

.h-menu  .content-block{
    margin-top: 50px;
}

.languages{
	display:flex;
}

.languages > div{
	position:relative;
}

.languages > div a{
	padding:10px;
}

.languages > div.language a{
	opacity:0.5;
}

.languages > div.language a:hover{
	opacity:1;
}



header .languages > div a{
	color:#fff;
}

header .languages > div:first-child{
	margin-right:2px;
}

header .languages > div:first-child:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 2px;
    height: 20px;
    background: #F6f6f6;
    margin: auto;
}

.h-menu div.languages > div:first-child:before{
    content: '';
    height: 20px;
    background: #eee;
    width: 2px;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.h-menu div.languages > div a{
	display:block;
}


.h-menu div.languages {
    padding: 0;
    justify-content: center;
    background: #d9b16c;
    max-width: 100px;
    border-radius: 100px;
    margin: 10px auto;
}


.h-menu .languages > div:first-child:before{
	height:10px;
}

@media screen and (min-width:1100px){
    .open-hamburger-menu{
        display:none;
	}

}
    

@media screen and (max-width:1100px){
    
.open-hamburger-menu{
    display:flex;
}
}

.h-menu .content-block a {
    color: #2F2F2F;
    margin-right: 0;
    justify-content: flex-start;
    margin: 0 25px;
    font-size: 16px;
}

	
.headcolumn3{
	margin-right: 75px;
}
}



@media screen and (max-width:400px){


.h-menu {
    right: -100%;
    width: 100%;
}
}

/*steps-form*/

#step-one,
#step-two,
#step-three,
.js__feedback--param7-33, 
.js__feedback--param6-32{
	display:none;
	padding: 0;
}

#step-one.active,
#step-two.active,
#step-three.active{
	display:block;
}

section.content--center--main,
.content--center--main section{
	position:initial;
}

#step-three .h-form{
    padding-top: 0;
}

.js__close--filters--popup{
	width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    background: #191919;
    color: #fff;
    display: inline-block;
}

.js__close--filters--popup:hover{
	background: var(--one-color);
}

.fnc--cart--empty{
	padding: 60px 30px;
    text-align: center;
}


.catalog-table-st.some-page h1.h-form {
    margin-top: 80px;
}

/*drag-and-drop*/

#drop-zone{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.js__feedback--form15{
	visibility:hidden;
}


.socials{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
}
.socials p{
    font-family: var(--bold-font-family);
    color:#f9f9f9;
}
.socials a{
	width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 10px 0 0;
    opacity: 1;
    transition: all 0.5s ease;
    font-size: 0;
}
.socials a.instagram{
    background-image: url(/themes/img/instagram.svg);
}
.socials a.instagram:hover{
    background-image: url(/themes/img/instagram-hover.svg);
}
.socials a.facebook{
    background-image: url(/themes/img/facebook.svg);
}
.socials a.facebook:hover{
    background-image: url(/themes/img/facebook-hover.svg);
}

.content--center--page__text h2,
.content--center--page__text h3{
	font-size: 2em;
	margin: 30px 0 20px;
	}

	.itempage--item--image{
		position:relative;
		opacity:1;
		transition: all 0.5s ease;
	}

	.fnc--small-image--button img{
		transition: all 0.5s ease;
	}

	.itempage--item--image:hover,
	.fnc--small-image--button:hover img{
		opacity:0.8;
	}

	.itempage--item--image a{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.flex-block.adress-block{
		width:100%;
	}

	.flex-block.adress-block > p{
		flex-grow:1;
	}

	.reikovie-sistemi:before{
		bottom: -100px !important;
	}

	.reikovie-sistemi {
		position: relative;
		height: 500px;
		z-index: 10;
		max-width: 1920px;
		margin: 0;
	}

	.reikovie-sistemi > div{
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50%;
		z-index: 11;
	}

	.reikovie-sistemi > div.left-link-home{
		background: url(/themes/img/r-glass.jpg) no-repeat center center;
		background-size: cover;
		left:0;
	}

	.reikovie-sistemi > div.right-link-home{
		background: url(/themes/img/r-baluster.jpg) no-repeat center 20%;
		background-size: cover;
		right:0;
	}

	.reikovie-sistemi a{
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		z-index:1;
	}

	.reikovie-sistemi p{
		font-size: 2.25em;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		margin: 0;
		font-family: var(--bold-font-family);
		position: absolute;
		left: 10%;
		color: #fff;
		top: 35%;
		text-shadow: 0 0 12px #000;
	}

	.left-link-home:hover p,
	.right-link-home:hover p{
		color: var(--one-color);
	}

	/*R-BALUSTER*/

	.systems-bl.flex-block{
		justify-content: space-around;
		flex-wrap: wrap;
		margin-bottom: 40px;
	}

	.types-bl.flex-block{
		justify-content: center;
		margin-bottom: 40px;
	}

	.thickless-bl.flex-block{
		margin-bottom: 40px;
	}

	.system,
	.type,
	.thickless{
		text-align: center;
		cursor: pointer;
		margin: 0 calc(25% / 2 - 125px);
		
	}

	.filtr-reika-system h2{
		text-align: center;
		background: #d9b16c;
		color: #fff;
		font-size: 2em;
		padding: 10px 0;
		margin-bottom: 40px;
	}


	.system .img-block,
	.type .img-block,
	.thickless .img-block {
		max-width: 250px;
		border: 3px solid transparent;
		border-radius: 4px;
		line-height: 0;
		position:relative;
	}

	.system:hover .img-block,
	.type:hover .img-block,
	.thickless:hover .img-block{
		box-shadow: 0px 0 6px rgba(0, 0, 0, 0.5);
		position:relative;
	}

	.thickless .img-block:before{
		content:'';
		background: rgba(25, 25, 25, 0.3);
		position:absolute;
		top:0;
		left:0;
		bottom:0;
		right:0;
	}

	.thickless:hover .img-block:before,
	.thickless.active .img-block:before{
		background: rgba(25, 25, 25, 0);
	}

	.system.active .img-block,
	.type.active .img-block,
	.thickless.active .img-block{
		box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
		border: 3px solid var(--one-color);
	}

	.system .img-block img,
	.type .img-block img,
	.thickless .img-block img{
		max-width: 100%;
		max-height: 300px;
		border-radius: 4px;
	}

	.system-name, .type-name{
		font-size: 1.1em;
	}

	.filtr-input{
		display:none;
	}

	.final-filtr .but-block{
		max-width: 400px;
		width: 100%;
		margin: 60px 0 0;
	}

	.final-filtr .but-block a{
		max-width: 400px;
	}

	.fnc--files--list{
		display: flex;
		flex-wrap: wrap;

	}

	.fnc--files--listitem{
		flex-basis: calc(25% - 12px);
		margin: 0 6px 12px;
		border: 1px solid var(--one-color);
		padding-bottom: 47px;
		position:relative;
	}

	.fnc--files--listitem__name{
		padding: 12px;
		font-size: .9em;
	}

	.fnc--files--listitem_icon{
		text-align: center;
		line-height: 0;
		background: #E6E6E6;
		overflow:hidden;
	}

	.fnc--files--listitem_icon a{
		min-height: 200px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.fnc--files--listitem_icon img{
		max-width: 140%;
		max-height: 200px;
	}

	.fnc--files--listitem__download{
		flex-shrink: 1;
		flex-basis: 100%;
		display: flex;
	}

	.fnc--files--listitem__download a{
		background: var(--one-color);
		width: 100%;
		padding: 15px;
		text-decoration: none;
		font-size: .9em;
		text-transform: uppercase;
		box-sizing: border-box;
		text-align: center;
	}

	.fnc--files--listitem__download a:hover{
		background: #191919;
		color:#fff;
	}

	.flex-block.slime{
		position:absolute;
		bottom:0;
		left:0;
		right:0;
		height:47px;
	}
	

	section.body{
		margin:0 auto;
		max-width: 1920px;
	}

	.fnc--feedback.fnc--feedback_sale-form {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		max-width: 1000px;
		max-height: 600px;
		margin: auto;
		z-index: 101;
		background: #191919;
		padding: 0;
		box-shadow: 0 0 150px 0 #191919;
		border-radius:6px;
	}

	.fnc--feedback.fnc--feedback_sale-form .fnc--feedback--container {
		max-width: 100%;
	}

	.fnc--feedback.fnc--feedback_sale-form .flex-block{
		align-items:center;
		width:100%;
	}

	.fnc--feedback.fnc--feedback_sale-form .form-part{
		padding:60px 24px;
		color:#fff;
	}

	.fnc--feedback.fnc--feedback_sale-form .fnc--feedback__title{
		text-align: center;
	}

	.fnc--feedback.fnc--feedback_sale-form .fnc--feedback--main__line input{
		border-color:#fff;
		background:#fff;
	}

	.fnc--feedback.fnc--feedback_sale-form .fnc--feedback--main__line input.fail--input {
		border-color: var(--fail-color);
	}

	.fnc--feedback.fnc--feedback_sale-form .fnc--feedback--main__line .fnc--feedback--main__name {
		font-size: 0.9em;
	}

	.fnc--feedback.fnc--feedback_sale-form .flex-block .img-part{
		position:relative;
		line-height:0;
	}

	.fnc--feedback.fnc--feedback_sale-form .flex-block .img-part:before {
		content: '';
		background: url(/img/system/1554831237_8a6be8aa61e05a7bc177.png);
		position: absolute;
		left: 30px;
		bottom: 30px;
		width: 74px;
		height: 48px;
	}

	.fnc--feedback.fnc--feedback_sale-form .flex-block .img-part:after {
		content: '';
		position: absolute;
		background: rgba(246, 246, 246, 0.1);
		top: 0;
		bottom: 0;
		right: 0;
		width: 4px;
	}
	