/* ------ fonts ------ */
@font-face {
	font-family: 'PF Beau Sans Pro';
	src: url('fonts/PFBeauSansPro-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'PF Beau Sans Pro';
	src: url('fonts/PFBeauSansPro-Italic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'PF Beau Sans Pro';
	src: url('fonts/PFBeauSansPro-SemiBold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

* {
	user-select: auto !important;
	pointer-events: all !important;
}

/* ------ basic ------ */
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.ios,
body.ios * {
	cursor: pointer;
}

button::-moz-focus-inner {
	border: none;
}

input[type=text],
input[type=number],
input[type=search],
textarea {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	appearance: none;
}

input[type=text]::-ms-clear,
input[type=search]::-ms-clear {
	display: none;
}

input::-webkit-clear-button {
	-webkit-appearance: none;
	display: none;
}

input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

img {
	border: none;
}

.touch * {
	outline: none;
}

[v-cloak] {
	display: none;
}


html,
body {
	margin: 0;
	padding: 0;
}

body {
	color: #303030;
	background-color: #f0f0f0;
	font: 400 15px/23px 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
	position: relative;
	min-height: 100vh;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
	display: -webkit-flex;
	display: -ms-flexbox;
	-ms-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}


::-moz-selection {
	background: #2c84b7;
	color: #fff;
}

::selection {
	background: #2c84b7;
	color: #fff;
}


.freeze {
	overflow: hidden;
}



/* --- colors --- */
.black {
	color: #303030;
}

.white {
	color: #fff;
}

.gray {
	color: #919191;
}

.gray-light {
	color: #e2e2e2;
}

.orange {
	color: #ef6b01;
}

.blue {
	color: #2c84b7;
}

.red {
	color: #e63c2f;
}

.green {
	color: #529025;
}

.bx_txt_white {
	color: #fff;
}

.bx_txt_black {
	color: #303030;
}


/* --- text --- */
h1,
.h1 {
	font-size: 44px;
	font-weight: 600;
	line-height: 52px;
	margin: 0px 0;
}

h2,
.h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin: 0px 0;
}

h3,
.h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 34px;
	margin: 0px 0;
}

h4,
.h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin: 0px 0;
}

h5,
.h5 {
	font-size: 15px;
	font-weight: 600;
	line-height: 23px;
	margin: 0px 0;
}


strong,
.strong {
	font-style: italic;
	font-size: 17px;
	line-height: 25px;
}

.stronger {
	font-style: italic;
	font-size: 20px;
	line-height: 28px;
}

.font-lg {
	font-size: 17px;
	line-height: 25px;
}

p {
	margin: 15px 0;
}

strong,
.strong {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

b {
	font-weight: 600;
}

i {
	font: inherit;
	font-style: italic;
}

ul,
ol,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

a,
.link {
	color: #2c84b7;
	cursor: pointer;
	text-decoration: none;
	transition: .2s;
	outline: none;
}

.no-touch a:hover,
.no-touch .link:hover {
	color: #ef6b01;
}

.black-link {
	color: #303030;
}

.no-touch .black-link:hover {
	color: #ef6b01;
}

.developer-link {
	color: #919191;
	display: inline-block;
	vertical-align: top;
}

/* .no-touch .developer-link-block:hover .developer-link {
	color: #ef6b01;
} */

.underlined-link {
	text-decoration: underline;
}

.more-link::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid;
	border-left: 1px solid;
	margin-left: -12px;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	-ms-transform: translateY(-2px) rotate(-45deg);
	-webkit-transform: translateY(-2px) rotate(-45deg);
	transform: translateY(-2px) rotate(-45deg);
}

.more-link.open::after {
	-ms-transform: translateY(2px) rotate(135deg);
	-webkit-transform: translateY(2px) rotate(135deg);
	transform: translateY(2px) rotate(135deg);
}

.more-link__txt {
	padding-right: 20px;
}

.area-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}



/* --- text guide --- */
.text-guide ul,
.text-guide ol {
	margin: 15px 0;
}

.text-guide ul:first-child,
.text-guide ol:first-child {
	margin-top: 0;
}

.text-guide ul:last-child,
.text-guide ol:last-child {
	margin-bottom: 0;
}

.text-guide ul>li,
.styled-ul>li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 8px;
}

.text-guide ul>li::before,
.styled-ul>li::before {
	content: '';
	position: absolute;
	top: .6em;
	left: 0;
	width: 16px;
	border-top: 1px solid;
}

.text-guide ul>li:last-child,
.styled-ul>li:last-child {
	margin-bottom: 0;
}

.text-guide ul>li::before {
	display: none;
}

.text-guide ol {
	counter-reset: ol;
}

.text-guide ol>li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 4px;
	counter-increment: ol;
}

.text-guide ol>li::before {
	content: counter(ol) '.';
	position: absolute;
	left: 0;
	color: #ef6b01;
}

.text-guide ol>li:last-child {
	margin-bottom: 0;
}

.text-guide strong {
	display: block;
	margin: 15px 0;
}

.text-guide strong:first-child {
	margin-top: 0;
}

.text-guide strong:last-child {
	margin-bottom: 0;
}

.text-guide h2,
.text-guide h3 {
	margin: 50px 0 15px;
}

.text-guide h4 {
	margin: 28px 0 13px;
}

.text-guide p+ol,
.text-guide p+ul {
	margin-top: -10px;
}

.text-guide p+br+ul,
.text-guide p+br+ol {
	margin-top: -23px;
}

.dropdown p+ul {
	margin-top: 0;
}

.text-guide img[align="left"]:first-child+h2,
.text-guide img[align="left"]:first-child+h3,
.text-guide img[align="left"]:first-child+p,
.text-guide img[align="right"]:first-child+h2,
.text-guide img[align="right"]:first-child+h3,
.text-guide img[align="right"]:first-child+p,
.text-guide img[align="right"]:first-child+strong {
	margin-top: 0;
}

.text-guide--sm,
.text-guide--sm.dropdown {
	font-size: 13px;
	line-height: 18px;
}

.text-guide--sm p {
	margin: 10px 0;
}

.text-guide--sm p:first-child {
	margin-top: 0;
}

.text-guide--sm p:last-child {
	margin-top: 0;
}

.text-guide--sm ul>li {
	margin-bottom: 5px;
}

.text-guide table {
	max-width: 100%;
	border-collapse: collapse;
}

.text-guide table th,
.text-guide table td {
	vertical-align: top;
	padding: 4px 20px;
	border-bottom: 1px solid #e2e2e2;
	border-top: 1px solid #e2e2e2;
}

.text-guide table th {
	font-weight: 600;
	text-align: left;
	color: #303030;
	background-color: #e2e2e2;
	padding: 6px 20px;
}

.text-guide table td {
	font-weight: 400;
}

.text-guide .table-scroller {
	max-width: 100%;
	overflow-y: hidden;
	overflow-x: auto;
}

.text-guide img {
	margin: 20px 0;
	display: block;
	max-width: 100%;
	height: auto;
}

.text-guide img[align="left"] {
	float: left;
	margin: 0 40px 30px 0;
}

.text-guide img[align="right"] {
	float: right;
	margin: 0 0 30px 40px;
}

.text-guide img:first-child {
	margin-top: 0;
}

.text-guide img:last-child {
	margin-bottom: 0;
}

.text-guide::after {
	content: '';
	display: table;
	clear: both;
}

ul.v-style-list>li::before {
	content: '';
	position: absolute;
	top: 0.05em;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #87b726;
	border: none;
}

ul.v-style-list>li::after {
	content: '';
	position: absolute;
	top: calc(0.05em + 5px);
	left: 4px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 12px;
	height: 7px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

ul.f-style-list>li {
	padding-left: 40px;
}

ul.f-style-list>li::before {
	content: '';
	position: absolute;
	top: -0.05em;
	left: 0;
	width: 25px;
	height: 25px;
	border: none;
	background: url(/local/images/icons/list-icon-flower.png) no-repeat 0 0 / 100% auto;
}

ul.f-style-list--lg,
ol.f-style-list--lg {
	margin-bottom: 0;
}

ul.f-style-list--lg>li,
ol.f-style-list--lg>li {
	padding-left: 80px;
	min-height: 80px;
	padding-bottom: 30px;
}

ul.f-style-list--lg>li::before,
ol.f-style-list--lg>li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	border: none;
	background: url(/local/images/icons/list-icon-flower-lg.png) no-repeat 0 0 / 100% auto;
}

ol.f-style-list--lg {
	counter-reset: ol;
}

ol.f-style-list--lg>li {
	counter-increment: ol;
}

ol.f-style-list--lg>li::after {
	content: counter(ol);
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	padding-top: 25px;
	font-size: 36px;
	font-weight: 600;
	font-style: normal;
	line-height: 0px;
	color: #fff;
	text-align: center;
}


ul.icon-style-list>li {
	padding-left: 50px;
	min-height: 30px;
	margin-bottom: 12px;
}

ul.icon-style-list>li::before {
	display: none;
}

ul.icon-style-list>li img:first-child {
	position: absolute;
	max-width: 30px;
	max-height: 30px;
	top: 0;
	left: 0;
}


ol.f-style-list--custom.f-style-list--custom>li {
	padding-left: 70px;
	min-height: 50px;
	padding-bottom: 25px;
}


h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
h4:first-child,
.h4:first-child,
h5:first-child,
.h5:first-child,
p:first-child {
	margin-top: 0;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
p:last-child {
	margin-bottom: 0;
}



/* --- valm-txt --- */
.valm-txt,
.valm-txt::before,
.valm-txt__txt {
	display: inline-block;
	vertical-align: middle;
}

.valm-txt::before {
	content: '';
	min-height: inherit;
}

.valm-txt--50 {
	min-height: 50px;
}



/* --- accordions --- */
.text-guide dl {
	padding: 15px 0;
	margin: 25px 0;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
}

.text-guide dl:first-child {
	margin-top: 0;
}

.text-guide dl:last-child {
	margin-bottom: 0;
}

.text-guide dl+dl {
	margin-top: -26px;
}

.text-guide dt {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	padding: 0 0 0 40px;
	position: relative;
	transition: .2s;
	cursor: pointer;
	color: #2c84b7;
}

.text-guide dt::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	border: 10px solid;
	border-radius: 50%;
}

.text-guide dt::after {
	content: '';
	position: absolute;
	top: 11px;
	left: 10px;
	width: 12px;
	height: 12px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transition: .2s;
	-ms-transform: translate(-6px, -7px) rotate(-45deg) scale(.66);
	-webkit-transform: translate(-6px, -7px) rotate(-45deg) scale(.66);
	transform: translate(-6px, -7px) rotate(-45deg) scale(.66);
}

.text-guide dl.open dt::after {
	-ms-transform: translate(-6px, -4px) rotate(135deg) scale(.66);
	-webkit-transform: translate(-6px, -4px) rotate(135deg) scale(.66);
	transform: translate(-6px, -4px) rotate(135deg) scale(.66);
}

.text-guide dl:not(.open) dd {
	display: none;
}

.text-guide dd {
	padding: 15px 0 20px;
}

.no-touch .text-guide dl.open dt,
.text-guide dl.open dt {
	color: #303030;
}

.text-guide dl.open dt::before {
	border-color: #ef6b01;
}

.no-touch .text-guide dl dt:hover {
	color: #ef6b01;
}



/* --- grid --- */
.row::after {
	content: '';
	display: table;
	clear: both;
}

/*[class*="col-"]{-ms-flex: 1; -webkit-flex: 1; flex: 1;}*/

.row-5 {
	margin-left: -5px;
	margin-right: -5px;
}

.row-5 .col {
	padding-left: 5px;
	padding-right: 5px;
}

.row-10 {
	margin-left: -10px;
	margin-right: -10px;
}

.row-10 .col {
	padding-left: 10px;
	padding-right: 10px;
}

.row-15 {
	margin-left: -15px;
	margin-right: -15px;
}

.row-15 .col {
	padding-left: 15px;
	padding-right: 15px;
}

.row-20 {
	margin-left: -20px;
	margin-right: -20px;
}

.row-20 .col {
	padding-left: 20px;
	padding-right: 20px;
}

.row-25 {
	margin-left: -25px;
	margin-right: -25px;
}

.row-25 .col {
	padding-left: 25px;
	padding-right: 25px;
}

.row-30 {
	margin-left: -30px;
	margin-right: -30px;
}

.row-30 .col {
	padding-left: 30px;
	padding-right: 30px;
}

.row-35 {
	margin-left: -35px;
	margin-right: -35px;
}

.row-35 .col {
	padding-left: 35px;
	padding-right: 35px;
}

.row-40 {
	margin-left: -40px;
	margin-right: -40px;
}

.row-40 .col {
	padding-left: 40px;
	padding-right: 40px;
}

.grid {
	font-size: 0;
	margin: -10px;
	display: -webkit-inline-flex;
	display: -ms-flexbox;
	display: -ms-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	vertical-align: top;
}

.grid::after {
	content: '';
	-ms-flex-grow: 1000;
	-webkit-flex-grow: 1000;
	flex-grow: 1000;
}

.grid__item {
	display: inline-block;
	display: -webkit-inline-flex;
	display: -ms-flexbox;
	display: -ms-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	vertical-align: top;
	padding: 10px;
	font-size: 15px;
}

.grid__item--top {
	align-self: flex-start;
}

.col-lg-1 {
	width: 8.333%;
}

.col-lg-2 {
	width: 16.666%;
}

.col-lg-3 {
	width: 25%;
}

.col-lg-4 {
	width: 33.33%;
}

.col-lg-5 {
	width: 41.666%;
}

.col-lg-6 {
	width: 50%;
}

.col-lg-7 {
	width: 58.333%;
}

.col-lg-8 {
	width: 66.666%;
}

.col-lg-9 {
	width: 75%;
}

.col-lg-10 {
	width: 83.333%;
}

.col-lg-11 {
	width: 91.666%;
}

.col-lg-12 {
	width: 100%;
}

.col-lg-x2 {
	-ms-flex: 2;
	-webkit-flex: 2;
	flex: 2;
}

.col-lg-x3 {
	-ms-flex: 3;
	-webkit-flex: 3;
	flex: 3;
}

.col-lg-x4 {
	-ms-flex: 4;
	-webkit-flex: 4;
	flex: 4;
}

.col-lg-x5 {
	-ms-flex: 5;
	-webkit-flex: 5;
	flex: 5;
}

.col-lg-x6 {
	-ms-flex: 6;
	-webkit-flex: 6;
	flex: 6;
}

.col-lg-x7 {
	-ms-flex: 7;
	-webkit-flex: 7;
	flex: 7;
}

.col-lg-x8 {
	-ms-flex: 8;
	-webkit-flex: 8;
	flex: 8;
}

.col-lg-x9 {
	-ms-flex: 9;
	-webkit-flex: 9;
	flex: 9;
}

.col-lg-x10 {
	-ms-flex: 10;
	-webkit-flex: 10;
	flex: 10;
}

.col-lg-x11 {
	-ms-flex: 11;
	-webkit-flex: 11;
	flex: 11;
}

.col-lg-x12 {
	-ms-flex: 12;
	-webkit-flex: 12;
	flex: 12;
}



/* --- buttons --- */
button {
	border: none;
	background: transparent;
	color: #202020;
	outline: none;
	font-family: 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
}

.btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	border-radius: 20px;
	height: 40px;
	padding: 10px 30px;
	outline: none;
	background: #ef6b01;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: .2s;
	cursor: pointer;
	position: relative;
}

.btn:disabled {
	opacity: .5;
}

.btn__txt,
.btn__icon,
.btn__chevron {
	position: relative;
	z-index: 2;
}

.btn__icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
	margin-right: 4px;
}

.btn__chevron {
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid;
	border-left: 2px solid;
	transition: .2s;
	margin: -3px 2px 0 5px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.btn.open .btn__chevron {
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	margin-top: 3px;
}

.btn__txt--success {
	display: none;
	color: #529025;
}

.btn__txt--success-w-i {
	padding-left: 20px;
}

.btn__txt--success-w-i::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin: -6px 0 0;
	border-left: 3px solid #529025;
	border-bottom: 3px solid #529025;
	width: 12px;
	height: 7px;
	-ms-transform: rotate(-45deg) scale(.85);
	-webkit-transform: rotate(-45deg) scale(.85);
	transform: rotate(-45deg) scale(.85);
}

.form-success .btn__txt--default {
	display: none;
}

.form-success .btn__txt--success {
	display: inline-block;
	vertical-align: top;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	background: linear-gradient(to bottom, #ff5000, #e63c2f);
	transition: .2s;
}

.no-touch .btn:hover {
	color: #fff;
}

.no-touch .btn:hover::before {
	opacity: 0;
}

.no-touch .btn:active,
.btn:active {
	color: #fff;
	box-shadow: none;
	transition: .1s;
}

.no-touch .btn:active::before,
.btn:active::before {
	opacity: 0;
	transition: .1s;
}

.touch.webkit .btn {
	padding-top: 11px;
	padding-bottom: 9px
}


.btn--white,
.bx_btn_white {
	background: rgba(255, 255, 255, .8);
	color: #ef6b01;
	box-shadow: none;
}

.btn--white::before,
.bx_btn_white::before {
	display: none;
}

.no-touch .btn--white:hover,
.no-touch .bx_btn_white:hover {
	color: #ef6b01;
	background: rgba(255, 255, 255, 1);
}

.no-touch .btn--white:active,
.no-touch .bx_btn_white:active,
.btn--white:active,
.bx_btn_white:active {
	color: #ef6b01;
	background: rgba(255, 255, 255, .8);
}

.no-touch .btn--white-bg:hover {
	background-color: rgba(255, 255, 255, .8);
}

.btn--white-bg,
.bx_btn_white_bg {
	background-color: #fff;
}


.btn--light {
	background: #FEF1E6;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #EF6B01;
	padding: 13px 24px 11px;
	box-shadow: none;
	border-bottom: none;
}

.btn--light::before {
	left: 0;
	top: 0;
	transform: scale(0) translate(-50%, -50%);
	transform-origin: 0 0;
	opacity: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	transition-duration: .5s;
}

.no-touch .btn--light:hover::before {
	opacity: 1;
	transform: scale(1) translate(-50%, -50%);
	transition-duration: 1.2s;
}


.btn--orange,
.bx_btn_orange {
	background: rgba(255, 255, 255, 0);
	color: #ef6b01;
	box-shadow: 0px 0px 0px 1px #ef6b01 inset;
}

.btn--orange::before,
.bx_btn_orange::before {
	display: none;
}

.no-touch .btn--orange:hover,
.no-touch .bx_btn_orange:hover {
	color: #ef6b01;
	background: rgba(255, 255, 255, 0);
	box-shadow: 0px 0px 0px 1px rgba(239, 107, 1, .6) inset;
}

.no-touch .btn--orange:active,
.no-touch .bx_btn_orange:active,
.btn--orange:active,
.bx_btn_orange:active {
	color: #ef6b01;
	background: #ef6b01;
	color: #fff;
}



.btn--black,
.bx_btn_black {
	background: rgba(27, 27, 27, .5);
	color: #ef6b01;
	box-shadow: none;
}

.btn--black::before,
.bx_btn_black::before {
	display: none;
}

.no-touch .btn--black:hover,
.no-touch .bx_btn_black:hover {
	color: #ef6b01;
	background: rgba(27, 27, 27, .8);
}

.no-touch .btn--black:active,
.no-touch .bx_btn_black:active,
.btn--black:active,
.bx_btn_black:active {
	color: #ef6b01;
	background: rgba(27, 27, 27, 1);
}



.btn--lo,
.bx_btn_lo {
	background: rgba(239, 107, 1, .1);
	color: #ef6b01;
	box-shadow: none;
}

.btn--lo::before,
.bx_btn_lo::before {
	display: none;
}

.no-touch .btn--lo:hover,
.no-touch .bx_btn_lo:hover {
	color: #ef6b01;
	background: rgba(239, 107, 1, .2);
}

.no-touch .btn--lo:active,
.no-touch .bx_btn_lo:active,
.btn--lo:active,
.bx_btn_lo:active {
	color: #ef6b01;
	background: rgba(239, 107, 1, .3);
}


.btn--block {
	display: block;
	width: 100%;
}

.btn--sm {
	height: 30px;
	padding: 5px 25px;
	border-radius: 15px;
	font-size: 13px;
}

.touch.webkit .btn--sm {
	padding: 6px 20px 4px;
}

.btn--lg {
	font-size: 18px;
	line-height: 125.19%;
	font-weight: 400;
	height: 58px;
	padding: 16px 25px;
	border-radius: 92px;
}

.btn--arrow.btn--sm {
	padding-left: 20px;
	padding-right: 20px;
}

.btn--arrow {
	display: inline-flex;
	align-items: center;
}

.btn--arrow::after {
	border-left: 2px solid #3185B5;
	border-top: 2px solid #3185B5;
	transform: rotate(-45deg);
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 12px;
	order: -5;
}

.btn--clear {
	color: #2C84B7;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.btn.btn--clear::before {
	background: transparent;
}

.btn.btn--clear:active,
.no-touch .btn.btn--clear:hover {
	color: #EF6B01;
}



/* --- btn rows --- */
.btn-row {
	display: block;
}

.btn-row__item {
	display: inline-block;
	vertical-align: top;
}

.btn-row--10 {
	margin: 0 -10px -10px 0;
	font-size: 0;
}

.btn-row--10 .btn,
.btn-row--10 .btn-row__item {
	margin: 0 10px 10px 0;
}

.btn-row--15 {
	margin: 0 -15px -15px 0;
	font-size: 0;
}

.btn-row--15 .btn,
.btn-row--15 .btn-row__item {
	margin: 0 15px 15px 0;
}

.btn-row--20 {
	margin: 0 -20px -20px 0;
	font-size: 0;
}

.btn-row--20 .btn,
.btn-row--20 .btn-row__item {
	margin: 0 20px 20px 0;
}



/* --- offset btn row --- */
.offset-btn-row {
	margin: 60px 0;
}

.offset-btn-row--accordion {
	margin: 30px 0 15px;
}

.offset-btn-row--sm {
	margin: 30px 0;
}



/* --- input --- */
::-webkit-input-placeholder {
	color: #b9b9b9;
	font: 400 15px/24px 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
	text-overflow: ellipsis;
	opacity: 1;
	transition: color .2s;
}

::-moz-placeholder {
	color: #b9b9b9;
	font: 400 15px/24px 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
	text-overflow: ellipsis;
	opacity: 1;
	transition: color .2s;
}

:-ms-input-placeholder {
	color: #b9b9b9;
	font: 400 15px/24px 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
	text-overflow: ellipsis;
	opacity: 1;
	transition: color .2s;
}

/*:hover::-webkit-input-placeholder,
:focus::-webkit-input-placeholder{color: #919191;}
:hover::-moz-placeholder,
:focus::-moz-placeholder{color: #b9b9b9;}*/
/* no transition in firefox :( */
/*:hover:-ms-input-placeholder,
:focus:-ms-input-placeholder{color: #919191;}*/

input,
textarea {
	font: 400 16px/24px 'PF Beau Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
	color: #303030;
}

.text-input {
	display: block;
	width: 100%;
	max-width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid #e2e2e2;
	border-radius: 0;
	padding: 7px 0 8px;
	font-size: 15px;
	line-height: 23px;
	height: 40px;
	color: #303030;
	box-shadow: none;
	outline: none;
	transition: .2s;
	-webkit-appearance: none;
	appearance: none;
}

textarea.text-input {
	height: 141px;
	resize: none;
	padding: 12px 20px;
	border: 2px solid #e2e2e2;
}

.no-touch .text-input:hover {
	border-color: #919191;
}

.no-touch .text-input:focus,
.text-input:focus {
	border-color: #919191;
}


.text-input--round {
	border: 2px solid #e2e2e2;
	border-radius: 20px;
	padding: 7px 20px;
	line-height: 22px;
}

.text-input--white-bg {
	background-color: #fff;
}

.touch.webkit .text-input--round {
	padding-top: 8px;
	padding-bottom: 6px;
}


.form-error .text-input {
	border-color: rgba(230, 60, 47, .3);
}

.form-error .text-input:hover {
	border-color: rgba(230, 60, 47, .6);
}

.form-error .text-input:focus {
	border-color: rgba(230, 60, 47, .6);
}

.form-error .text-input::-webkit-input-placeholder {
	color: rgba(230, 60, 47, .5);
}

.form-error .text-input:-ms-input-placeholder {
	color: rgba(230, 60, 47, .5);
}

/*.form-error .text-input:hover::-webkit-input-placeholder,
.form-error .text-input:focus::-webkit-input-placeholder{color: rgba(230,60,47,.5);}
.form-error .text-input:hover::-moz-input-placeholder,
.form-error .text-input:focus::-moz-input-placeholder{color: rgba(230,60,47,.5);}
.form-error .text-input:hover:-ms-input-placeholder,
.form-error .text-input:focus:-ms-input-placeholder{color: rgba(230,60,47,.5);}
*/



/* --- complex input --- */
.complex-input {
	position: relative;
}

.complex-input .text-input {
	padding-right: 30px;
}

.complex-input__btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 40px;
	color: #919191;
	padding: 0;
	text-align: right;
	cursor: pointer;
	transition: .2s;
}

.no-touch .complex-input__btn:hover {
	color: #ef6b01;
}



/* --- blocks --- */
.container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
}

.out-of-container {
	width: 100vw;
	margin-left: calc(590px - 50vw);
	margin-right: calc(590px - 50vw);
}



/* --- overlay --- */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	z-index: 90;
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	transition: 0s ease .3s, opacity .3s;
	z-index: 100;
}

.overlay.open,
.mobile-menu-open .overlay {
	transition: opacity .3s;
	height: auto;
	bottom: 0;
	opacity: 1;
}



/* --- page header --- */
.page-header-ios {
	display: none;
	position: absolute;
	bottom: 100%;
	margin-bottom: -1px;
	left: 0;
	right: 0;
	padding: 50vh 10px 10px;
	background-color: #fff;
	text-align: center;
	z-index: 200;
	transform: translate3d(0, 0, 0);
}

.page-header-ios img {
	max-width: 100px;
	transform: rotate(90deg);
	opacity: .2;
}

.ios .page-header-ios {
	display: block;
}

.page-header {
	background-color: #fff;
	z-index: 100;
	position: relative;
	border-bottom: 1px solid #e2e2e2;
}

.page-header__row {
	display: table;
	width: 100%;
}

.page-header__cell-logo,
.page-header__cell-menu,
.page-header__cell-menu-btn,
.page-header__cell-profile,
.page-header__cell-search {
	display: table-cell;
	vertical-align: middle;
	height: 77px;
}

.page-header__cell-logo {
	width: 1px;
	padding-right: 40px;
}

.page-header__cell-menu {
	width: 99%;
}

.page-header__cell-menu-btn,
.page-header__cell-contact {
	display: none;
}

.page-header__cell-search {
	padding-left: 30px;
}

.page-header__logo {
	display: block;
	height: 77px;
	transition: .2s;
	font-size: 0;
	position: relative;
	overflow: hidden;
}

.page-header__logo::before {
	content: '';
	display: inline-block;
	height: 67px;
	vertical-align: middle;
}

.page-header__logo::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .4);
	opacity: 0;
	transition: .5s ease-out, opacity .2s ease-out;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.page-header__logo .svg-icon {
	display: inline-block;
	vertical-align: middle;
}

.no-touch a.page-header__logo:hover::after {
	opacity: 1;
	transition: 1.2s ease-out, opacity .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}

.page-header__menu-row {
	display: table;
	width: 100%;
}

.page-header__menu-main,
.page-header__menu-aside {
	display: table-cell;
	vertical-align: middle;
}

.page-header__menu-main {
	width: 99%;
}

.page-header__menu-aside {
	width: 1px;
	white-space: nowrap;
}

.page-header__search-btn {
	display: inline-block;
	vertical-align: bottom;
	height: 78px;
	margin: 0 0 -1px;
	padding: 27px 0;
	overflow: hidden;
	font-size: 17px;
	line-height: 24px;
	color: #303030;
	position: relative;
	transition: .2s;
	cursor: pointer;
}

.page-header__profile {
	display: flex;
}


/* --- page main --- */
.page-main {
	-ms-flex-grow: 100;
	-webkit-flex-grow: 100;
	flex-grow: 100;
}



/* --- main menu --- */
.main-menu {
	font-size: 0;
	margin: 0 -20px;
}

.main-menu__item {
	display: inline-block;
	vertical-align: bottom;
	margin: 0 12px;
}

.main-menu__btn.main-menu__btn-pointer {
	cursor: pointer;
}

.main-menu__btn,
.page-header__search-btn {
	display: inline-block;
	vertical-align: bottom;
	height: 78px;
	margin: 0 0 -1px;
	padding: 27px 0;
	overflow: hidden;
	font-size: 17px;
	line-height: 24px;
	color: #303030;
	position: relative;
	transition: .2s;
	cursor: default;
}

.main-menu__btn::after,
.page-header__search-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #ef6b01;
	opacity: 0;
	transition: inherit;
	-ms-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translate3d(0, 100%, 0);
}

.page-header__search-btn {
	color: #919191;
}

.main-menu__btn.open,
.no-touch .main-menu__btn:hover,
.page-header__search-btn.open,
.no-touch .page-header__search-btn:hover {
	color: #ef6b01;
}

.main-menu__btn.open::after,
.page-header__search-btn.open::after {
	background-color: #ef6b01;
	opacity: 1;
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translate3d(0, 0%, 0);
}



/* --- main submenu --- */
.main-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 1px;
	padding: 70px 0;
	background: rgba(255, 255, 255, .97);
	box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .3);
	cursor: default;
	transition: .4s;
	-ms-transform: scaleY(1);
	-webkit-transform: scaleY(1);
	transform: translate3d(0, 0, 0) scaleY(1);
	-ms-transform-origin: center top;
	-webkit-transform-origin: center top;
	transform-origin: center top;
}

.main-submenu:not(.open) {
	opacity: 0;
	-ms-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transform: translate3d(0, 0, 0) scaleY(0);
	pointer-events: none;
	box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0);
}

.main-menu__item.in-queue .main-submenu {
	transition-delay: .4s;
}

.main-submenu__close {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: 545px;
	padding: 0;
	width: 60px;
	height: 70px;
	color: #303030;
	background: transparent;
	cursor: pointer;
	transition: .2s;
}

.main-submenu__close::before,
.main-submenu__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	border-top: 3px solid;
	margin: -1px 0 0 -15px;
}

.main-submenu__close::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.main-submenu__close::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.no-touch .main-submenu__close:hover {
	color: #ef6b01;
}

.main-submenu__row {
	margin: 0 -20px;
	font-size: 0;
}

.main-submenu__aside,
.main-submenu__main {
	display: inline-block;
	vertical-align: top;
	padding: 0 20px;
}

.main-submenu__main {
	margin-left: 8.33%;
	width: 41.66%;
}

.main-submenu__aside {
	width: 50%;
}

.main-submenu__l1 {
	margin-bottom: -30px;
}

.main-submenu__l1-item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	padding-right: 30px;
	font-size: 15px;
	margin-bottom: 30px;
}

.main-submenu__l1-title {
	margin: 15px 0;
}

.main-submenu__l2-item {
	margin: 12px 0;
}

.main-submenu__l2-link {
	color: #565555;
	font-size: 15px;
	display: inline-block;
	vertical-align: top;
}

.main-submenu__l3-item {
	margin: 10px 0;
	line-height: 18px;
}

.main-submenu__l3-link {
	color: #919191;
	font-size: 13px;
	line-height: 18px;
	display: inline-block;
	vertical-align: top;
	padding-left: 20px;
	position: relative;
}

.main-submenu__l3-link::before {
	content: '';
	position: absolute;
	top: .6em;
	left: 0;
	width: 12px;
	border-top: 1px solid;
}

.main-submenu__l3-item__status {
	vertical-align: top;
	margin-top: -3px;
}

.main-submenu--1-item .main-submenu__main {
	margin-left: 200px;
	width: calc(50% - 200px);
}

.no-touch .main-submenu__l2-link:hover {
	transform: translateX(6px);
}

.no-touch .main-submenu__l3-link:hover {
	transform: translateX(6px);
}

body:not(.page-loaded) .main-submenu {
	visibility: hidden;
}



/* --- page-header-am --- */
.page-header-am {
	white-space: nowrap;
	font-size: 0;
	padding: 21px 0;
}

.page-header-am__item,
.page-header-am__link {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.page-header-am__link {
	font-size: 13px;
	line-height: 18px;
	padding: 10px 15px 7px;
	border-radius: 18px;
	color: #919191;
	overflow: hidden;
	transition: .2s;
	transform: translate3d(0, 0, 0);
}

.page-header-am__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	background: #ef6b01;
	opacity: 0;
	transition: .5s ease-out;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.page-header-am__link .svg-icon {
	transition: none;
	color: inherit;
	margin-right: 4px;
	margin-top: -1px;
}

.page-header-am__link.active {
	cursor: default;
}

.page-header-am__link.active,
.no-touch .page-header-am__link:hover,
.touch .page-header-am__link:active {
	color: #ef6b01;
}

.page-header-am__link.active::before,
.no-touch .page-header-am__link:hover::before,
.touch .page-header-am__link:active::before {
	opacity: .1;
	transition: 1.2s ease-out, opacity .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}

.page-header-am__item--lang {
	margin-left: 10px;
}

.page-header-am__link--round {
	padding-left: 0;
	padding-right: 0;
	width: 35px;
	text-align: center;
}

.page-header-am__lang-item {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 102;
	padding-bottom: 21px;
	margin-bottom: -21px;
}

.page-header-am__lang-item+.page-header-am__lang-item {
	margin-left: 5px;
}

.no-touch .page-header-am__link--round:hover::before,
.touch .page-header-am__link--round:active::before {
	transition: .6s ease-out, opacity .2s;
}



/* --- card-banner --- */
.card-banner {
	display: block;
	border-radius: 8px;
	color: #303030;
	padding: 25px 40px;
	min-height: 124px;
	position: relative;
	font-size: 15px;
	overflow: hidden;
	background-color: #fff;
	background-size: cover;
	background-position: 75% 50%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .1);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

.card-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	z-index: 2;
	background-color: rgba(255, 255, 255, .1);
	opacity: 0;
	transition: .6s ease-out, opacity .2s ease-out;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.card-banner__content {
	position: relative;
	width: 64%;
	z-index: 3;
}

.card-banner__abonnement {
	position: relative;
	width: 80%;
	z-index: 3;
}

.card-banner__title {
	margin: 7px 0;
	word-break: break-word;
}

.card-banner__em {
	display: block;
	font-style: italic;
	font-size: 17px;
	line-height: 25px;
	color: #919191;
}

.card-banner__small {
	display: block;
	font-size: 13px;
	line-height: 18px;
}

.card-banner__title+.card-banner__small {
	margin-top: -4px;
}

.card-banner__table {
	display: inline-table;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	text-align: left;
	margin: auto;
}

.card-banner__table-icon {
	display: table-cell;
	vertical-align: top;
	width: 1px;
	padding-right: 20px;
}

.card-banner__table-txt {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.card-banner__txt {
	margin: 8px 0;
}

.card-banner__lt-note {
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin: 8px 0;
	max-width: calc(100% - 35px);
}

.card-banner__labels {
	font-size: 0;
	margin: 0 -10px 15px 0;
}

.card-banner__label {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 20px 0;
	border: 1px solid #ef6b01;
	margin: 0 10px 10px 0;
	white-space: nowrap;
	color: #ef6b01;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 20px;
	border-radius: 13px;
	opacity: .7;
}

.card-banner__bottom-icon {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	opacity: .6;
	transition: .2s;
	z-index: 3;
}

.card-banner__bottom-icon-main,
.card-banner__bottom-icon-reflex {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	transition: .2s;
}

.card-banner__bottom-icon-reflex {
	opacity: 0;
}

.card-banner__top-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 0;
	z-index: 3;
}

.card-banner__top-icon::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.card-banner__top-icon img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.card-banner-abbonement__top-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 100px;
	height: 100px;
	text-align: center;
	font-size: 0;
	z-index: 3;
}

.card-banner-abbonement__top-icon img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.card-banner--dark {
	background-color: #565555;
	color: #fff;
}

.card-banner--dark .card-banner__em {
	color: #fff;
}

.card-banner--dark .card-banner__label {
	border-color: #fff;
	color: #fff;
}

.card-banner--darken::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	background: rgba(48, 48, 48, .7);
	z-index: 1;
}

.card-banner--lg {
	padding: 30px 40px;
	min-height: 340px;
}

.card-banner--lg .card-banner__content {
	min-height: 280px;
}

.card-banner--lg .card-banner__txt,
.card-banner--lg .card-banner__em {
	margin: 18px 0;
}

.card-banner--lg .card-banner__action:last-child {
	height: 40px;
}

.card-banner--lg .card-banner__action:last-child .btn-row {
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.card-banner--alt {
	text-align: center;
	font-size: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.card-banner--lt {
	padding: 20px;
}

.card-banner--lt::before {
	background-color: #ef6b01;
	transition: .6s ease-out, opacity .2s;
}

.card-banner--lt .card-banner__content {
	width: auto;
}

.card-banner--lt .card-banner__title {
	color: #EF6B01;
}

.card-banner--lt .card-banner__title,
.card-banner--lt .card-banner__lt-note {
	transition: .2s;
}

.card-banner--service {
	min-height: 250px;
	box-shadow: none;
	background-color: #f0f0f0;
}

.card-banner--abonnement {
	min-height: 100px !important;
	box-shadow: none;
	background-color: #f0f0f0;
}

.card-banner--service .card-banner__content {
	min-height: 190px;
	width: auto;
	margin-right: 100px;
}

.card-banner--service-b {
	cursor: default;
}

.card-banner--service-b .card-banner__btns {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
	padding-bottom: inherit;
	padding-left: inherit;
}

.card-banner--service-b .card-banner__content {
	padding-bottom: 45px;
}

.no-touch .card-banner--service-b .card-banner__btns {
	opacity: 0;
	transition: .3s;
	transform: translate3d(0, 20px, 0);
}

.no-touch .card-banner--service-b:hover .card-banner__btns {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.grid .card-banner--alt::after {
	height: 100%;
}

.no-touch .card-banner:hover,
.touch .card-banner:active {
	color: #303030;
}

.no-touch .card-banner:hover::before,
.touch .card-banner:active::before {
	opacity: 1;
	transition: 1.8s ease-out, opacity .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}

.no-touch .card-banner--dark:hover,
.touch .card-banner--dark:active {
	color: #fff;
}

.no-touch .card-banner:hover .card-banner__bottom-icon,
.touch .card-banner:active .card-banner__bottom-icon {
	opacity: 1;
}

.no-touch .card-banner:hover .card-banner__bottom-icon-main,
.touch .card-banner:hover .card-banner__bottom-icon-main {
	opacity: 0;
	transition: .2s ease .35s;
}

.no-touch .card-banner:hover .card-banner__bottom-icon-reflex,
.touch .card-banner:active .card-banner__bottom-icon-reflex {
	opacity: 1;
	transition: .2s ease .35s;
}

.no-touch .card-banner--lt:hover::before,
.touch .card-banner--lt:active::before {
	transition: .8s ease-out, opacity .2s;
}

.no-touch .card-banner--lt:hover .card-banner__title,
.no-touch .card-banner--lt:hover .card-banner__lt-note,
.touch .card-banner--lt:active .card-banner__title,
.touch .card-banner--lt:active .card-banner__lt-note {
	color: #fff;
	transition: .2s ease .05s;
}


@media (min-width: 360px) {

	/* x2 lt banner */
	.no-touch .col-lg-4 .card-banner:hover .card-banner__bottom-icon-main,
	.touch .col-lg-4 .card-banner:hover .card-banner__bottom-icon-main {
		transition: .2s ease .5s;
	}

	.no-touch .col-lg-4 .card-banner:hover .card-banner__bottom-icon-reflex,
	.touch .col-lg-4 .card-banner:active .card-banner__bottom-icon-reflex {
		transition: .2s ease .5s;
	}

	.no-touch .col-lg-4 .card-banner--lt:hover::before,
	.touch .col-lg-4 .card-banner--lt:active::before {
		transition: 1.2s ease-out, opacity .2s;
	}

	.no-touch .col-lg-4 .card-banner--lt:hover .card-banner__title,
	.no-touch .col-lg-4 .card-banner--lt:hover .card-banner__lt-note,
	.touch .col-lg-4 .card-banner--lt:active .card-banner__title,
	.touch .col-lg-4 .card-banner--lt:active .card-banner__lt-note {
		transition: .2s ease .1s;
	}
}



/* --- card banners --- */
.card-banners {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card-banners__item {
	margin-bottom: 20px;
}

.card-banners__item:last-child {
	margin-bottom: 0;
}



/* --- labels --- */
.labels {
	font-size: 0;
	margin: 0 -5px -5px 0;
}

.labels .label {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px 5px 0;
}



/* --- label --- */
.label {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 20px 1px;
	border: 1px solid #ef6b01;
	margin: 0 10px 10px 0;
	color: #ef6b01;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 19px;
	border-radius: 13px;
	opacity: .7;
}

.label--orange-fill,
.bx_label_orange_fill {
	background-color: #ef6b01;
	color: #fff;
}

.label--white,
.bx_label_white {
	border-color: #fff;
	color: #fff;
}


.main-slider .card-banners__item {
	margin-bottom: 0;
}

.main-slider {
	border-radius: 8px;
	overflow: hidden;
}

/* ---- main slide --- */
.main-slide {
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	padding-left: 120px;
	padding-right: 120px;
}

.main-slide .container {
	padding: 0;
}

.main-slide__link {
	position: absolute;
	top: 0;
	left: 140px;
	right: 140px;
	bottom: 0;
	z-index: 1;
}

.main-slide__container {
	padding: 40px 0;
	font-size: 0;
	width: 58%;
	max-width: 450px;
	height: 390px;
	white-space: nowrap;
}

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

.main-slide__content {
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	white-space: normal;
}

.main-slide__title {
	margin: 15px 0 23px;
}

.main-slide__txt {
	margin: 23px 0;
}

.main-slide__txt {
	display: block;
}

.main-slide__action {
	margin-top: 29px;
}

.main-slide__action .btn {
	position: relative;
	z-index: 2;
}

.main-slide__labels {
	margin-bottom: 7px;
}

.main-slide--left {
	background-position: 20% 50%;
}

.main-slide--right {
	background-position: 80% 50%;
}

.main-slide--right .main-slide__container {
	margin-left: 42%;
}

.main-slide--white,
.bx_slide_white {
	color: #fff;
}

.bx_slide_black {
	color: #303030;
}



/* --- page section --- */
.page-section {
	margin: 40px 0;
}

.page-section--offset {
	margin: 80px 0;
}

.page-section__header {
	margin-bottom: 20px;
}

.page-section__title {
	margin: 0px;
}

.page-section__footer {
	margin-top: 30px;
}

.page-section__footer-grid {
	font-size: 0;
	line-height: 18px;
	margin: 0 -10px -5px;
}

.page-section__footer-grid-item {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 5px;
	font-size: 13px;
}

/* --- block --- */
.block {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	-ms-flex-grow: 10;
	-webkit-flex-grow: 10;
	flex-grow: 10;
}

.block--lg {
	padding: 30px;
}

.block--xl {
	padding: 30px 40px;
}

.block__title {
	margin: 30px 0 25px;
}

.block__title:first-child {
	margin-top: -5px;
}

.block__notes {
	font-size: 0;
	margin: 25px -12px -3px;
}

.block__note {
	font-size: 13px;
	line-height: 18px;
	display: inline-block;
	vertical-align: top;
	margin: 5px 12px 0;
}

.block-divider {
	border: none;
	border-top: 1px solid #e2e2e2;
	margin: 0 -20px;
}

.block+.block {
	margin-top: 50px;
}

.block--lg .block-divider {
	margin-left: -30px;
	margin-right: -30px;
}

.block--xl .block-divider {
	margin-left: -40px;
	margin-right: -40px;
}

.block--clear-padding {
	padding: 0;
}


/* --- mobile link block --- */
.mobile-link-block {
	display: block;
}

.mobile-link-block.block {
	padding: 10px 20px;
	color: #303030;
}



/* --- price block --- */
.price-block {
	cursor: default;
	margin-bottom: 20px;
}

.price-block__list {}

.price-block__li:not(:last-child) {
	margin-bottom: 14px;
}

.price-block__li .price-item__icon {
	position: absolute;
	left: 0;
	right: 0;
	top: -42px;
}

.price-block__notes {
	margin-top: 14px;
	line-height: 16px;
}

.price-block__note {
	font-size: 13px;
	line-height: 16px;
	color: #2B84B7;
}

/* --- price item --- */
.price-item {
	display: flex;
	width: 100%;
	position: relative;
	justify-content: space-between;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: #303030;
}

.price-item::after {
	border-bottom: 1px dashed #e2e2e2;
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	z-index: 1;
}

.price-item__label {
	background-color: #fff;
	position: relative;
	z-index: 2;
	padding-right: 5px;
	margin-right: 30px;
}

.price-item__price {
	padding-left: 5px;
	position: relative;
	z-index: 2;
	background-color: #fff;
}

.price-item__label .tooltip-inline {
	margin-left: 3px;
	margin-top: -3px;
}

.price-item__icon {
	text-align: center;
	margin-bottom: 10px;
}

.price-item__icon-circle,
.fuel-icon {
	display: inline-block;
	vertical-align: middle;
	background-color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	padding: 4px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .1);
	font-size: 0;
	line-height: 0;
}

.price-item__icon-circle::after,
.fuel-icon::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.price-item__icon-circle img,
.fuel-icon img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}



/* --- price --- */
.price {
	font-size: 0;
}

.price strong {
	font-size: 30px;
	line-height: 30px;
	font-weight: 400;
	font-style: normal;
}

.price sup {
	font-size: 17px;
	line-height: 17px;
	font-weight: 400;
	font-style: normal;
	vertical-align: top;
}

.price small {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	font-style: normal;
	vertical-align: baseline;
	padding-left: 3px;
}

.price__separator {
	margin-left: 4px;
	margin-right: 4px;
}



/* --- news block --- */
.news-block {
	position: relative;
}

.news-block .news-list {
	position: absolute;
	top: 70px;
	bottom: 60px;
	overflow: hidden;
	left: 30px;
	right: 30px;
}

.news-block .news-list::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)),
		linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.news-block .block__notes {
	position: absolute;
	bottom: 30px;
}



/* --- news list --- */
.news-list__item {
	margin-bottom: 20px;
}

.news-list__item:last-child {
	margin-bottom: 0px;
}



/* --- news li --- */
.news-li {
	display: table;
	width: 100%;
	table-layout: fixed;
	color: #303030;
}

.news-li__img-cell,
.news-li__txt-cell {
	display: table-cell;
	vertical-align: top;
}

.news-li__img-cell {
	width: 135px;
	padding-right: 15px;
}

.news-li__img-cell img {
	display: inline-block;
	vertical-align: top;
	max-width: 120px;
	max-height: 100px;
	border-radius: 10px;
	transition: .2s;
}

.news-li__date {
	display: block;
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin-bottom: 5px;
}

.news-li__title {
	color: #303030;
	display: block;
	transition: .2s;
}

.news-li__title .icon {
	margin: -2px 4px 0 0;
}

.no-touch .news-li:hover .news-li__title {
	color: #ef6b01;
}

.no-touch .news-li:hover .news-li__img-cell img {
	opacity: .7;
}



/* --- social block --- */
.social-block {
	font-size: 0;
	line-height: 0;
	margin: 0 -5px -10px;
}

.social-block__item {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 10px;
}



/* --- note --- */
.note {
	font-size: 11px;
	line-height: 16px;
	color: #919191;
	margin: 25px 0;
}

.note--md {
	font-size: 15px;
	line-height: 23px;
}




/* --- round btn --- */
.round-btn {
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	box-shadow: 0 0 0 1px #F7B47F inset;
	transition: .2s;
	border-radius: 50%;
	color: #ef6b01;
	font-size: 0;
	line-height: 0;
	text-align: center;
	padding: 10px;
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.round-btn::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
}

.round-btn::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 300%;
	padding-top: 300%;
	min-height: 120px;
	border-radius: 50%;
	background: #F7B47F;
	opacity: 0;
	transition: .5s ease-out, opacity .3s, background .2s;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.round-btn .svg-icon {
	transition: none;
}

.round-btn .svg-icon,
.round-btn img {
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
}

.no-touch .round-btn:hover {
	color: #fff;
	transition: .2s ease .1s;
}

.no-touch .round-btn:hover::before {
	opacity: 1;
	transition: .6s ease-out, opacity .2s, background .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}

.no-touch .round-btn:active::before {
	background-color: #ef6b01;
}

.round-btn--gray {
	color: #565555;
	box-shadow: 0 0 0 1px #d5d5d5 inset;
}

.no-touch .round-btn--gray:hover {
	box-shadow: 0 0 0 1px #F7B47F inset;
}

.round-btn__arrow-left,
.round-btn__arrow-right {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-bottom: 3px solid #565555;
	border-left: 3px solid #565555;
	opacity: .6;
	transition: .2s;
}

.round-btn__arrow-left {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg) translate3d(0, 0, 0);
	margin-left: -4px;
}

.round-btn__arrow-right {
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg) translate3d(0, 0, 0);
	margin-left: -10px;
}

.no-touch .round-btn:hover .round-btn__arrow-left,
.no-touch .round-btn:hover .round-btn__arrow-right {
	opacity: 1;
	border-color: #fff;
}



/* --- page footer --- */
.page-footer {
	background-color: #fff;
	padding: 40px 0 0;
	cursor: default;
}



/* --- footer banners --- */
.footer-banners {
	margin-bottom: 30px;
}



/* --- footer menu --- */
.footer-menu {
	margin-bottom: 25px;
}

.footer-menu__title {
	margin: 10px 0;
}

.footer-menu__link {
	display: block;
	font-size: 13px;
	line-height: 18px;
	margin-bottom: 10px;
	color: #565555;
}

.footer-menu__link:last-child {
	margin-bottom: 0;
}

.footer-menu__social {
	margin-top: 10px;
}

.footer-menu__note {
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin: 14px 0;
}

.footer-menu__icon-links {
	margin-top: 5px;
}



/* --- page-footer-bottom --- */
.page-footer-bottom {
	border-top: 1px solid #f0f0f0;
	color: #919191;
	padding: 28px 0;
	margin-top: 28px;
	font-size: 13px;
	line-height: 18px;
}

.page-footer-bottom__row {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.page-footer-bottom__left,
.page-footer-bottom__right {
	display: table-cell;
	vertical-align: top;
}

.page-footer-bottom__left {
	text-align: left;
}

.page-footer-bottom__right {
	text-align: right;
}

.page-footer-bottom__items {
	font-size: 0;
	margin: 0 -10px -5px;
}

.page-footer-bottom__item {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 5px;
	font-size: 13px;
}



/* --- lt-icon-links --- */
.lt-icon-links__item {
	margin-bottom: 24px;
	display: block;
	line-height: 0;
}

.lt-icon-links__item:last-child {
	margin-bottom: 0;
}



/* --- lt-icon-link --- */
.lt-icon-link {
	color: #919191;
}

.lt-icon-link img {
	display: inline-block;
	vertical-align: top;
	max-height: 15px;
	max-width: 100%;
	transition: .2s;
	opacity: .6;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.no-touch .lt-icon-link:hover img {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	opacity: 1;
}



/* --- mini cafe --- */
.mini-cafe {
	background: #55565a;
	background-image: url(/local/images/mini-cafe-decor-1.png), url(/local/images/gray-bg.jpg);
	background-repeat: no-repeat, repeat;
	background-position: 55% 91%, 0 0;
	color: #fff;
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 0;
	box-shadow: 0px 0px 100px rgba(0, 0, 0, .2) inset;
}

.mini-cafe__main,
.mini-cafe__aside {
	display: table-cell;
	vertical-align: top;
}

.mini-cafe__aside {
	border-left: 1px solid #777;
	width: 390px;
	/*33.1%;*/
}

.mini-cafe__main {
	padding: 35px 40px 40px 40px;
	height: 650px;
	position: relative;
	padding-right: 40px;
}

.mini-cafe__title {
	margin: 0 0 22px;
}

.mini-cafe__visual {
	position: absolute;
	left: 0;
	top: 50%;
	height: 400px;
	width: 500px;
	margin-top: -200px;
	text-align: left;
	font-size: 0;
	line-height: 0;
	z-index: 0;
	pointer-events: none;
}

.mini-cafe__visual::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mini-cafe__visual img {
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	vertical-align: middle;
}

.mini-cafe__menu {
	position: relative;
	z-index: 2;
	width: calc(43% + 20px);
	margin: 0 -20px 30px 57%;
	min-height: 440px;
}



/* --- mini cafe menu --- */
.mc-menu__item {
	display: inline-block;
	vertical-align: top;
	min-width: 50%;
	padding-right: 20px;
	margin-right: -5px;
	margin-bottom: 18px;
}

.mc-menu__item:last-child {
	margin-bottom: 0;
}

.mc-menu__item--x1 {
	width: 50%;
}

.mc-menu__item--x2 {
	width: 100%;
}

.mc-menu__title {
	margin-bottom: 4px;
	font-size: 15px;
	line-height: 23px;
}

.mc-menu__title:last-child {
	margin-bottom: 0;
}

.mc-menu__subtitle {
	font-size: 13px;
	line-height: 18px;
}

.mc-menu__price {
	margin-top: 10px;
}



/* --- mini cafe slider --- */
.mc-slider:not(.slick-initialized) {
	max-height: 650px;
	overflow: hidden;
}

.mc-slider .slick-dots.slick-dots {
	left: 35px;
	right: 35px;
	bottom: 30px;
	text-align: left;
}



/* --- mini cafe slide --- */
.mc-slide {
	display: block;
	color: #fff;
	background-size: cover;
	background-position: center bottom;
	padding: 37px 40px 350px;
	min-height: 650px;
	position: relative;
}

.mc-slide.slick-slide {
	min-height: 650px;
}

.mc-slide__labels {
	margin: 9px -5px 20px 0;
}

.mc-slide__label {
	display: inline-block;
	vertical-align: middle;
	padding: 1px 20px 0;
	background: transparent;
	border: 1px solid #ef6b01;
	margin: 0 5px 5px 0;
	color: #ef6b01;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 23px;
	border-radius: 13px;
	opacity: .7;
}

.mc-slide__title {
	max-width: 280px;
	margin: 17px 0;
}

.mc-slide__image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 400px;
	font-size: 0;
	text-align: center;
}

.mc-slide__image img {
	display: inline-block;
	vertical-align: bottom;
	max-width: 100%;
	max-height: 100%;
}

.slick-slide .mc-slide__image img {
	display: inline-block;
}

.mc-slide__image::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: bottom;
}

.no-touch .mc-slide:hover {
	color: #fff;
}

.mc-slide__label--orange-fill {
	background: #ef6b01;
	border-color: #ef6b01;
	color: #fff;
}



/* --- main menu btn --- */
.main-menu-btn {
	display: inline-block;
	width: 50px;
	height: 60px;
	vertical-align: middle;
	padding: 0;
	margin-left: -10px;
	background-color: #fff;
	position: relative;
	cursor: pointer;
}

.main-menu-btn__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	border-top: 3px solid #303030;
	margin: -1px 0 0 -15px;
	transition: .2s;
}

.main-menu-btn__inner::before,
.main-menu-btn__inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-top: 3px solid #303030;
	transition: -webkit-transform .2s;
	transition: .2s;
}

.main-menu-btn__inner::before {
	margin-top: -14px;
}

.main-menu-btn__inner::after {
	margin-top: 8px;
}

.no-touch .main-menu-btn:hover .main-menu-btn__inner,
.no-touch .main-menu-btn:hover .main-menu-btn__inner::before,
.no-touch .main-menu-btn:hover .main-menu-btn__inner::after {
	border-color: #ef6b01;
}

.main-menu-open .main-menu-btn .main-menu-btn__inner.main-menu-btn__inner {
	border-color: rgba(255, 255, 255, 0);
}

.main-menu-open .main-menu-btn .main-menu-btn__inner.main-menu-btn__inner::before {
	-ms-transform: translateY(11px) rotate(45deg);
	-webkit-transform: translateY(11px) rotate(45deg);
	transform: translateY(11px) rotate(45deg);
}

.main-menu-open .main-menu-btn .main-menu-btn__inner.main-menu-btn__inner::after {
	-ms-transform: translateY(-11px) rotate(-45deg);
	-webkit-transform: translateY(-11px) rotate(-45deg);
	transform: translateY(-11px) rotate(-45deg);
}



/* --- complex-link --- */
.complex-link {
	display: inline-table;
	max-width: 100%;
	text-decoration: none;
	color: #303030;
	cursor: pointer;
}

.complex-link__icon {
	display: table-cell;
	vertical-align: top;
	width: 1px;
	padding-right: 15px;
	color: #ef6b01;
}

.complex-link__icon img {
	max-width: 40px;
	max-height: 40px;
	display: inline-block;
	vertical-align: middle;
}

.complex-link__main {
	display: table-cell;
	vertical-align: middle;
}

.complex-link__title {
	display: block;
	font-size: 15px;
	line-height: 23px;
	font-weight: 600;
	font-style: normal;
	color: #2c84b7;
	transition: .2s;
	margin-bottom: 2px;
}

.complex-link__note {
	display: block;
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	color: #919191;
}

.no-touch .complex-link:hover .complex-link__title {
	color: #ef6b01;
}

.complex-link--static {
	cursor: default;
}

.complex-link--static .complex-link__title,
.no-touch .complex-link--static:hover .complex-link__title {
	color: #303030;
}



/* --- page title block --- */
.page-title-block {
	display: table;
	margin: 40px 0 20px;
}

.page-title-block__title {
	padding-right: 85px;
}

.page-title-block__title,
.page-title-block__aside {
	display: table-cell;
	vertical-align: top;
}

.page-title-block__title:last-child {
	padding-right: 0;
}

.page-title-block__title.txt-short {
	white-space: nowrap;
	width: 1px;
}

.page-title-block+.page-section {
	margin-top: 0;
}

.page-title-block__title h1 {
	max-width: 1000px;
}



/* --- page-title-block-top --- */
.page-title-block-top {
	margin: 50px 0 10px;
	display: table;
	font-size: 13px;
	line-height: 18px;
}

.page-title-block-top+.page-title-block {
	margin-top: 0;
}

.page-title-block-top__back,
.page-title-block-top__item {
	display: table-cell;
	vertical-align: middle;
	padding-right: 40px;
}

.page-title-block-top__back:last-child,
.page-title-block-top__item:last-child {
	padding-right: 0px;
}

.page-title-block--flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.page-title-block--flex .page-title-block__title {
	margin-right: auto;
}



/* --- page-title-block-strong --- */
.page-title-block-strong {
	display: block;
	margin: -15px 0 47px;
}

.page-title-block-strong+.page-section {
	margin-top: 0px;
}



/* --- labels-and-note --- */
.labels-and-notes {
	display: table;
}

.labels-and-notes__labels,
.labels-and-notes__notes {
	display: table-cell;
	vertical-align: middle;
	padding-right: 20px;
}

.labels-and-notes__labels {
	width: 1px;
	white-space: nowrap;
}

.labels-and-notes__labels:last-child,
.labels-and-notes__notes:last-child {
	padding-right: 0;
}

.labels-and-notes__note {
	color: #ef6b01;
}

.labels-and-notes__note--gray {
	color: #919191;
}



/* --- complex links row --- */
.complex-links-row {
	margin: -10px -30px;
}

.complex-links-row .complex-link {
	display: inline-table;
	vertical-align: top;
	margin: 10px 30px;
}

.complex-links-row .black {
	color: #000000;
}



/* --- long back link --- */
.long-back-link {
	position: relative;
	padding-left: 25px;
	display: inline-block;
	vertical-align: middle;
}

.long-back-link::before {
	content: '';
	position: absolute;
	top: .4em;
	left: 0;
	width: .4em;
	height: .4em;
	border-left: 1px solid;
	border-bottom: 1px solid;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* --- round icon --- */
.round-icon {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ef6b01;
	color: #fff;
	font-size: 0;
	text-align: center;
}

.round-icon::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.round-icon img,
.round-icon .svg-icon {
	display: inline-block;
	vertical-align: middle;
	max-width: 25px;
	max-height: 25px;
}

.round-icon--green {
	background-color: #afca0b;
}



/* --- long section --- */
.long-section {
	padding: 40px;
}



/* --- top-floor --- */
.top-floor {
	background-size: cover;
	background-position: 75% center;
	position: relative;
	padding: 60px 40px;
}

.top-floor:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.top-floor:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.top-floor--dark {
	background-color: #303030;
	color: #fff;
}

.top-floor--img.top-floor {
	padding: 0;
	overflow: hidden;
}

.top-floor--img img {
	width: 100%;
	height: auto;
	display: block;
}

.block .top-floor {
	margin-left: -20px;
	margin-right: -20px;
}

.block .top-floor:first-child {
	margin-top: -20px;
}

.block .top-floor:last-child {
	margin-bottom: -20px;
}

.block--xl .top-floor {
	margin-left: -40px;
	margin-right: -40px;
}

.block--xl .top-floor:first-child {
	margin-top: -40px;
}

.block--xl .top-floor:last-child {
	margin-bottom: -40px;
}

.top-floor__visual {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	text-align: center;
	padding: 0 30px;
}

.top-floor__visual img {
	max-width: 100%;
	display: inline-block;
	vertical-align: bottom;
}

.top-floor__content {
	max-width: 50%;
	width: 420px;
	position: relative;
	z-index: 2;
}



/* --- block floor --- */
.block>.block-floor:last-child {
	margin-bottom: -40px;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.block>.block-floor:first-child {
	margin-top: -40px;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.block-floor__title {
	margin: 70px 0 22px;
}

.block-floor:not(:first-child) .block-floor__title:first-child {
	margin-top: 20px;
}

.block-floor:not(:first-child) .block-floor__title--sm:first-child {
	margin-top: 0;
}

.block-floor__hl {
	color: #ef6b01;
	margin: 18px 0;
}

.block [id^="comp_"] .st-floor--subscribe {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}



/* --- block-floor-notes --- */
.block-floor-notes {
	font-size: 0;
	line-height: 18px;
	margin: 35px -15px -5px;
}

.block-floor-notes__item {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: 18px;
	margin: 0 15px 5px;
}



/* --- reg floor --- */
.reg-floor {
	padding: 40px 0;
}

.reg-floor-divider {
	margin: 35px -40px;
	border: none;
	border-top: 1px solid #e2e2e2;
}



/* --- banner-floor --- */
.banner-floor {
	margin: 0 -40px;
	padding: 70px 100px;
	background-size: cover;
	background-position: center;
	min-height: 370px;
}

.banner-floor__title {
	margin: 0 0 20px;
	max-width: 480px;
}

.banner-floor__txt {
	margin: 20px 0;
	max-width: 480px;
}

.banner-floor__btn-row {
	margin: 25px 0;
}



/* --- infogr floor --- */
.infogr-floor {
	padding: 50px 60px 75px;
}

.infogr-floor--lt {
	padding: 55px 0 80px;
}

.infogr-floor--faq,
.infogr-floor--ltlt {
	padding: 55px 0 65px;
}

.infogr-floor--lg {
	padding-left: 60px;
	padding-right: 60px;
}

.infogr-floor.lcc {
	padding-bottom: 0;
}



/* --- infogr-layout --- */
.infogr-layout {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.infogr-layout__main {
	display: table-cell;
	vertical-align: top;
	padding: 0 40px;
}

.infogr-layout__visual {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0 40px;
}

.infogr-layout__visual img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.infogr-layout__main:first-child,
.infogr-layout__visual:first-child {
	padding-left: 0;
}

.infogr-layout__main:last-child,
.infogr-layout__visual:last-child {
	padding-right: 0;
}

.infogr-layout__btn-row {
	margin-top: 25px;
}

.infogr-layout--alt .infogr-layout__main {
	width: 56%;
	padding-right: 30px;
}

.infogr-layout--alt .infogr-layout__visual {
	padding-left: 0;
}

.block-floor__title+.infogr-layout--alt {
	margin-top: 30px;
}

.infogr-layout--alt .infogr-layout__visual {
	vertical-align: top;
}



/* --- infogr-txt --- */
.infogr-txt {
	font-size: 17px;
	line-height: 25px;
}

.infogr-txt p,
.infogr-txt ul,
.infogr-txt ol {
	margin: 25px 0;
}

.infogr-txt p:first-child,
.infogr-txt ul:first-child,
.infogr-txt ol:first-child {
	margin-top: 0;
}

.infogr-txt p:last-child,
.infogr-txt ul:last-child,
.infogr-txt ol:last-child {
	margin-bottom: 0;
}

.infogr-txt ul>li {
	margin-bottom: 12px;
}

.infogr-txt ul>li:last-child {
	margin-bottom: 0;
}

.infogr-txt h3 {
	margin-bottom: 18px;
}



/* --- infogr-item --- */
.infogr-item {
	display: table;
	width: 100%;
}

.infogr-item__txt-cell {
	display: table-cell;
	vertical-align: middle;
	width: 99%;
}

.infogr-item__img-cell {
	display: table-cell;
	vertical-align: top;
	width: 1px;
	padding-right: 30px;
}

.infogr-item__img-box {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 0;
}

.infogr-item__img-box::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.infogr-item__img-box img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
}

.infogr-item__title,
.text-guide .infogr-item__title {
	margin: 0 0 8px;
}

.infogr-item__txt {
	margin: 8px 0;
}

.infogr-item__title:first-child,
.infogr-item__title.flc:first-child {
	margin-top: -3px;
}

.infogr-item__title:last-child,
.infogr-item__title.flc:last-child {
	margin-bottom: -3px;
}

h3.infogr-item__title:first-child,
h3.infogr-item__title.flc:first-child {
	margin-top: -7px;
}

h3.infogr-item__title:last-child,
h3.infogr-item__title.flc:last-child {
	margin-bottom: -7px;
}

.infogr-item-ex-txt {
	margin-top: 20px;
}



/* --- bg-floor --- */
.bg-floor {
	margin: 0 -40px;
	padding: 50px 80px 60px;
	background: #e2e2e2 url(/local/images/romb-bg.png) repeat top left;
}



/* --- map floor --- */
.map-floor {
	padding: 65px 40px;
	margin: 0 -40px;
	position: relative;
	min-height: 500px;
	background-color: #e2e2e2;
}

.map-floor__map {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #fff;
}

.map-floor__map>ymaps {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto !important;
	height: auto !important;
}

.map-floor__card {
	position: relative;
	z-index: 10;
	width: 440px;
	max-width: 50%;
}

.gallery-floor+.map-floor {
	margin-top: 40px;
}



/* --- map card --- */
.map-card {
	background-color: #fff;
	padding: 35px 40px 40px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, .3);
}

.map-card__strong {
	display: block;
	margin: 20px 0 30px;
}

.map-card__title {
	margin: 20px 0;
}

.map-card__txt,
.map-card__images {
	margin-bottom: 30px;
}

.map-card img {
	display: block;
	max-width: 100%;
	margin: 10px 0;
}

.map-card img:first-child {
	margin-top: 0;
}

.map-card img:last-child {
	margin-bottom: 0;
}



/* --- form floor --- */
.form-floor {
	padding: 60px 40px 40px;
}

.form-floor--border {
	padding: 60px 100px 40px;
	margin: -1px -40px;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
}

.form-floor--toggleable {
	position: relative;
	display: none;
}

.form-floor--toggleable.open {
	display: block;
}

.form-floor--toggleable .form__title {
	width: calc(100% - 40px);
}

.form-floor--lt {
	padding-left: 80px;
	padding-right: 80px;
}

.form-floor__close {
	position: absolute;
	top: 60px;
	right: 95px;
	width: 30px;
	height: 30px;
	padding: 0;
	cursor: pointer;
	transition: .2s;
}

.form-floor__close::before,
.form-floor__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	border-top: 3px solid;
	margin: -2px 0 0 -15px;
}

.form-floor__close::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-floor__close::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.no-touch .form-floor__close:hover {
	color: #e63c2f;
}



/* --- accordion-txt-block --- */
.accordion-txt-block {
	margin: 15px 0;
}

.accordion-txt-block:first-child {
	margin-top: 0;
}

.accordion-txt-block:last-child {
	margin-bottom: 0;
}

.accordion-txt-block:not(.open) .accordion-txt-block__body {
	display: none;
}

.accordion-txt-block__bar {
	margin-top: 20px;
}




/* --- icon col block --- */
.icon-col-block {
	display: table;
	width: 100%;
}

.icon-col-block__icon,
.icon-col-block__main {
	display: table-cell;
	vertical-align: top;
}

.icon-col-block__icon {
	width: 1px;
	padding-right: 30px;
}

.icon-col-block__icon .svg-icon--30 {
	margin-top: 4px;
}

.icon-col-block__title {
	margin-bottom: 15px;
}

.icon-col-block__title a {
	color: #303030;
}

.icon-col-block__cols {
	font-size: 0;
	margin: -10px;
}

.icon-col-block__col {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 20px);
	font-size: 15px;
	margin: 10px;
}

.icon-col-block__action {
	margin-top: 30px;
}

.top-floor .icon-col-block__title a {
	color: #fff;
}



/* --- contact col --- */
.contact-col__title {
	margin-bottom: 11px;
}

.contact-col__week {
	margin-bottom: 14px;
}

.contact-col__info {
	font-size: 13px;
	line-height: 21px;
}



/* --- week --- */
.week {
	display: block;
	text-align: left;
	white-space: nowrap;
	font-size: 0;
	line-height: 0;
	cursor: default;
}

.week__day {
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 5px;
	background-color: #919191;
	margin-right: 2px;
}

.week__day:last-child {
	margin-right: 0;
}

.top-floor .week__day {
	background-color: #fff;
}

.week__day.active {
	background-color: #ef6b01;
}



/* --- tabs block --- */
.tabs-block {
	position: relative;
	z-index: 15;
}

.tabs-block+*,
.tabs-block+.big-map {
	margin-top: 0;
}



/* --- tabs line --- */
.tabs-line {
	font-size: 0;
	padding: 20px 40px;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #e2e2e2;
	margin-bottom: -1px;
}

.tabs-line__grid {
	margin: -10px -20px;
}

.tabs-line--block {
	padding: 0 0 20px;
}

.tabs-line--block:first-child {
	margin-top: -30px;
}



/* --- tab label --- */
.tab-label {
	display: inline-block;
	vertical-align: bottom;
	padding: 5px 0 2px;
	margin: 10px 20px;
	font-size: 15px;
	line-height: 23px;
	font-weight: 400;
	color: #303030;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	transition: .2s;
}

.tab-label.open {
	color: #ef6b01;
	border-bottom-color: #ef6b01;
	cursor: default;
}

.no-touch .tab-label:not(.open):hover {
	color: #ef6b01;
}



/* --- simple-tab --- */
.simple-tab:not(.open) {
	display: none;
}



/* --- grid table --- */
.grid-table {
	font-size: 0;
	margin: -30px -20px 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.grid-table__item {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 40px);
	margin: 30px 20px 0;
	padding-bottom: 30px;
	border-bottom: 1px solid #e2e2e2;
	font-size: 15px;
}

.grid-table p {
	margin: 5px 0;
}

.grid-table p:first-child {
	margin-top: 0;
}

.grid-table p:last-child {
	margin-bottom: 0;
}

.grid-table h3 {
	margin: 17px 0;
}

.grid-table h3:first-child {
	margin-top: 0;
}

.grid-table h3:last-child {
	margin-top: 0;
}



/* --- text banner --- */
.text-banner {
	color: #303030;
	background: #f0f0f0;
	border-radius: 8px;
	padding: 25px 30px 30px;
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

.text-banner::after {
	content: '';
	display: table;
	clear: both;
}

.text-banner__img {
	max-width: 180px;
	max-height: 120px;
	float: right;
	margin: 2px 0 30px 40px;
}

.text-banner__title,
.text-guide .text-banner__title {
	margin: 0 0 15px;
}

.text-banner__subtitle {
	display: block;
	margin: 15px 0;
}

.text-banner__txt {
	margin: 18px 0;
}

.text-banner__txt p {
	margin: 5px 0;
}

.text-banner__txt p:first-child {
	margin-top: 0;
}

.text-banner__txt p:last-child {
	margin-bottom: 0;
}

.text-banner__footer {
	border-top: 1px solid #e2e2e2;
	padding-top: 20px;
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px;
	width: calc(100% + 60px);
}

.text-banner--sm .text-banner__img {
	max-width: 70px;
	max-height: 60px;
	margin-bottom: 0;
	margin-top: 0;
}

.text-banner--sm .text-banner__title,
.text-banner--sm .text-banner__subtitle,
.text-banner--sm .text-banner__txt {
	margin-right: 100px;
}

.text-banner--hl,
.bx_text_banner_hl {
	background-color: #fdf0e5;
}



/* --- text block --- */
.text-block {
	margin: 15px 0;
}



/* --- block footer row --- */
.block-footer-row {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 60px;
	margin: 75px 0 -5px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.block-footer-row .btn-row::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 60px;
	margin: 0 0px 20px 0;
}

.block-footer-row .btn {
	vertical-align: middle;
}



/* --- person floor --- */
.person-floor {
	padding: 80px 40px;
	margin: -1px -40px;
	border-bottom: 1px solid #e2e2e2;
	overflow: hidden;
	position: relative;
}

.person-floor__header {
	display: table;
	margin-left: 34.5%;
	width: 65.5%;
	table-layout: fixed;
	margin-bottom: 45px;
	position: relative;
	z-index: 10;
}

.person-floor__header-title,
.person-floor__header-aside {
	display: table-cell;
	vertical-align: top;
}

.person-floor__header-aside {
	padding-left: 20px;
}



/* --- person slider --- */
.person-slider-block {
	position: relative;
	margin: 0 -40px;
	padding: 0 40px;
}

.person-slider {
	overflow: hidden;
	margin: 0 -40px;
}

.person-slider__track {
	font-size: 0;
	white-space: nowrap;
	padding: 0 40px;
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: -20px;
	-webkit-overflow-scrolling: touch;
}

.has-scroll-bar .person-slider__track {
	margin-bottom: -38px;
}

.person-slider__item {
	display: inline-block;
	vertical-align: top;
	margin-right: 45px;
	font-size: 15px;
	width: 220px;
	position: relative;
	z-index: 4;
	white-space: normal;
}

.person-slider__flower {
	position: absolute;
	width: 43.4%;
	max-width: 500px;
	left: 150px;
	top: 110px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(/local/images/flower-bg.png);
	background-size: contain;
}

.person-slider__flower::after {
	content: '';
	display: block;
	padding-top: 100%;
}



/* --- scroll bar --- */
.person-slider-bar {
	margin: 60px 100px 0;
}

.scroll-bar {
	position: relative;
	height: 5px;
	background-color: #e2e2e2;
}

.scroll-bar__handle {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #919191;
	min-width: 100px;
	cursor: pointer;
	transition: background .2s;
}

.scroll-bar__handle::before {
	content: '';
	position: absolute;
	top: -7px;
	bottom: -7px;
	left: 0;
	right: 0;
}

.no-touch .scroll-bar__handle:hover {
	background-color: #303030;
}

.wheel-mode .scroll-bar__handle {
	transition: .05s, background .2s;
}



/* --- person col --- */
.person-col {
	text-align: center;
}

.person-col__img {
	width: 220px;
	height: 220px;
	margin: 0 auto 30px;
	border-radius: 50%;
	background-position: center;
	background-size: cover;
}

.person-col__name {
	font-size: 17px;
	line-height: 25px;
	font-weight: 600;
}

.person-col__descr {
	font-size: 15px;
	line-height: 23px;
	font-style: italic;
}

.person-col__name,
.person-col__descr,
.person-col__link {
	margin-bottom: 10px;
}



/* --- centered info row --- */
.centered-info-row {
	text-align: center;
	margin: 40px 0px;
}

.centered-info-row__items {
	font-size: 0;
	margin: -5px -10px 0;
}

.centered-info-row__item {
	display: inline-block;
	vertical-align: top;
	margin: 5px 10px 0;
	font-size: 15px;
	line-height: 23px;
}

.centered-info-row__item--sm {
	font-size: 13px;
}



/* --- partner floor --- */
.partner-floor {
	padding: 55px 40px 40px;
	margin: -1px -40px;
	border-bottom: 1px solid #e2e2e2;
}

.partner-floor:last-child {
	border-bottom: none;
}

.partner-floor .block-floor__title {
	margin-bottom: 27px;
}



/* --- review slider --- */
.review-slider {
	position: relative;
	border: 3px solid #ef6b01;
	border-radius: 8px;
	padding: 50px 0px 70px;
	margin-bottom: 60px;
	width: 100%;
	max-width: 100%;
}

.review-slider::before,
.review-slider::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	border: 30px solid transparent;
}

.review-slider::before {
	border-top-color: #ef6b01;
	border-left-color: #ef6b01;
	margin: 0 0 0 -3px;
}

.review-slider::after {
	border-top-color: #fff;
	border-left-color: #fff;
	margin: -7px 0 0 0;
}



/* --- review slide --- */
.review-slide {
	padding: 0 60px;
	cursor: default;
}

.review-slide__txt {
	margin: 20px 0 0;
	padding-bottom: 30px;
	max-height: 215px;
	overflow: hidden;
	position: relative;
	border-bottom: 10px solid #fff;
}

.review-slide__txt::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.review-slide__txt+* {
	margin-top: -10px;
}

.review-slide__name {
	margin: 4px 0;
	font-weight: 600;
}

.review-slide__descr {
	margin: 4px 0;
	color: #919191;
}



/* --- logo grid img --- */
.logo-grid-img {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	max-width: 128px;
	position: relative;
	overflow: hidden;
}

.logo-grid-img::before {
	content: '';
	display: block;
	padding-top: 50%;
}

.logo-grid-img img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	font-size: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.logo-grid-img--reflex {
	transition: .2s;
	cursor: pointer;
}

.logo-grid-img--reflex::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .4);
	opacity: 0;
	transition: .5s ease-out, opacity .2s ease-out;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	;
}

.no-touch .logo-grid-img--reflex:hover {
	opacity: .8;
}

.no-touch .logo-grid-img--reflex:hover::after {
	opacity: 1;
	transition: 1.2s ease-out, opacity .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}



/* --- review --- */
.review {
	padding: 30px 60px 70px;
	margin-bottom: 40px;
	background-color: #f0f0f0;
	border-radius: 5px 5px 5px 0;
	position: relative;
	font-size: 15px;
	line-height: 23px;
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

.review::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	border: 20px solid transparent;
	border-top-color: #f0f0f0;
	border-left-color: #f0f0f0;
	margin-top: -5px;
}

.review__header {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin: 25px 0;
}

.review__header-img-cell,
.review__header-txt-cell {
	display: table-cell;
	vertical-align: middle;
}

.review__header-img-cell {
	width: 70px;
	padding-right: 20px;
}

.review__ava-box {
	margin: 0 0 0 -30px;
	width: 80px;
	height: 80px;
	font-size: 0;
	text-align: center;
}

.review__ava-box::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.review__ava-box img {
	width: 100%;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
}

.review__name {
	font-weight: 600;
	margin: 3px 0;
}

.review__date {
	color: #919191;
	margin: 3px 0;
}



/* --- more-link-row --- */
.more-link-row {
	margin-top: 35px;
}



/* --- dropdown --- */
.dropdown-owner {
	position: relative;
}

.dropdown-arrow-owner {
	position: relative;
}

.dropdown-arrow-owner::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	z-index: 101;
	opacity: 0;
	border-top: none;
	border-bottom: 8px solid #fff;
	transition: .2s;
}

.dropdown-owner.open .dropdown-arrow-owner::before,
.dropdown-owner.alt-open .dropdown-arrow-owner::before,
.dropdown-arrow-owner.open::before,
.dropdown-arrow-owner.alt-open::before {
	opacity: 1;
}

.dropdown-arrow-owner--top::before {
	border-top: 8px solid #303030;
	border-bottom: none;
	bottom: auto;
	top: -8px;
}

.dropdown-owner--dark .dropdown {
	background: #303030;
	border-radius: 8px;
	font-size: 13px;
	line-height: 20px;
	color: #FFFFFF;
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 20px;
	border-radius: 4px;
	max-width: calc(100vw - 20px);
	white-space: normal;
	background-color: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .2);
	z-index: 100;
	font-weight: normal;
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	text-align: left;
	-ms-transform-origin: center top;
	-webkit-transform-origin: center top;
	transform-origin: center top;
}

.dropdown--manual,
.dropdown--alt {
	opacity: 0;
	-ms-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transform: scaleY(0) translate3d(0, 0, 0);
	pointer-events: none;
	transition: transform .3s, opacity .3s;
}

.dropdown-owner.open .dropdown--manual,
.dropdown--alt.alt-open {
	opacity: 1;
	-ms-transform: scaleY(1);
	-webkit-transform: scaleY(1);
	transform: scaleY(1) translate3d(0, 0, 0);
	pointer-events: all;
}

.dropdown--sm {
	width: 220px;
}

.dropdown--md {
	width: 290px;
}

.dropdown--md-lg {
	width: 300px;
}

.dropdown--left-offset {
	margin-left: -20px;
}

.dropdown--right-offset {
	margin-right: -20px;
	left: auto;
	right: 0;
}

.dropdown--top-offset {
	top: auto;
	bottom: 100%;
	margin-bottom: 8px;
	transform-origin: center bottom
}

.dropdown--dark .tooltip__title {
	opacity: 0.5;
}



/* --- tooltip inline --- */
.tooltip-inline {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
	padding-bottom: 10px;
	margin-bottom: -10px;
}

.tooltip-inline__btn {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	cursor: help;
	background-color: #f0f0f0;
	color: #919191;
	font-size: 13px;
	line-height: 17px;
	text-align: center;
	font-weight: 400;
	padding-top: 1px;
	transition: .2s;
}

.tooltip-inline__btn::after {
	content: 'i';
}

.no-touch .tooltip-inline__btn:hover,
.tooltip-inline.open .tooltip-inline__btn {
	background-color: #ef6b01;
	color: #fff;
}

.tooltip {
	font-size: 13px;
	line-height: 18px;
}

.tooltip__title {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
}



/* --- tooltip txt --- */
.tooltip-txt {
	display: inline-block;
	vertical-align: baseline;
	position: relative;
	padding-left: 10px;
	margin-left: -10px;
}

.tooltip-txt__btn {
	color: #2c84b7;
	transition: .2s;
	cursor: help;
}

.no-touch .tooltip-txt__btn:hover,
.tooltip-txt.open .tooltip-txt__btn {
	color: #ef6b01;
}



/* --- lang dd --- */
.lang-dd {
	width: 190px;
	padding: 20px 40px;
	overflow: hidden;
}

.lang-dd__txt {
	margin: 15px 0;
	font-style: italic;
	font-size: 15px;
	line-height: 23px;
}

.lang-dd__left-decor,
.lang-dd__right-decor {
	position: absolute;
	width: 70px;
	height: 70px;
	top: 35px;
	color: #e2e2e2;
}

.lang-dd__left-decor {
	left: -35px;
}

.lang-dd__right-decor {
	right: -35px;
}

.lang-dd__btn-row {
	margin-top: 18px;
}

.lang-dd__btn-row .btn {
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% - 10px);
	text-align: center;
}

.lang-dd__close {
	font-size: 13px;
	line-height: 18px;
	margin-top: 18px;
	text-align: center;
	color: #2c84b7;
	cursor: pointer;
	transition: .2s;
}

.lang-dd__close-icon {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 10px;
	height: 10px;
	margin-top: -2px;
	margin-left: 4px;
}

.lang-dd__close-icon::before,
.lang-dd__close-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	border-top: 3px solid;
	width: 10px;
	margin: -1px 0 0 -5px;
}

.lang-dd__close-icon::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.lang-dd__close-icon::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.no-touch .lang-dd__close:hover {
	color: #ef6b01;
}



/* --- presence-like-row --- */
.presence-like-row {
	font-size: 13px;
	line-height: 18px;
}



/* --- big map --- */
.big-map {
	position: relative;
	min-height: 650px;
	background-color: #e2e2e2;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	margin-top: 80px;
	margin-bottom: 80px;
}

.big-map__map {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: calc(100% - 450px);
	min-width: 66.66%;
	z-index: 1;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.big-map__map>ymaps {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.big-map__aside {
	position: relative;
	z-index: 10;
	width: 450px;
	max-width: 33.33%;
	min-height: 648px;
	min-width: 330px;
}



/* --- filter block --- */
.filter-block {
	background-color: rgba(255, 255, 255, .93);
	box-shadow: 4px 0 4px -4px rgba(0, 0, 0, .3);
	padding: 55px 20px 60px;
}

.filter-block__form {
	max-width: 290px;
	margin: 0 auto;
}



/* --- status txt --- */
.status-txt {
	display: table;
	width: 100%;
	color: #919191;
	font-size: 13px;
	line-height: 18px;
}

.status-txt__icon,
.status-txt__txt {
	display: table-cell;
	vertical-align: top;
}

.status-txt__icon {
	width: 1px;
	padding-right: 10px;
}

.status-txt em {
	font: inherit;
	color: #ef6b01;
}

.status-txt .icon--conus {
	margin-top: -2px;
}



/* --- lt-labels --- */
.lt-labels {
	font-size: 0;
	margin: -5px;
}

.lt-labels .lt-label {
	display: inline-block;
	vertical-align: top;
	margin: 5px;
}



/* --- lt-label --- */
.lt-label {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: 18px;
	padding: 4px 12px;
	color: #303030;
	background-color: #e2e2e2;
	border-radius: 13px;
}

.lt-label--ai-92 {
	background-color: #eff4ce;
}

.lt-label--ai-95 {
	background-color: #dfecd5;
}

.lt-label--a-100 {
	background-color: #fff5cc;
}

.lt-label--dt-100 {
	background-color: #fce1cc;
}

.lt-label--dt-euro {
	background-color: #f4d5d2;
}

.lt-label--dt-arctic {
	background-color: #eeeeee;
}

.lt-label--adblue {
	background-color: #dcf1da;
}

.lt-label--gas {
	background-color: #e2f3fb;
}



/* --- lt-services --- */
.lt-services {
	font-size: 0;
	margin: -5px -10px;
}

.lt-services .lt-service {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px;
}



/* --- lt-service --- */
.lt-service {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	text-align: center;
	color: #ef6b01;
	font-size: 0;
}

.lt-service::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.lt-service img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}



/* --- big tip --- */
.big-tip {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 8px;
	padding: 15px 20px;
	background-color: #fff;
	width: 480px;
	max-width: calc(100vw - 40px);
	box-shadow: 0px 1px 8px rgba(0, 0, 0, .3);
	font-size: 13px;
	line-height: 18px;
	z-index: 20;
	cursor: default;
}

.big-tip::before,
.big-tip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	border: 18px solid transparent;
	border-bottom: none;
	border-top-color: #fff;
	margin-left: -18px;
	margin-top: -4px;
}

.big-tip::before {
	border-width: 8px;
	margin-left: -8px;
	margin-top: 6px;
	-webkit-filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, .5));
	filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, .5));
}

.big-tip__header {
	margin: -15px -20px 15px;
	border-radius: 5px 5px 0 0;
	padding: 14px 50px 14px 20px;
	color: #fff;
	background: #ef6b01;
	position: relative;
}

.big-tip__header:last-child {
	margin-bottom: -15px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.big-tip__title {
	margin: 8px 0;
	max-width: 340px;
}

.big-tip__title:nth-last-child(2) {
	margin-bottom: 0;
}

.big-tip__subtitle {
	margin-top: 8px;
	max-width: 340px;
}

.big-tip__title small {
	font: inherit;
	color: inherit;
	font-weight: 400;
}

.big-tip__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	padding: 0;
	color: #fff;
	transition: .2s;
}

.big-tip__close::before,
.big-tip__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1px 0 0 -8px;
	width: 16px;
	border-top: 2px solid;
}

.big-tip__close::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.big-tip__close::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.no-touch .big-tip__close:hover {
	opacity: .7;
}

.no-touch .big-tip__close:active,
.big-tip__close:active {
	opacity: .5;
}

.big-tip__status {
	margin: 20px 0;
}

.big-tip__labels {
	max-width: 360px;
}

.big-tip__services {
	margin-top: 12px;
	margin-bottom: 12px;
	max-width: 370px;
}

.big-tip__services:first-child {
	margin-top: -5px;
}

.big-tip__services:last-child {
	margin-bottom: -5px;
}

.big-tip__separator {
	margin: 20px -20px;
	border: none;
	border-top: 1px solid #e2e2e2;
}

.big-tip__notes p {
	margin: 10px 0;
}

.big-tip__notes p:first-child {
	margin-top: 0;
}

.big-tip__notes p:last-child {
	margin-bottom: 0;
}



/* --- block floor table --- */
.bft {
	margin: 18px -40px 36px;
	width: calc(100% + 80px);
	table-layout: fixed;
	border-spacing: 0;
}

.bft__cell {
	border-top: 1px solid #e2e2e2;
	padding: 20px 10px;
	vertical-align: top;
	text-align: left;
}

.bft__cell:first-child {
	padding-left: 40px;
}

.bft__cell:last-child {
	padding-right: 40px;
}

.bft__cell--number {
	width: 90px;
	padding-right: 0;
}

.bft__cell--contact {
	width: 205px;
	padding-left: 20px;
	padding-top: 24px;
	padding-bottom: 16px;
}

.bft__cell--services {
	width: 49%;
}

.bft__cell--services-sm {
	width: 36%;
}

.bft__wide-cell {
	padding: 20px 40px 0px 100px;
	border-bottom: none;
}

.bft__wide-row+.bft__row .bft__cell {
	border-top: none;
}

.bft__wide-cell-content {
	margin-bottom: -5px;
}

.bft__number {
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
}

.bft__title {
	margin-bottom: 8px;
}

.bft__title:last-child {
	margin-bottom: 0;
}

.bft__subtitle {
	display: block;
	font-size: 15px;
	line-height: 23px;
	font-style: italic;
	color: #919191;
}

.bft .lt-labels,
.bft .lt-services {
	margin-bottom: 10px;
}

.bft .lt-labels:last-child,
.bft .lt-services:last-child {
	margin-bottom: 0;
}

.bft--clear-last:last-child .bft__row:last-child .bft__cell {
	border-bottom: none;
	padding-bottom: 0;
}

.bft__title--active {
	transition: .2s;
	cursor: pointer;
}

.no-touch .bft__title--active:hover {
	color: #2c84b7;
}



/* --- lt contact --- */
.lt-contact {
	font-size: 13px;
	line-height: 18px;
}

.lt-contact p {
	margin: 4px 0;
}

.lt-contact .tooltip p {
	margin: 10px 0;
}

.lt-contact p:first-child {
	margin-top: 0;
}

.lt-contact p:last-child {
	margin-bottom: 0;
}

.lt-contact__bottom {
	margin-top: 8px;
}

.lt-contact__bottom-time {
	font-weight: 600;
	margin-right: 15px;
	display: inline-block;
	vertical-align: top;
}

.lt-contact__bottom-time:last-child {
	margin-right: 0;
}

.lt-contact__bottom-tip {
	display: inline-block;
	vertical-align: top;
}



/* --- slider floor --- */
.slider-floor {
	margin: 0 -40px;
}

.slider-floor:first-child {
	margin-top: -40px;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	overflow: hidden;
}

.slider-floor:last-child {
	margin-bottom: -40px;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	overflow: hidden;
}



/* --- floor slide --- */
.floor-slide {
	font-size: 0;
	cursor: default;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.floor-slide--dark {
	color: #fff;
}

.floor-slide--low .floor-slide__content {
	padding: 65px 60px 65px 20px;
	text-align: left;
}

.floor-slide--low .floor-slide__content::before {
	height: 250px;
	vertical-align: top;
}

.floor-slide--low .floor-slide__content-inner {
	width: 460px;
}

.floor-slide__content {
	padding: 40px;
	width: 50%;
	margin-left: auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.floor-slide__content::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 520px;
	height: calc(220px + 25vw);
	max-height: 520px;
}

.floor-slide__content-inner {
	display: inline-block;
	vertical-align: middle;
	width: 400px;
	max-width: 100%;
	text-align: left;
	font-size: 15px;
}

.floor-slide__top-icon {
	margin: 40px 0;
}

.floor-slide__title {
	margin: 0 0 14px 0;
}

.floor-slide__txt {
	margin: 14px 0;
}

.floor-slide__txt {
	display: block;
}

.floor-slide__btn-row {
	margin-top: 27px;
}

.floor-slide__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	display: none;
	background-color: #303030;
}

.floor-slide__bg--lg {
	display: block;
}



/* --- news type grid --- */
.news-type-grid {
	margin: -20px -20px -50px;
	width: calc(100% + 40px);
}

.news-type-grid__item {
	padding: 20px 20px 50px;
}

.block-floor__title+.news-type-grid {
	margin-top: -15px;
}



/* --- news-type-item --- */
.news-type-item {
	color: #303030;
	transition: .2s;
	display: block;
	width: 100%;
}

/* width: 100% - fix for wrong padding-top % calculation inside a flex container */
.news-type-item__img {
	padding-top: 70.58%;
	position: relative;
	border-radius: 8px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, .3);
	margin-bottom: 22px;
	background-color: #e2e2e2;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}

.news-type-item__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	padding-top: 300%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .1);
	opacity: 0;
	transition: .4s ease-out, opacity .2s ease-out;
	z-index: 6;
	-ms-transform: scale(0) translate(-50%, -50%);
	-webkit-transform: scale(0) translate(-50%, -50%);
	transform: scale(0) translate3d(-50%, -50%, 0);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.news-type-item__img-cover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.news-type-item__top-row {
	margin: 20px 0;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
}

.news-type-item__top-row:first-child {
	margin-top: 0;
}

.news-type-item__top-row-labels {
	vertical-align: top;
	padding-right: 20px;
	white-space: nowrap;
}

.news-type-item__top-row-txt {
	vertical-align: middle;
	font-size: 13px;
	line-height: 13px;
	color: #ef6b01;
	margin: 6px 0;
}

.news-type-item__top-row-txt .news-type-item__top-row-txt {
	margin: 0;
}

.news-type-item__top-row+.news-type-item__title {
	margin-top: -2px;
}

.news-type-item__top-row--gray .news-type-item__top-row-txt {
	color: #919191;
}

.news-type-item__notes {
	margin: 12px -5px;
	font-size: 13px;
	line-height: 18px;
}

.news-type-item__note-link {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	color: #2c84b7;
	transition: .2s;
}

.news-type-item__title,
.news-type-item__txt {
	margin: 10px 0;
	display: block;
}

.no-touch .news-type-item:hover .news-type-item__img::before {
	opacity: 1;
	transition: 1s ease-out, opacity .2s;
	-ms-transform: scale(1) translate(-50%, -50%);
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate3d(-50%, -50%, 0);
}

.no-touch .news-type-item:hover .news-type-item__note-link {
	color: #ef6b01;
}

.news-type-item.closed .news-type-item__top-row-txt {
	color: #919191;
}

.news-type-item.closed .news-type-item__img-cover {
	-webkit-filter: blur(1px);
	filter: blur(1px);
}



/* --- close cover --- */
.close-cover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	transform: translate3d(0, 0, 0);
}

.close-cover__lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, .5);
	background-color: rgba(48, 48, 48, .7);
}

.close-cover__lines path {
	stroke-width: 1px;
	vector-effect: non-scaling-stroke;
}

.close-cover__txt {
	position: absolute;
	z-index: 2;
	color: #fff;
	top: 50%;
	left: 20px;
	right: 20px;
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	transform: translateY(-50%);
	transform: translateY(-50%);
	transform: translateY(-50%);
}



/* --- food floor --- */
.food-floor {
	background: #55565a;
	background: #55565a url(/local/images/gray-bg.jpg) repeat;
	color: #fff;
	padding: 75px 40px;
	margin: 0 -40px;
	box-shadow: 0px 0px 100px rgba(0, 0, 0, .2) inset;
}

.food-floor .block-floor__title {
	margin: 0 60px 20px;
}

.food-floor__top-txt {
	margin: 20px 60px;
	display: table;
	table-layout: fixed;
	width: calc(100% - 120px);
	max-width: 780px;
}

.food-floor__top-txt-main,
.food-floor__top-txt-aside {
	display: table-cell;
	vertical-align: top;
}

.food-floor__top-txt-main {
	width: 42%;
	padding-right: 40px;
}

.food-floor .block-floor__title,
.food-floor.food-floor.food-floor .block-floor__title:first-child {
	margin-top: 0;
}



/* --- food grid --- */
.food-grid-block {
	margin: 60px 0 80px;
}

.food-grid-block__summary {
	margin-top: 57px;
	color: #ef6b01;
	text-align: center;
}

.food-grid {
	margin: -20px -20px -45px;
	width: calc(100% + 40px);
}

.food-grid__item {
	padding: 20px 20px 45px;
}



/* --- food item --- */
.food-item__top {
	display: block;
	vertical-align: top;
	margin-bottom: 30px;
	max-width: 340px;
}

.food-item__img-box {
	padding-top: 55.89%;
	position: relative;
	font-size: 0;
	line-height: 0;
	max-width: 340px;
}

.food-item__img-box-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	text-align: center;
}

.food-item__img-box-img::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.food-item__img-box-img img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}

.food-item__labels {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.food-item__label {
	max-width: 190px;
	display: block;
	margin-bottom: 10px;
}

.food-item__label:last-child {
	margin-bottom: 0;
}

.food-item__price {
	position: absolute;
	bottom: 0;
	right: 0;
}

.food-item__title,
.food-item__descr {
	margin: 13px 0;
}



/* --- price-stamp --- */
.price-stamp {
	width: 110px;
	height: 110px;
	text-align: center;
	font-size: 0;
	background: url(/local/images/price-stamp.png) no-repeat 50% 50% / 100% 100%;
}

.price-stamp::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.price-stamp__inner {
	display: inline-block;
	vertical-align: middle;
	width: 80%;
	height: 80%;
	background-color: #303030;
	border-radius: 50%;
	color: #fff;
	padding: 10px 0;
	white-space: nowrap;
}

.price-stamp small {
	display: block;
	font-size: 15px;
	line-height: 17px;
	margin: 6px 0;
}

.price-stamp small:first-child {
	margin-top: 0;
}

.price-stamp small:last-child {
	margin-bottom: 0;
}

.price-stamp strong {
	font-size: 40px;
	line-height: 40px;
	font-weight: 400;
	font-style: normal;
}

.price-stamp sup {
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	font-style: normal;
	vertical-align: top;
}

.price-stamp--orange .price-stamp__inner {
	background-color: #ef6b01;
}

.price-stamp--green .price-stamp__inner {
	background-color: #79b833;
}

.price-stamp--pink .price-stamp__inner {
	background-color: #e4097f;
}



/* --- search-row --- */
.search-form {
	max-width: 780px;
	margin: 0 auto;
}

.search-row {
	display: table;
	width: 100%;
}

.search-row__input-cell {
	display: table-cell;
	width: 99%;
	vertical-align: top;
}

.search-row__btn-cell {
	display: table-cell;
	width: 1px;
	padding-left: 15px;
	vertical-align: top;
}



/* --- search type floor --- */
.st-floor {
	padding: 30px 100px;
	margin-left: -40px;
	margin-right: -40px;
	border-bottom: 1px solid #e2e2e2;
	border-top: 1px solid #e2e2e2;
	background-size: cover;
	background-position: center;
}

.st-floor:first-child {
	margin-top: -40px;
	border-top: none;
}

.st-floor:last-child {
	margin-bottom: -40px;
	border-bottom: none;
}

.st-floor.push-up {
	border-top: none;
}

.st-floor.push-down {
	border-bottom: none;
}

.st-floor .search-form {
	max-width: none;
}

.st-floor--filter,
.st-floor--subscribe {
	padding-left: 40px;
	padding-right: 40px;
}

.st-floor--banners {
	padding: 40px;
}

.st-floor--subscribe {
	border: none;
}

.st-banners-descr-floor+.st-floor {
	border-top: none;
}

.st-floor--noborder {
	border: none;
}

.block [id^="comp_"]:not(:first-child) .st-floor:first-child {
	margin-top: 0;
}

.block script:first-child+[id^="comp_"] .st-floor:first-child {
	margin-top: -40px;
	border-top: none;
}



/* --- search results type floor --- */
.srt-floor {
	padding: 25px 100px 60px;
	margin-left: -40px;
	margin-right: -40px;
}



/* --- article list --- */
.article-list__item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #e2e2e2;
}

.article-list__item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.article-list__item .article-li__title:last-child,
.article-list__item .article-li__txt:last-child {
	margin-bottom: -5px;
}



/* --- article li --- */
.article-li__date,
.article-li__title {
	margin: 13px 0;
}



/* --- date row --- */
.date-row {
	font-size: 0;
	margin-left: -6px;
	margin-right: -6px;
}

.date-row__item,
.date-row__separator {
	display: inline-block;
	vertical-align: baseline;
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin: 0 6px;
}

.date-row__item--type,
.date-row__item a {
	color: #ef6b01;
	transition: .2s;
}

.no-touch .date-row__item--type:hover,
.no-touch .date-row__item a:hover {
	color: #2c84b7;
}



/* --- page-nav-floor --- */
.page-nav-floor {
	padding: 30px 40px 40px;
	border-top: 1px solid #e2e2e2;
	margin-left: -40px;
	margin-right: -40px;
}

.page-nav-floor:last-child {
	margin-bottom: -40px;
}

.block [id^="comp_"]:not(:last-child) .page-nav-floor:last-child {
	margin-bottom: 0;
}



/* --- page nav --- */
.page-nav {
	text-align: center;
	font-size: 0;
	margin-left: -4px;
	margin-right: -4px;
	cursor: default;
}

.page-nav__btn {
	display: inline-block;
	vertical-align: middle;
	margin: 0 4px;
}

.page-nav__back {
	margin-right: 20px;
}

.page-nav__next {
	margin-left: 20px;
}



/* --- page-nav-btn --- */
.page-nav-btn {
	display: inline-block;
	vertical-align: middle;
	color: #303030;
	font-size: 15px;
	line-height: 23px;
	min-width: 30px;
	padding: 8px 4px 6px;
	border-bottom: 3px solid rgba(239, 107, 1, 0);
	position: relative;
	overflow: hidden;
	transition: .2s;
}

.no-touch .page-nav-btn:hover,
.page-nav-btn.active {
	color: #ef6b01;
	border-bottom-color: #ef6b01;
}

.no-touch .page-nav-btn:hover::after,
.page-nav-btn.active::after {
	opacity: 1;
	-ms-transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	transform: translate3d(0, -3px, 0);
}



/* --- wide-filter --- */
.wide-filter__form {
	margin: -20px;
}

.wide-filter__form .form__row {
	margin: 0;
}



/* --- article floor --- */
.article-floor {
	padding: 50px 50px 80px;
}

.article-floor:first-child {
	padding-top: 60px;
}



/* --- e404 floor --- */
.e404-floor {
	padding: 75px 60px;
}



/* --- e404 --- */
.e404 {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.e404__main,
.e404__aside {
	display: table-cell;
	vertical-align: middle;
}

.e404__aside {
	text-align: center;
	padding-left: 100px;
}

.e404__aside img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.e404__title {
	margin: 15px 0;
}

.e404__strong {
	display: block;
	margin: 15px 0;
}

.e404__btn-row {
	margin: 25px 0;
}

.e404__footer {
	border-top: 1px solid #e2e2e2;
	margin-top: 60px;
	padding-top: 25px;
	color: #919191;
	font-size: 13px;
	line-height: 18px;
}

/* --- e404 floor --- */
.cookies-page-floor {
	padding: 75px 60px;
}



/* --- e404 --- */
.cookies-page {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.cookies-page__main,
.cookies-page__aside {
	display: table-cell;
	vertical-align: middle;
}

.cookies-page__aside {
	text-align: center;
	padding-left: 100px;
}

.cookies-page__aside img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.cookies-page__title {
	margin: 15px 0;
}

.cookies-page__strong {
	display: block;
	margin: 15px 0;
}

.cookies-page__btn-row {
	margin: 25px 0;
}

.cookies-page__footer {
	border-top: 1px solid #e2e2e2;
	margin-top: 60px;
	padding-top: 25px;
	color: #919191;
	font-size: 13px;
	line-height: 18px;
}

.cookies-page__social-links {
	display: flex;
}

.cookies-page__social-link {
	margin-right: 6px;
}

.cookies-page__social-link:last-child {
	margin-right: 0;
}

.cookies-page__social-link img {
	transition: 0.4s transform
}

.cookies-page__social-link:hover img {
	transform: scale(1.15, 1.15);
}

@media (max-width: 767px) {
	.cookies-page-floor {
		padding: 10px 0;
	}
}

.cookies {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-top: 1px solid #e2e2e2;
	z-index: 100;
}

.cookies.active {
	display: flex;
}

.cookies__buttons {
	margin: 0 20px;
}

@media (max-width: 879px) {
	.cookies {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookies__buttons {
		margin: 10px 0;
	}
}

/* --- sitemap block --- */
.sitemap-block {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.sitemap-block__title {
	margin-bottom: 13px;
}

.sitemap-block__title:last-child {
	margin-bottom: 0;
}

.sitemap-block__list {
	-moz-columns: 4;
	-moz-column-gap: 40px;
	-webkit-columns: 4;
	-webkit--column-gap: 40px;
	columns: 4;
	column-gap: 40px;
	margin-bottom: -15px;
}

.sitemap-block__li {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding-bottom: 15px;
}

.sitemap-block__link {
	display: block;
}

.sitemap-block__sub-list {
	margin-top: 10px;
	margin-bottom: 5px;
	line-height: 0;
}

.sitemap-block__sub-list:first-child {
	margin-top: 0px;
}

.sitemap-block__sub-list::after {
	content: '';
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

/* webkit columns bug fix */
.sitemap-block__sub-link {
	display: block;
	position: relative;
	padding-left: 20px;
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin-bottom: 10px;
}

.sitemap-block__sub-link:last-child {
	margin-bottom: 0;
}

.sitemap-block__sub-link::before {
	content: '';
	position: absolute;
	top: .6em;
	left: 0;
	width: 12px;
	border-top: 1px solid;
}

.no-touch .sitemap-block__link:hover {
	padding-left: 6px;
	margin-right: -10px;
}

.no-touch .sitemap-block__sub-link:hover {
	padding-left: 26px;
	margin-right: -10px;
}

.webkit .sitemap-block__li {
	display: block;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}



/* --- sitemap grid --- */
.sitemap-grid {
	-moz-column-count: 4;
	-moz-column-gap: 40px;
	-webkit-column-count: 4;
	-webkit--column-gap: 40px;
	column-count: 4;
	column-gap: 40px;
	margin-bottom: -40px;
}

.sitemap-grid::after {
	content: '';
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.sitemap-grid .sitemap-block {
	display: inline-block;
	padding-bottom: 40px;
}

.sitemap-grid .sitemap-block__list {
	-moz-columns: 1;
	-webkit-columns: 1;
	columns: 1;
}

.webkit .sitemap-grid .sitemap-block {
	display: block;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}



/* --- col-txt-floor --- */
.col-txt-floor {
	padding: 75px 0;
	font-size: 0;
}

.col-txt-floor__col {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	font-size: 15px;
}

.col-txt-floor__col:nth-child(odd) {
	padding-right: 40px;
}

.col-txt-floor__col:nth-child(even) {
	padding-left: 40px;
}

.col-txt-floor__col:only-child {
	width: 100%;
}



/* --- cert-floor --- */
.cert-floor__title,
.cert-floor__subtitle {
	margin: 20px 0;
	max-width: 780px;
}

.cert-floor__subtitle {
	display: block;
}



/* --- cert grid --- */
.cert-floor__subtitle+.cert-grid {
	margin-top: -5px;
}



/* --- cert --- */
.cert {
	border: 3px solid;
	border-radius: 8px;
	padding: 22px 25px;
	min-height: 210px;
	position: relative;
	-ms-flex-grow: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

.cert__title {
	display: table;
	width: 100%;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.cert__title-main,
.cert__title-aside {
	display: table-cell;
	vertical-align: top;
}

.cert__title-main {
	width: 99%;
}

.cert__title-aside {
	width: 1px;
	white-space: nowrap;
	padding-left: 15px;
	color: #303030;
}

.cert__title-aside .price {
	display: inline-block;
	vertical-align: middle;
}

.cert__title-aside .tooltip-inline {
	margin-top: -10px;
	margin-left: 4px;
}

.cert__title-txt {
	padding-right: 44px;
}

.cert__title .fuel-icon {
	margin-left: -35px;
}

.cert__txt {
	color: #303030;
	font-style: italic;
	max-width: 120px;
	margin-right: 150px;
}

.cert__link-row {
	margin-top: 5px;
	max-width: 120px;
	margin-right: 150px;
}

.cert__images-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.cert__images {
	position: absolute;
	bottom: 0;
	right: 30px;
	height: 120px;
}

.cert__img {
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
	transition: .2s;
	max-width: 120px;
}

.cert__img+.cert__img {
	position: absolute;
	top: 40px;
	right: 20px;
}

.no-touch a.cert:hover .link {
	color: #ef6b01;
}

.no-touch a.cert:hover .cert__img {
	box-shadow: 0px 3px 6px rgba(0, 0, 0, .3);
}

.cert--custom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.cert--custom .cert__link-row {
	margin-top: auto;
}

.cert--green {
	border-color: #5fa12c;
}

.cert--green .cert__title {
	color: #5fa12c;
}



/* --- article-top-block --- */
.article-top-block {
	margin: 50px 0;
	display: table;
	width: 100%;
	table-layout: fixed;
}

.article-top-block__txt {
	display: table-cell;
	vertical-align: top;
}

.article-top-block__img {
	display: table-cell;
	vertical-align: middle;
	width: 45%;
	padding-left: 40px;
}

.article-top-block__img img {
	margin: 0 0 -30px;
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	float: none;
}



/* --- download block --- */
.download-block {
	margin: 25px 0;
}



/* --- download-grid --- */
.download-grid {
	font-size: 0;
	display: inline-block;
	width: calc(100% + 40px);
	margin: 0 -20px -25px;
}

.download-grid__item {
	display: inline-block;
	vertical-align: top;
	padding: 0px 20px 25px;
	width: 50%;
	font-size: 15px;
}



/* --- download-link --- */
.download-link {
	display: table;
}

.download-link__img-box {
	display: table-cell;
	vertical-align: top;
	width: 1px;
	padding-right: 20px;
}

.download-link__txt-box {
	display: table-cell;
	vertical-align: middle;
}

.download-link__name {
	display: block;
	color: #303030;
	transition: .2s;
}

.download-link__info {
	display: block;
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	margin: 5px 0;
}

.download-link__name:first-child,
.download-link__info:first-child {
	margin-top: -4px;
}

.download-link__name:last-child,
.download-link__info:last-child {
	margin-bottom: -4px;
}

.no-touch .download-link:hover .download-link__name {
	color: #ef6b01;
}



/* --- subscribe-row --- */
.subscribe-row {
	display: table;
	width: 100%;
}

.subscribe-row__label,
.subscribe-row__form {
	display: table-cell;
	vertical-align: top;
}

.subscribe-row__label {
	width: 99%;
	padding-right: 40px;
	font-size: 0;
}

.subscribe-row__label::after {
	content: '';
	display: inline-block;
	height: 40px;
	vertical-align: middle;
}

.subscribe-row__label-txt {
	display: inline-block;
	vertical-align: middle;
	margin: -8px 0px;
}



/* --- subscribe form --- */
.subscribe-form {
	display: table;
	width: calc(100% + 10px);
}

.subscribe-form__item,
.subscribe-form__btn {
	display: table-cell;
	vertical-align: top;
	padding: 0 5px;
}

.subscribe-form__item {
	width: 50%;
}

.subscribe-form__btn {
	width: 1px;
}

.subscribe-form .text-input {
	min-width: 320px;
}

.subscribe-form__btn .btn {
	min-width: 185px;
}

.subscribe-form .field__err {
	padding-left: 5px;
	padding-right: 5px;
}



/* --- txt btn --- */
.txt-btn {
	display: inline-block;
	vertical-align: middle;
	background: transparent;
	border: none;
	padding: 5px 0;
	position: relative;
	cursor: pointer;
	color: #2c84b7;
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	transition: .2s;
}

.txt-btn--plus {
	padding-left: 20px;
}

.txt-btn--plus::before,
.txt-btn--plus::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 6px;
}

.txt-btn--plus::before {
	width: 12px;
	border-top: 2px solid;
	margin: -1px 0 0 -6px;
}

.txt-btn--plus::after {
	height: 12px;
	border-left: 2px solid;
	margin: -6px 0 0 -1px;
}

.no-touch .txt-btn:hover {
	color: #ef6b01;
}



/* --- title w aside --- */
.title-w-aside {
	display: table;
	max-width: 100%;
	margin: 20px 0;
}

.title-w-aside__main,
.title-w-aside__aside {
	display: table-cell;
	vertical-align: top;
}

.title-w-aside__aside {
	white-space: nowrap;
	width: 1px;
	padding-left: 20px;
}

.title-w-aside.h3 .check-grid {
	margin-top: -1px;
}



/* --- forms --- */
.form__title {
	display: table;
	width: 100%;
	margin-bottom: 25px;
	margin-top: 50px;
	cursor: default;
}

.form__title:first-child,
input[type="hidden"]+.form__title,
input[type="hidden"]~input[type="hidden"]+.form__title {
	margin-top: 0;
}

.form__title:last-child {
	margin-bottom: 0;
}

.form__title-main {
	display: table-cell;
	width: 99%;
}

.form__title-aside {
	display: table-cell;
	width: 1px;
	white-space: nowrap;
	padding-left: 40px;
}

.form__title+.form__grid {
	margin-top: -40px;
}

.form__title+.form__grid--free {
	margin-top: -20px;
}

.form__grid {
	font-size: 0;
	margin: -20px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.form__grid-item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	padding: 20px;
	font-size: 15px;
}

.form__grid-item--sm {
	width: 36%;
}

.form__grid-item--lg {
	width: 64%;
}

.form__grid--space-lg {
	margin: -20px -60px;
}

.form__grid--space-lg .form__grid-item {
	padding: 20px 60px;
}

.form__grid--free {
	margin: -20px -30px;
}

.form__grid--free .form__row {
	display: inline-block;
	vertical-align: top;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0;
}

.form__grid--free+.form__row--free {
	padding-top: 20px;
}

.form__row.hidden {
	display: none;
}


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

.form__row--free {
	padding-top: 15px;
	padding-bottom: 15px;
}

.form__row--free:first-child {
	padding-top: 0;
}

.form__row--free:last-child {
	padding-bottom: 0;
}

.form__row--inline {
	display: inline-block;
	vertical-align: top;
}

.form__row--add {
	padding-top: 0;
	padding-bottom: 0;
}

.form__row--toggleable:not(.active) {
	display: none;
}

.form__label {
	display: block;
	margin: -5px 0 9px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
}

.form__label-txt {
	margin-right: 10px;
}

.form__label-txt:last-child {
	margin-right: 0;
}

.form__label-error {
	color: #e63c2f;
	font-weight: 400;
	display: none;
}

.form__label-link {
	font-weight: 400;
}

.form__label-link--rmc {
	display: none;
}

.copy .form__label-link--rmc {
	display: inline;
}

.copy .form__label-link--rmc.hidden {
	display: none;
}

.form__msg {
	color: #919191;
	font-size: 13px;
	line-height: 21px;
	margin: 16px 0;
}

.form__msg:first-child {
	margin-top: 0;
}

.form__msg:last-child {
	margin-bottom: 0;
}

.form__row .checkbox-row {
	margin-top: -5px;
	margin-bottom: -8px;
}

.form-error .form__label-error {
	display: inline;
}

.form-error .form__row,
.form-error.form__row {
	background-color: rgba(239, 107, 1, .1);
}

.field__err {
	margin: 8px 0;
}

.field__err:first-child {
	margin-top: 0;
}

.field__err:last-child {
	margin-bottom: 0;
}



/* --- success pill --- */
.success-pill {
	display: inline-block;
	vertical-align: middle;
	height: 40px;
	padding: 10px 30px 10px 50px;
	border-radius: 20px;
	background-color: rgba(82, 144, 37, .2);
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	color: #529025;
	cursor: default;
	position: relative;
}

.success-pill::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	width: 14px;
	height: 8px;
	margin: -6px 0 0 -3px;
	border-left: 3px solid;
	border-bottom: 3px solid;
	-ms-transform: rotate(-45deg) scale(.75);
	-webkit-transform: rotate(-45deg) scale(.75);
	transform: rotate(-45deg) scale(.75);
}



/* --- file input --- */
.file-input {
	cursor: default;
	font-size: 13px;
	line-height: 18px;
}

.file-input__values.full~.file-input__add {
	display: none
}

.file-input__add-link {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	padding-left: 30px;
	transition: .2s;
	font-weight: 600;
	color: #2c84b7;
}

.file-input__add-link-icon,
.file-input__value-icon {
	position: absolute;
	top: -2px;
	left: 0;
	width: 19px;
	height: 19px;
}

.file-input__add-link-icon.grey {
	color: #919191;
}

.file-input__input {
	display: none;
}

.no-touch .file-input__add-link:hover {
	color: #ef6b01;
}

.file-input__values:empty {
	display: none;
}

.file-input__values:not(:empty) {
	margin-bottom: 8px;
}

.file-input__values-item {
	margin-top: 8px;
}

.file-input__values-item:first-child {
	margin-top: 0px;
}

.file-input__value {
	font-size: 13px;
	line-height: 18px;
	padding-left: 30px;
	position: relative;
}

.file-input__value-icon {
	color: #2c84b7;
	transition: .2s;
}

.file-input__value-icon::before,
.file-input__value-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	border-top: 2px solid #e63c2f;
	margin: -1px 0 0 -8px;
	opacity: 0;
	transition: .2s;
}

.file-input__value-icon::before {
	-ms-transform: rotate(45deg) scale(0);
	-webkit-transform: rotate(45deg) scale(0);
	transform: rotate(45deg) scale(0);
}

.file-input__value-icon::after {
	-ms-transform: rotate(-45deg) scale(0);
	-webkit-transform: rotate(-45deg) scale(0);
	transform: rotate(-45deg) scale(0);
}

.file-input__value-icon-inner {
	width: 19px;
	height: 19px;
	transition: .2s;
	color: #2c84b7;
	transform: translate3d(0, 0, 0) scale(1);
}

.file-input__value-name {
	padding-right: 10px;
}

.file-input__value-remove {
	color: #2c84b7;
	cursor: pointer;
	transition: .2s;
}

.no-touch .file-input__value-remove:hover,
.file-input__value-remove:active {
	color: #e63c2f;
}

.no-touch .file-input__value-remove:hover~.file-input__value-icon::before,
.file-input__value-remove:active~.file-input__value-icon::before,
.no-touch .file-input__value-remove:hover~.file-input__value-icon::after,
.file-input__value-remove:active~.file-input__value-icon::after {
	opacity: 1;
}

.no-touch .file-input__value-remove:hover~.file-input__value-icon::before,
.file-input__value-remove:active~.file-input__value-icon::before {
	-ms-transform: rotate(45deg) scale(1);
	-webkit-transform: rotate(45deg) scale(1);
	transform: rotate(45deg) scale(1);
}

.no-touch .file-input__value-remove:hover~.file-input__value-icon::after,
.file-input__value-remove:active~.file-input__value-icon::after {
	-ms-transform: rotate(-45deg) scale(1);
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

.no-touch .file-input__value-remove:hover~.file-input__value-icon .file-input__value-icon-inner,
.file-input__value-remove:active~.file-input__value-icon .file-input__value-icon-inner {
	opacity: 0;
	transform: translate3d(0, 0, 0) scale(0);
}



/* --- check grid --- */
.check-grid {
	font-size: 0;
	margin: -5px;
}

.check-grid__item {
	display: inline-block;
	vertical-align: top;
	margin: 5px;
}

.check-grid--3 .check-grid__item {
	width: calc(33.33% - 10px);
}

.form__input .check-grid {
	margin-top: 0;
}



/* --- check btn --- */
.check-btn {
	display: inline-block;
	vertical-align: top;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.check-btn--block {
	display: block;
}

.check-btn--block .check-btn__txt {
	margin: 0 10px;
}

.check-btn__input {
	display: none;
}

.check-btn__visual {
	background-color: white;
	display: block;
	padding: 3px 0 2px;
	border: 1px solid #ef6b01;
	border-radius: 13px;
	font-size: 13px;
	line-height: 19px;
	transform: translate3d(0, 0, 0);
	cursor: pointer;
	transition: .2s;
	position: relative;
}

.check-btn__txt {
	display: block;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	margin: 0 20px;
	transition: .2s;
	color: #303030;
}

.check-btn__icon {
	position: absolute;
	left: 10px;
	top: 50%;
	margin: -5px 0 0;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 12px;
	height: 7px;
	opacity: 0;
	transition: .2s;
	-ms-transform: translateX(-10px) rotate(-45deg) scale(.0);
	-webkit-transform: translateX(-10px) rotate(-45deg) scale(.0);
	transform: translate3d(-10px, 0, 0) rotate(-45deg) scale(.0);
}

.no-touch .check-btn__visual:hover .check-btn__txt {
	color: #ef6b01;
}

.check-btn__input:checked~.check-btn__visual {
	background-color: #87b726;
	border-color: #87b726;
}

.check-btn__input:checked~.check-btn__visual .check-btn__txt {
	color: #fff;
	margin-left: 30px;
}

.check-btn__input:checked~.check-btn__visual .check-btn__icon {
	opacity: 1;
	-ms-transform: translateX(0px) rotate(-45deg) scale(1);
	-webkit-transform: translateX(0px) rotate(-45deg) scale(1);
	transform: translate3d(0px, 0, 0) rotate(-45deg) scale(1);
}

.no-touch .check-btn__input:checked~.check-btn__visual:hover {
	background-color: #b7d47d;
	border-color: #b7d47d;
}

.check-btn__input:disabled~.check-btn__visual {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	cursor: not-allowed;
	color: #919191;
}

.check-btn__input:disabled~.check-btn__visual .check-btn__txt {
	color: #919191;
}

.no-touch .check-btn__input:disabled~.check-btn__visual:hover {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	color: #303030;
}

.no-touch .check-btn__input:disabled~.check-btn__visual:hover .check-btn__txt {
	color: #919191;
}



/* --- checkbox row --- */
.checkbox-row {
	display: block;
	position: relative;
	padding-left: 32px;
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	cursor: pointer;
	transition: .2s;
}

.checkbox-row__input {
	display: none;
}

.checkbox-row__visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #c6c6c6;
	background-color: #fff;
	transition: .2s;
}

.checkbox-row__visual::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 3px;
	width: 12px;
	height: 7px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	opacity: 0;
	transition: .2s;
	-ms-transform: rotate(-45deg) scale(.0);
	-webkit-transform: rotate(-45deg) scale(.0);
	transform: rotate(-45deg) scale(.0);
}

.no-touch .checkbox-row:hover {
	color: #ef6b01;
}

.no-touch .checkbox-row:hover .checkbox-row__visual {
	border-color: #87b726;
}

.checkbox-row__input:checked~.checkbox-row__visual {
	border-color: #87b726;
	background-color: #87b726;
}

.checkbox-row__input:checked~.checkbox-row__visual::after {
	opacity: 1;
	-ms-transform: rotate(-45deg) scale(1);
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

.checkbox-row--small {
	color: #919191;
	font-size: 13px;
	line-height: 21px;
}


/* --- selects --- */
.select {
	display: inline-block;
	height: 40px;
	background: transparent;
	border: none;
	border-bottom: 2px solid #e2e2e2;
	border-radius: 0;
	padding: 7px 20px 8px 0;
	box-shadow: none;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	cursor: pointer;
	position: relative;
	text-align: left;
	transition: .2s;
	outline: none;
	vertical-align: top;
	max-width: 100%;
}

.select select {
	display: none;
}

/*.touch .select select{display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; padding: 0; width: 100%; height: 100%; z-index: 10;}*/
.touch .select option {
	visibility: hidden;
	pointer-events: none;
}

.select.placeholder-state .select-value {
	color: #b9b9b9;
}

.select-chevron.select-chevron {
	position: absolute;
	right: 0px;
	top: 14px;
	color: #919191;
	border-bottom: 2px solid;
	border-left: 2px solid;
	width: 7px;
	height: 7px;
	transition: .2s;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.no-touch .select:hover {
	border-color: #919191;
}

.select.open.open {
	border-color: #919191;
	z-index: 20;
}

.select.open .select-chevron.select-chevron {
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.form-error .select {
	border-color: rgba(230, 60, 47, .3);
}

.form-error .select:hover,
.form-error .select.open {
	border-color: rgba(230, 60, 47, .6);
}

.select-label-txt {
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}

.select-value {
	pointer-events: none;
	white-space: nowrap;
	max-width: 100%;
	text-overflow: ellipsis;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	color: #303030;
	transition: .2s;
}

.select.placeholder-state .select-value {
	opacity: 0;
	transform: translateY(10px);
}

.select.placeholder-state li.active {
	color: #303030;
	cursor: pointer;
	font-weight: 400;
}

.select-placeholder {
	color: #b9b9b9;
	transition: .2s;
	position: absolute;
	top: 7px;
	bottom: 8px;
	left: 0;
	right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.select:not(.placeholder-state) .select-placeholder {
	opacity: 0;
	transform: translateY(-10px);
}

.select-list {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 100%;
	background-color: #fff;
	margin-top: 2px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, .3);
	border-radius: 0 0 5px 5px;
	max-height: 50vh;
	width: inherit;
	padding: 10px 0;
	transition: .2s;
	opacity: 0;
	z-index: 3;
	overflow: auto;
	-ms-transform-origin: center top;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	cursor: default;
	-ms-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.select-list li {
	padding: 5px 20px;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	color: #303030;
	cursor: pointer;
	transition: .2s;
}

.no-touch .select-list li:hover,
.no-touch .select-list li:focus {
	color: #ef6b01;
	outline: none;
	background-color: #f0f0f0;
}

.select-list li.active,
.select-list li.active:hover {
	color: #303030;
	font-weight: 600;
	cursor: default;
}

.select-list li.disabled,
.select-list li.disabled:hover {
	color: #919191;
	cursor: default;
	pointer-events: none;
	text-decoration: line-through;
}

.select.open .select-list,
.select-list-owner.open .select-list {
	-ms-transform: scaleY(1);
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
}

.select-list-owner {
	position: relative;
}

.select-list-owner .select-list {
	margin-top: 0;
}

.autocomplete-suggestions {
	background-color: #fff;
	margin-top: 2px;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, .3);
	border-radius: 0 0 5px 5px;
	max-height: 50vh;
	width: inherit;
	padding: 10px 0;
	transition: .2s;
	z-index: 20;
	overflow: auto;
	cursor: default;
}

.autocomplete-suggestion {
	padding: 5px 20px;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	color: #303030;
	cursor: pointer;
	transition: .2s;
}

.autocomplete-no-suggestion {
	padding: 5px 20px;
}

.autocomplete-suggestions strong {
	font-weight: 600;
	font-style: normal;
	color: #303030;
	transition: .2s;
}

.autocomplete-selected {
	color: #ef6b01;
	outline: none;
	background-color: #f0f0f0;
}

.autocomplete-selected strong {
	color: #ef6b01;
}

.autocomplete-group {
	padding: 5px 20px;
}

.autocomplete-group strong {
	font-weight: 600;
	color: #303030;
	display: block;
	border-bottom: 1px solid #e2e2e2;
}

.text-guide .select-list li {
	padding-left: 20px;
	margin: 0;
}

.text-guide .select-list li::before {
	display: none;
}

.select--block {
	display: block;
	width: 100%;
}

.select--multiple .select-list li {
	padding: 6px 20px 6px 52px;
	position: relative;
	background: transparent;
	cursor: pointer;
	font-size: 15px;
	line-height: 20px;
}

.select--multiple .select-list li::before,
.select--multiple .select-list li::after {
	content: '';
	position: absolute;
	transition: .2s;
}

.select--multiple .select-list li::before {
	left: 20px;
	top: 6px;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #c6c6c6;
	background-color: #fff;
}

.select--multiple .select-list li::after {
	top: 11px;
	left: 24px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 12px;
	height: 7px;
	opacity: 0;
	-ms-transform: rotate(-45deg) scale(.0);
	-webkit-transform: rotate(-45deg) scale(.0);
	transform: rotate(-45deg) scale(.0);
}

.select--multiple .select-list li.active {
	font-weight: 400;
	background: transparent;
	color: #303030;
	cursor: pointer;
}

.select--multiple .select-list li:focus {
	background: transparent;
}

.select--multiple .select-list li.disabled:focus {
	color: #919191;
}

.select--multiple .select-list li.active::before {
	border-color: #87b726;
	background-color: #87b726;
}

.select--multiple .select-list li.active::after {
	opacity: 1;
	-ms-transform: rotate(-45deg) scale(1);
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

.no-touch .select--multiple .select-list li:hover {
	background: transparent;
}

.no-touch .select--multiple .select-list li:not(.disabled):hover {
	color: #ef6b01;
}

.no-touch .select--multiple .select-list li:not(.disabled):hover::before {
	border-color: #87b726;
}

.no-touch .select--multiple .select-list li.active:hover::before {
	opacity: .6;
}



/* --- slick slider (lib) --- */
.slick-slider {
	position: relative;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	webkit-touch-callout: none;
	ms-touch-action: pan-y;
	touch-action: pan-y;
	webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	webkit-transform: translate3d(0, 0, 0);
	moz-transform: translate3d(0, 0, 0);
	ms-transform: translate3d(0, 0, 0);
	o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
	outline: none;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}



/* --- slick slider custom --- */
.slick-arrow {
	font-size: 0;
	color: transparent;
	cursor: pointer;
	transition: .6s;
	position: absolute;
	outline: none;
	padding: 0;
	z-index: 10;
}

.round-arrows-alone .slick-arrow {
	width: 40px;
	height: 40px;
	border: 1px solid #565555;
	border-radius: 50%;
	opacity: .5;
	top: 50%;
	margin-top: -20px;
}

.round-arrows-alone .slick-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	border-left: 3px solid #565555;
	border-bottom: 3px solid #565555;
}

.round-arrows-alone .slick-prev {
	left: 0;
}

.round-arrows-alone .slick-prev::after {
	-ms-transform: rotate(45deg) scale(.85);
	-webkit-transform: rotate(45deg) scale(.85);
	transform: rotate(45deg) scale(.85);
	margin: -8px 0 0 -5px;
}

.round-arrows-alone .slick-next {
	right: 0;
}

.round-arrows-alone .slick-next::after {
	-ms-transform: rotate(-135deg) scale(.85);
	-webkit-transform: rotate(-135deg) scale(.85);
	transform: rotate(-135deg) scale(.85);
	margin: -8px 0 0 -11px;
}

.no-touch .round-arrows-alone .slick-arrow:hover {
	opacity: 1;
}

.round-arrows-lg .slick-arrow {
	top: 0;
	bottom: 0;
	width: 140px;
	transition: .2s;
	transform: translate3d(0, 0, 0);
	opacity: 0.6;
}

.round-arrows-lg .slick-arrow::before,
.round-arrows-lg .slick-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
}

.round-arrows-lg .slick-arrow::before {
	width: 48px;
	height: 48px;
	margin: -24px 0 0 -24px;
	background-color: #fff;
	border-radius: 50%;
}

.round-arrows-lg .slick-arrow::after {
	width: 12px;
	height: 12px;
	border-left: 2px solid #303030;
	border-bottom: 2px solid #303030;
}

.no-touch .round-arrows-lg .slick-arrow:hover {
	opacity: 1;
}

.round-arrows-lg .slick-prev {
	left: 0;
}

.round-arrows-lg .slick-prev::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	margin: -6px 0 0 -4px;
}

.round-arrows-lg .slick-next {
	right: 0;
}

.round-arrows-lg .slick-next::after {
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: translate3d(0, 0, 0) rotate(-135deg);
	margin: -6px 0 0 -8px;
}

.no-touch .round-arrows-lg .slick-arrow:hover {
	border-color: rgba(85, 86, 90, 1);
}


.sq-arrows .slick-arrow {
	top: 0;
	bottom: 0;
	width: 30px;
	opacity: .5;
}

.sq-arrows .slick-arrow::before,
.sq-arrows .slick-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
}

.sq-arrows .slick-arrow::before {
	width: 30px;
	height: 40px;
	margin: -20px 0 0 -15px;
	background-color: #1b1b1b;
}

.sq-arrows .slick-arrow::after {
	width: 12px;
	height: 12px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.sq-arrows .slick-prev {
	left: 0;
}

.sq-arrows .slick-prev::before {
	border-radius: 0 6px 6px 0;
}

.sq-arrows .slick-prev::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: -6px 0 0 -4px;
}

.sq-arrows .slick-next {
	right: 0%;
}

.sq-arrows .slick-next::before {
	border-radius: 6px 0 0 6px;
}

.sq-arrows .slick-next::after {
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	margin: -6px 0 0 -10px;
}

.no-touch .sq-arrows .slick-arrow:hover {
	opacity: 1;
}


.transparent-arrows .slick-arrow {
	top: 0;
	bottom: 0;
	opacity: .6;
	width: 60px;
}

.transparent-arrows .slick-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-left: 2px solid #55565a;
	border-bottom: 2px solid #55565a;
}

.transparent-arrows .slick-prev {
	left: 0;
}

.transparent-arrows .slick-prev::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: -8px 0 0 -5px;
}

.transparent-arrows .slick-next {
	right: 0;
}

.transparent-arrows .slick-next::after {
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	margin: -8px 0 0 -11px;
}

.no-touch .transparent-arrows .slick-arrow:hover {
	opacity: 1;
}

.round-dots .slick-dots {
	position: absolute;
	bottom: 15px;
	right: 0;
	left: 0;
	text-align: center;
	font-size: 0;
	z-index: 10;
	transform: translate3d(0, 0, 0);
}

.round-dots .slick-dots li::before {
	display: none;
}

.round-dots .slick-dots li {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.round-dots .slick-dots button {
	font-size: 0;
	padding: 0;
	display: inline-block;
	width: 15px;
	height: 15px;
	cursor: pointer;
	position: relative;
}

.round-dots .slick-dots button::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
	transform: translate3d(0, 0, 0) scale(1.1);
	transition: .15s;
}

.round-dots .slick-dots .slick-active button::before {
	background-color: #ef6b01;
}

.no-touch .round-dots .slick-dots button:hover::before {
	-ms-transform: scale(2);
	-webkit-transform: scale(2);
	transform: translate3d(0, 0, 0) scale(2);
}

.gray-dots .slick-dots button::before {
	background-color: #ababab;
}

.round-dots--dark .slick-dots button::before {
	background-color: #c6c6c6;
}



/* --- gallery floor --- */
/*.gallery-floor{margin: 0 -40px;}*/



/* --- gallery slider --- */
.gallery-slider {
	position: relative;
	padding-bottom: 35px;
}

.gallery-slider.single-mode {
	padding-bottom: 0;
}

.gallery-slider.single-mode .gallery-slide {
	display: block;
	width: auto;
	margin: 0 195px;
}

.gallery-slider .slick-dots {
	bottom: 0;
}

.gallery-slider .slick-arrow {
	width: 191px;
	background-color: rgba(255, 255, 255, .7);
	bottom: 34.5px;
	opacity: 1;
}

.gallery-slider .slick-arrow::before,
.gallery-slider .slick-arrow::after {
	transition: .2s;
	opacity: .6;
}

.no-touch .gallery-slider .slick-arrow:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, .85);
}

.no-touch .gallery-slider .slick-arrow:hover::before,
.no-touch .gallery-slider .slick-arrow:hover::after {
	opacity: 1;
}

.gallery-slider--vertical .gallery-slide__img::before {
	content: "";
	display: block;
	padding-top: 140%;
}

.gallery-slider--vertical .gallery-slide__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* --- gallery slide --- */
.gallery-slide {
	padding: 0 5px;
	position: relative;
	font-size: 0;
	height: initial !important;
}

.gallery-slide::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.gallery-slide__img {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	position: relative;
}

.gallery-slide img {
	display: block;
	width: 100%;
}



/* --- slide-title-note --- */
.slide-title-note {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 55px 20px 25px;
	background-image: linear-gradient(to top, rgba(48, 48, 48, 1), rgba(48, 48, 48, 0));
	color: #fff;
	text-align: center;
}


/* --- images-floor --- */
.image-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.image-grid__item {
	width: 32%;
	position: relative;
	margin-bottom: 2%
}

.image-grid__item::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.image-grid__item-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/* --- card slider --- */
.card-slider {
	margin: -10px;
	position: relative;
	max-width: 530px;
}

.card-slider__slide {
	padding: 10px;
}

.card-slider .slick-arrow {
	bottom: 10px;
	top: auto;
	left: auto;
}

.card-slider .slick-prev {
	right: 170px;
}

.card-slider .slick-next {
	right: 120px;
}

.card-slider .card-slide__txt-cell {
	padding-bottom: 50px;
}



/* --- card slide --- */
.card-slide {
	display: table;
	width: 100%;
	table-layout: fixed;
	text-align: left;
	max-width: 510px;
}

.card-slide__img-cell,
.card-slide__txt-cell {
	display: table-cell;
	vertical-align: top;
}

.card-slide__txt-cell {
	width: 230px;
	padding-left: 30px;
}

.card-slide__img-card {
	border-radius: 10px;
	padding-top: 71.42%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, .3);
}

.card-slide__txt {
	font-size: 17px;
	line-height: 25px;
}



/* --- logo slider --- */
.logo-slider {
	margin: 60px -40px;
	padding: 0 30px;
}

.logo-slide {
	padding: 0 10px;
	display: inline-block;
	vertical-align: top;
	transition: .2s;
	text-align: center;
}

.logo-slide__logo {
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	max-width: 100px;
	height: 50px;
	text-align: center;
}

.logo-slide__logo::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.logo-slide__logo img {
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	max-width: 100%;
	max-height: 100%;
}

.no-touch a.logo-slide:hover {
	opacity: .7;
}



/* --- fixed nav --- */
.fixed-nav {
	position: fixed;
	left: 50%;
	bottom: 50px;
	margin-left: 630px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .2s;
}

.fixed-nav__item+.fixed-nav__item {
	margin-top: 10px;
}

.page-scrolled .fixed-nav {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}



/* --- btn up --- */
.btn-up {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background-color: #000;
	position: relative;
	vertical-align: top;
	opacity: .5;
	transition: .2s;
	cursor: pointer;
}

.btn-up::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin: -3px 0 0 -6px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.no-touch .btn-up:hover {
	opacity: .7;
}

.no-touch .btn-up:active,
.btn-up:active {
	opacity: 1;
	transition: .1s;
}



/* --- video block --- */
.video-block {
	position: relative;
	font-size: 0;
	line-height: 0;
	padding-top: 56.25%;
}

.video-block iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}



/* --- icons --- */
.svg-icon {
	display: inline-block;
	vertical-align: middle;
}

.svg-icon--logo {
	width: 160px;
	height: 38px;
}

.svg-icon--user {
	width: 10px;
	height: 10px;
}

.svg-icon--map {
	width: 39px;
	height: 50px;
}

.svg-icon--search {
	width: 14px;
	height: 14px;
}

.svg-icon--20 {
	width: 20px;
	height: 20px;
}

.svg-icon--30 {
	width: 30px;
	height: 30px;
}

.svg-icon--40 {
	width: 40px;
	height: 40px;
}

.icon {
	display: inline-block;
	vertical-align: middle;
	background: url(/local/images/sprite.png) no-repeat scroll transparent;
	transition: inherit;
}

.icon-group {
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
	line-height: 0;
	position: relative;
	transition: inherit;
}

.icon-group .icon--reflex,
.icon-group .icon--second {
	position: absolute;
	top: 0;
	left: 0;
}

.icon--reflex {
	opacity: 0;
}

.no-touch .icon-reflex-parent:hover .icon {
	opacity: 0;
}

.no-touch .icon-reflex-parent:hover .icon--reflex {
	opacity: 1;
}

.icon--conus {
	background-position: 0px 0px;
	width: 16px;
	height: 16px;
}

.icon--ava {
	background-position: 0px -24px;
	width: 80px;
	height: 80px;
}


@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 2/1),
(min-device-pixel-ratio: 1.5),
(min-resolution: 192dpi),
(min-resolution: 2dppx) {
	.icon {
		background-image: url(/local/images/sprite-x2.png);
		background-size: 240px 240px;
	}

	.price-stamp {
		background-image: url(/local/images/price-stamp.png);
	}

	ul.f-style-list>li::before {
		background-image: url(/local/images/icons/list-icon-flower-x2.png);
	}

	ul.f-style-list--lg>li::before,
	ol.f-style-list--lg>li::before {
		background-image: url(/local/images/icons/list-icon-flower-lg-x2.png);
	}
}



/* --- tools --- */
.ava::after {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.fc:first-child,
.flc:first-child {
	margin-top: 0;
}

.jc:last-child,
.flc:last-child {
	margin-bottom: 0;
}

.h100p {
	height: 100%;
}

.fs0 {
	font-size: 0;
}

.hidden {
	display: none;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

.clearfix::after {
	content: '';
	display: table;
	clear: both;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

.visible {
	display: block;
}

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

.visible-inline {
	display: inline;
}

.visible-open-parent .visible-open,
.visible-open-parent .visible-open-inline {
	display: none;
}

.visible-open-parent.open .visible-open {
	display: block;
}

.visible-open-parent.open .visible-open-inline {
	display: inline;
}

.visible-open-parent .hidden-open {
	display: block;
}

.visible-open-parent .hidden-open-inline {
	display: inline;
}

.visible-open-parent.open .hidden-open-inline,
.visible-open-parent.open .hidden-open {
	display: none;
}

.push-up {
	margin-top: -40px;
}

.push-down {
	margin-bottom: -40px;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}



.text-guide .accordions dt::before {
	top: 6px;
}

.text-guide .accordions dt::after {
	top: 15px;
}

.text-guide .accordions dd {
	margin: 0;
}

.accordions .cert__txt {
	max-width: 150px;
	margin-right: 140px;
}

.accordions .cert {
	border-width: 2px;
}

.accordions .cert .h3 {
	font-size: 24px;
	line-height: 1;
}

.accordions dt .black {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.accordions--wide {
	margin-left: -40px;
	margin-right: -40px;
	width: calc(100 + 80px);
}

.accordions--wide dt,
.accordions--wide dd {
	padding-left: 40px;
	padding-right: 40px;
}

.accordions--wide dt {
	padding-left: 80px;
}

.accordions--wide dt::before {
	left: 40px;
}

.accordions--wide dt::after {
	left: 50px;
}

.catalog {
	margin: 64px 0;
}

.catalog__wrapper {
	display: flex;
}

.catalog__aside {
	width: 260px;
	flex-shrink: 0;
	margin-right: 40px;
}

.catalog__main {
	flex-grow: 1;
}

.catalog__grid {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
	justify-content: center;
}

.catalog__cell {
	width: 33.33%;
	padding: 10px;
	max-width: 300px;
}

.catalog-filter {
	position: sticky;
	top: 10px;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 27px 20px 30px;
}

.catalog-filter__header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.catalog-filter__title {
	margin-right: 15px;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #303030;
}

.catalog-filter__reset:hover {
	opacity: 0.7;
}

.catalog-filter__reset {
	transition-duration: 300ms;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #3185B5;
}

.catalog-filter .check-btn__input:not(:checked)~.check-btn__visual {
	border-color: #C6C6C6;
}

.catalog-filter__close::after,
.catalog-filter__close::before {
	content: '';
	width: 16px;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, 50%) rotate(-45deg);
}

.catalog-filter__close::before {
	transform: translate(-50%, 50%) rotate(45deg);
}

.catalog-filter__close {
	display: none;
	opacity: 0.7;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
}

.page-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	background-color: #000;
	opacity: .5;
}

.catalog__filter-toggle img {
	width: 28px;
	height: 28px;
}

.catalog__filter-toggle {
	display: none;
	justify-content: center;
	align-items: center;
}

.catalog__toolbar-toggles {
	margin-right: auto;
}

.catalog__toolbar {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	min-height: 10px;
}

.catalog__toolbar-toggle.catalog__toolbar-toggle::before {
	display: none;
}

.catalog__toolbar-toggle.catalog__toolbar-toggle {
	background-color: transparent;
	box-shadow: none;
	color: #919191;
}

.catalog__toolbar-toggle.catalog__toolbar-toggle-active {
	cursor: default;
}

.catalog__toolbar-toggle.catalog__toolbar-toggle-active,
.no-touch .catalog__toolbar-toggle.catalog__toolbar-toggle:hover {
	color: #EF6B01;
	background-color: #fff;
}

.catalog-item {
	background: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition-duration: .3s;
	padding-bottom: 18px;
	will-change: margin;
}

.catalog-item__visual {
	padding-top: 71.43%;
	width: 100%;
	position: relative;
}

.catalog-item__visual img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.catalog-item__label-list {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.catalog-item__label {
	margin-bottom: 5px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 10px;
	line-height: 21px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0 10px;
	filter: drop-shadow(0px 2px 4px rgba(48, 48, 48, 0.16));
}

.catalog-item__content {
	padding: 17px 20px 0;
	min-height: 130px;
	display: flex;
	flex-direction: column;
}

.catalog-item__caption a {
	color: inherit;
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	margin-right: 20px;
	max-height: 42px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/*! autoprefixer: off */
	-webkit-box-orient: vertical;
	/*! autoprefixer: on */
	overflow: hidden;
}

.catalog-item__caption {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
}

.catalog-item__text {
	margin-top: 0;
	max-height: 36px;
	font-size: 13px;
	line-height: 18px;
	color: #919191;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/*! autoprefixer: off */
	-webkit-box-orient: vertical;
	/*! autoprefixer: on */
	overflow: hidden;
}

.catalog-item__info {
	padding-top: 10px;
	margin-top: auto;
}

.catalog-item__price {
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
}

.catalog-item__action .btn {
	margin-top: 18px;
}

.catalog-item__action {
	display: flex;
	height: 0;
	padding: 0 20px;
	flex-shrink: 0;
	transition-duration: 300ms;
	overflow: hidden;
	will-change: height;
}

.no-touch .catalog-item:hover {
	box-shadow: 0px 4px 15px rgba(48, 48, 48, 0.12);
}

.no-touch .catalog-item--action:hover {
	margin-bottom: -64px;
	z-index: 5;
}

.no-touch .catalog-item--action:hover .catalog-item__action {
	height: 64px;
}

.catalog-item--bd {
	padding-bottom: 0;
}

.catalog-item--bd .catalog-item__content {
	border: 1px solid #F0F0F0;
	border-top: none;
	padding-bottom: 18px;
	border-radius: 0 0 8px 8px;
	min-height: 148px;
}

.main-banner {
	margin-top: 20px;
	margin-bottom: 40px;
}

.main-banner__grid {
	flex-wrap: wrap;
	display: flex;
	margin: -10px;
}

.main-banner__cell {
	padding: 10px;
}

.main-banner__cell--main {
	width: 75%;
}

.main-banner__cell--aside {
	width: 25%;
}

.price-map-block__date {
	margin-bottom: 13px;
	font-size: 13px;
	line-height: 16px;
	color: #929292;
}

.ios .download-soft__item--apple {
	display: flex;
}

.bx-android .download-soft__item--android {
	display: flex;
}

.download-soft__item {
	display: none;
	position: relative;
	background-color: #fff;
	padding: 15px 16px;
	border-radius: 8px;
}

.download-soft__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.download-soft__icon {
	width: 48px;
	height: 48px;
	margin-right: 16px;
}

.download-soft__name {
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: #EF6B01;
	margin-bottom: 3px;
}

.download-soft__text {
	font-size: 13px;
	line-height: 16px;
	color: #929292;
}


.dropdown-owner--shadow.open {
	filter: drop-shadow(0px 0px 6px rgba(48, 48, 48, 0.16));
}

.dropdown-owner--shadow {
	display: inline-block;
	vertical-align: middle;
	border-radius: 20px 20px 0 0;
	transition-duration: .3s;
}

.dropdown-owner--shadow .page-header-am__link::before {
	display: none;
}

.dropdown-owner--shadow .page-header-am__link {
	padding-left: 12px;
	padding-right: 12px;
	background-color: #fff;
	min-width: 42px;
	text-align: center;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.dropdown-owner--shadow .dropdown {
	box-shadow: none;
	padding: 0;
	border-radius: 0 0 20px 20px;
	overflow: hidden;
}

.dropdown-toggle--bg {
	background: #FEF1E6;
	border-radius: 20px;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #EF6B01;
	padding: 13px 20px 14px;
	display: inline-block;
	vertical-align: middle;
}

.dropdown-toggle--bg.open {
	background-color: #fff;
	border-radius: 20px 20px 0 0;
}

.dropdown-owner--download .dropdown {
	padding-bottom: 15px;
}


.no-touch .download-item:hover .download-item__name {
	color: #EF6B01;
}

.download-item {
	display: flex;
	padding: 6px 20px;
	position: relative;
}

.download-item__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.download-item__icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.download-item__text {
	font-size: 12px;
	line-height: 14px;
	color: #929292;
	margin-bottom: 4px;
}

.download-item__name {
	transition-duration: .3s;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: #303030;
}


.page-header-am__item--download {
	z-index: 999;
}


.product-detail {
	display: flex;
	margin-bottom: 70px;
}

.product-detail__visual img {
	width: 100%;
	display: block;
	border-radius: 8px;
	overflow: hidden;
}

.product-detail__visual {
	width: 50%;
	max-width: 540px;
	margin-right: 40px;
	flex-shrink: 0;
}

.product-detail__content {
	flex-grow: 1;
	margin-top: 18px;
}

.product-detail__title span {
	color: #929292;
	white-space: nowrap;
}

.product-detail__title {
	margin-bottom: 12px;
}

.product-detail__text {
	font-size: 15px;
	line-height: 23px;
	color: #929292;
	margin-top: 0;
	margin-bottom: 22px;
}

.product-detail__props {
	margin-bottom: 10px;
}

.product-detail__props-caption {
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	margin-bottom: 8px;
}

.product-detail__props-list {
	font-size: 15px;
	line-height: 24px;
}

.product-detail__price {
	font-size: 24px;
	font-weight: 600;
}

.product-detail__action {
	margin-top: 22px;
}


.product-carousel {
	margin-bottom: 47px;
}

.product-carousel__header {
	margin-bottom: 35px;
	display: flex;
}

.product-carousel__title {
	font-weight: 600;
	font-size: 26px;
	line-height: 26px;
}

.product-carousel__list:not(.slick-initialized) {
	display: flex;
	overflow: hidden;
}

.product-carousel__list:not(.slick-initialized) .product-carousel__item {
	width: 25%;
	flex-shrink: 0;
}

.product-carousel__list {
	margin: -10px;
	margin-bottom: -15px;
}

.product-carousel__list.round-dots .slick-dots {
	position: static;
	margin-top: -10px;
}

.product-carousel__list.round-dots .slick-dots li:not(.slick-active) button::before {
	background-color: #ddd;
	/*filter: drop-shadow(0px 0px 3px rgba(48, 48, 48, 0.2));*/
}

.product-carousel__list.round-arrows-lg .slick-arrow::before {
	filter: drop-shadow(0px 4px 10px rgba(48, 48, 48, 0.12));
}

.no-touch .product-carousel__list.round-arrows-lg .slick-arrow:hover {
	opacity: 0.8;
}

.product-carousel__list.round-arrows-lg .slick-arrow {
	width: 48px;
	opacity: 1;
	height: 48px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.product-carousel__list.round-arrows-lg .slick-next {
	right: -13px;
}

.product-carousel__list.round-arrows-lg .slick-prev {
	left: -13px;
}

.product-carousel__item .catalog-item {
	max-width: 280px;
	margin: 0 auto;
}

.product-carousel__item {
	padding: 10px;
	padding-bottom: 15px;
}


.popup-block {
	visibility: hidden;
	opacity: 0;
	transition-duration: 400ms;
	position: relative;
	z-index: 1000;
}

.popup-block__overley {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
}

.no-touch .popup-block__wrapper,
body.no-touch.open-popup-azs {
	padding-right: 17px;
}

body.open-popup-azs {
	height: 100vh;
	overflow-y: hidden;
}

.open-popup-azs .popup-block {
	visibility: visible;
	opacity: 1;
}

.popup-block__wrapper {
	position: fixed;
	background: rgba(48, 48, 48, .4);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.no-touch .popup-block__close:hover {
	opacity: 0.8;
}

.popup-block__close {
	transition-duration: 300ms;
	position: absolute;
	top: -20px;
	right: 20px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.popup-block__close::before,
.popup-block__close::after {
	content: '';
	width: 20px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-block__close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.popup-block__body {
	max-height: 100%;
	width: 100%;
	position: relative;
	z-index: 10;
}

.popup-block__body-wrapper {
	overflow-y: auto;
	background-color: #fff;
	border-radius: 8px;
}

.popup-block__body .big-map {
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	margin: 0;
	border: none;
	min-height: 0;
	height: 580px;
	max-height: 85vh;
	display: flex;
	flex-wrap: wrap;
}

.popup-block__body .big-map__aside {
	min-height: 0;
	width: 33%;
}

.popup-block__body .big-map__map {
	width: 67%;
	padding: 15px;
	padding-left: 0;
	display: flex;
	position: static;
	border: none;
}

.popup-block__body .big-map__map>ymaps {
	height: auto !important;
	position: static;
	border-radius: 8px;
	overflow: hidden;
}

.popup-block__body .filter-block__form {
	max-width: none;
	margin: 0;
}

.popup-block__body .filter-block {
	padding: 10px 30px 0;
	box-shadow: none;
}

.popup-block__body .form__caption {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 21px;
}

.popup-block__body .form__row.form__row {
	padding: 0;
	padding-bottom: 10px;
	padding-top: 10px;
	width: 100%;
	margin: 0;
}

.popup-block__body .form__label {
	margin-bottom: 0;
}

.popup-block__body .big-map__addresses {
	margin-top: 13px;
	overflow-y: auto;
	max-height: 345px;
	padding-right: 4px;
}

.popup-block__body .big-map__addresses::-webkit-scrollbar {
	width: 6px;
	background: none;
}

.popup-block__body .big-map__addresses::-webkit-scrollbar-thumb {
	width: 6px;
	border-radius: 4px;
	background-color: #8d8d8d;
}

.popup-block__body .big-tip__services {
	max-width: none;
}


.address-block {}

.address-block__row {
	margin-bottom: 21px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.address-block__title {
	font-weight: 600;
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 2px;
	cursor: pointer;
	transition-duration: 300ms;
}

.no-touch .address-block__title:hover {
	color: #ef6b01;
}

.address-block__subtitle {
	font-style: italic;
	font-size: 13px;
	line-height: 18px;
	color: #929292;
}

.page-title-block__link {
	color: #2c84b7;
}


.fade-block {
	position: relative;
}

.fade-block:not(.open-fade) .fade-block__overlay,
.fade-block:not(.open-fade) .fade-block__content {
	display: none;
}

.fade-block__overlay {
	opacity: 1;
	position: fixed;
	height: 100%;
}

.fade-block__toggler {
	display: inline-block;
	cursor: pointer;
}

.fade-block__toggler--close {
	position: relative;
	width: 20px;
	height: 20px;
}

.fade-block__toggler--close::before,
.fade-block__toggler--close::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.fade-block__toggler--close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.fade-block__close {
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.fade-block__close::before {
	width: 26px;
	height: 3px;
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.fade-block__close::after {
	width: 26px;
	height: 3px;
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.fade-block__close::before,
.fade-block__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.fade-block__close::after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.fade-block__content {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 110;
	border-radius: 30px;
	box-sizing: border-box;
	width: 400px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transform: translate(-50%, -50%);
}

.fade-block--popup .fade-block__content {
	position: fixed;
	z-index: 100;
	max-width: calc(100% - 30px);
	max-height: calc(100% - 30px);
}

.fade-block--popup .fade-block__toggler--close {
	position: absolute;
	top: 30px;
	right: 30px;
}


.prediction {
	margin: 40px auto;
}

.prediction__header {
	margin-bottom: 20px;
}

.prediction__title {
	font-weight: 600;
	font-size: 36px;
	line-height: 140%;
}

.prediction__body::after {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(62, 62, 62, 0.4);
	backdrop-filter: blur(3px);
	border-radius: 45px;
	-webkit-backdrop-filter: blur(3px);
	content: '';
}

.prediction__body {
	position: relative;
	min-height: 608px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 45px;
	padding: 80px 40px;
	overflow: hidden;
}

.prediction__caption {
	position: relative;
	z-index: 10;
	font-weight: 600;
	font-size: 44px;
	line-height: 140%;
	text-align: center;
	color: #FFFFFF;
}

.prediction__action {
	position: relative;
	z-index: 10;
	padding-top: 30px;
	margin-top: auto;
}

.prediction__action .btn {
	width: 100%;
	height: 53px;
	font-weight: 500;
	font-size: 18px;
	line-height: 125.19%;
	border-radius: 90px;
}

.prediction__body--phrase {
	justify-content: center;
}

.prediction__body--phrase .prediction__action {
	margin-top: 0;
	padding-top: 54px;
}

.prediction__phrase {
	position: relative;
	z-index: 10;
	max-width: 688px;
}

.prediction__phrase blockquote {
	font-weight: 600;
	font-size: 26px;
	line-height: 140%;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
}

.prediction__phrase cite {
	display: block;
	margin-top: 32px;
	text-align: right;
	font-size: 16px;
	line-height: 140%;
	color: #FFFFFF;
}



.block-video__wrapper {
	position: relative;
	overflow: hidden;
	background-color: #ddd;
	width: 100%;
}

.block-video__wrapper.play .block-video__video {
	z-index: 10;
}

.block-video__wrapper.play .block-video__play {
	opacity: 0;
}

.block-video__wrapper.play:hover .block-video__play {
	opacity: 0.7;
}

.block-video__wrapper.play .block-video__play::before {
	display: block;
}

.block-video__wrapper.play .block-video__play::after {
	display: none;
}

.block-video__video {
	display: block;
	max-width: 100%;
	position: relative;
	z-index: 5;
}

.block-video__play {
	border: 8px solid rgba(0, 0, 0, 0.5);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 15;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: 300ms;
}

.block-video__play:hover {
	opacity: 0.7;
}

.block-video__play::before {
	display: none;
	content: '';
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border-left: 8px solid rgba(0, 0, 0, 0.5);
	border-right: 8px solid rgba(0, 0, 0, 0.5);
}

.block-video__play::after {
	margin-left: 6px;
	content: '';
	display: block;
	border-left: 28px solid rgba(0, 0, 0, 0.5);
	border-top: 21px solid transparent;
	border-bottom: 21px solid transparent;
	border-radius: 3px;
}

.block-video__play--white {
	border: 8px solid rgba(255, 255, 255, 0.2);
}

.block-video__play--white::after {
	border-left: 28px solid rgba(255, 255, 255, 0.2);
}

.block-video__play--white::before {
	border-left: 8px solid rgba(255, 255, 255, 0.2);
	border-right: 8px solid rgba(255, 255, 255, 0.2);
}

.btn-row--center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.btn--wide {
	min-width: 250px;
}


.block-floor--reviews {
	padding: 50px 0 0;
}

.reviews-slider,
.collage-slider {
	overflow: hidden;
	padding-bottom: 50px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: -20px;
	margin-right: -20px;
}

.reviews-slider .slick-arrow.slick-disabled,
.collage-slider .slick-arrow.slick-disabled {
	display: none !important;
}

.reviews-slider .slick-arrow.slick-arrow:hover,
.collage-slider .slick-arrow.slick-arrow:hover {
	opacity: 0.8;
}

.reviews-slider .slick-arrow.slick-arrow,
.collage-slider .slick-arrow.slick-arrow {
	margin-bottom: 50px;
	width: 48px;
	opacity: 1;
}

.reviews-slider .slick-arrow::before,
.collage-slider .slick-arrow::before {
	border: 1px solid #D5D5D5;
}

.reviews-slider .slick-list,
.collage-slider .slick-list {
	padding-right: 25px;
	padding-bottom: 25px;
	margin-left: -20px;
	margin-right: -50px;
}

.reviews-slider .slick-track {
	display: flex;
}

.reviews-slide.reviews-slide {
	padding-left: 20px;
	padding-right: 25px;
	height: auto;
	display: flex;
}

.review-item {
	width: 100%;
	border: 2px solid #f0f0f0;
	border-radius: 10px;
	padding: 30px 40px;
	background-color: #fff;
	background-image: url(/local/images/bg__flower.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: 0 center;
	box-shadow: 10px 10px 15px rgba(213, 213, 213, 0.11);
}

.review-item__header {
	display: flex;
	align-items: center;
	background-image: url(/local/images/icon__quote.svg);
	background-repeat: no-repeat;
	background-position: 100% 15px;
}

.review-item__photo img {
	width: 100px;
	height: 100px;
}

.review-item__photo {
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	flex-shrink: 0;
	margin-right: 24px;
}

.review-item__info {
	padding-right: 50px;
}

.review-item__name {
	font-weight: 500;
	font-size: 15px;
	line-height: 23px;
	font-style: normal;
}

.review-item__occupation {
	font-size: 13px;
	line-height: 18px;
	margin-top: 2px;
	color: #919191;
}

.review-item__body {
	margin-top: 18px;
}

.review-item__text {
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}

[id^="bx_incl_area_"] .gallery-slider .slick-track {
	transform: none !important;
}

.collage-slide {
	padding-left: 20px;
	padding-right: 25px;
	height: auto;
	display: flex;
	min-height: 310px;
}

.collage-item {
	position: relative;
	width: 100%;
	border: 2px solid #f0f0f0;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 10px 10px 15px rgba(213, 213, 213, 0.11);
	max-height: 310px;
	overflow: hidden;
}

.collage-item::before {
	content: "";
	display: block;
	padding-top: 58.3%;
}

.collage-item__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media (min-width: 1440px) {
	.block-video__content {
		max-width: 840px;
		padding-left: 190px;
	}
}

@media (max-width: 1024px) {
	.block-video__play {
		transform: translate(-50% -50%) scale(0.5);
	}
}




@media (max-width: 1460px) {

	/* --- main slide --- */
	.main-slide {
		padding-left: 100px;
		padding-right: 100px;
	}

	.main-slide__link {
		left: 100px;
		right: 100px;
	}



	/* --- slick slider --- */
	.round-arrows-lg .slick-arrow {
		width: 100px;
	}

	.gallery-slider .slick-arrow {
		width: 191px;
	}



	/* --- fixed nav --- */
	.fixed-nav {
		left: auto;
		margin-left: 0;
		right: 10px;
	}
}


@media (min-width: 1221px) {
	.hidden-lg.hidden-lg {
		display: none;
	}
}



@media (max-width: 1220px) {
	.catalog__aside {
		margin-right: 20px;
	}

	/* --- blocks --- */
	.out-of-container {
		width: auto;
		margin-left: -20px;
		margin-right: -20px;
	}

	.image-floor.out-of-container {
		margin-left: auto;
		margin-right: auto;
	}



	/* --- main menu --- */
	.main-menu__item {
		margin: 0 10px;
	}



	/* --- main submenu --- */
	.main-submenu {
		padding: 60px 40px 60px;
	}

	.main-submenu__main,
	.main-submenu--1-item .main-submenu__main {
		margin-left: 0;
		width: 50%;
	}

	.main-submenu__close {
		width: 60px;
		right: 0;
		left: auto;
		margin: 0;
	}



	/* --- page header aside menu --- */
	.page-header-am__item {
		margin-left: -3px;
		margin-right: -3px;
	}

	.page-header-am__item--lang {
		margin-left: 5px;
	}



	/* --- card-banner--thin-md --- */
	.card-banner--thin-md {
		padding-left: 25px;
		padding-right: 25px;
	}



	/* --- main slide --- */
	.main-slide__container {
		width: 55%;
	}

	.main-slide--right .main-slide__container {
		margin-left: 45%
	}



	/* --- forms --- */
	.form__grid--space-lg {
		margin: -20px;
	}

	.form__grid--space-lg .form__grid-item {
		padding: 20px;
	}

	.form__row.visible-md-ib {
		display: inline-block;
	}

	.form__row.hidden-md {
		display: none;
	}



	/* --- form floor --- */
	.form-floor {
		padding-left: 0;
		padding-right: 0;
	}

	.form-floor--border {
		padding-left: 40px;
		padding-right: 40px;
	}

	.form-floor__close {
		right: 35px;
	}



	/* --- big map --- */
	.big-map__aside {
		min-width: 0;
		max-width: none;
		width: 330px;
		padding: 20px;
	}

	.big-map__map {
		width: calc(100% - 330px);
	}



	/* --- block floor table --- */
	.bft__cell--services {
		width: 40%;
	}



	/* --- e404-floor --- */
	.e404-floor {
		padding: 60px 40px;
	}



	/* --- e404 --- */
	.e404__aside {
		padding-left: 80px;
	}



	/* --- sitemap block --- */
	.sitemap-block__list {
		-moz-columns: 3;
		-webkit-columns: 3;
		columns: 3;
	}



	/* --- sitemap grid --- */
	.sitemap-grid {
		-moz-columns: 3;
		-webkit-columns: 3;
		columns: 3;
	}



	/* --- article-top-block --- */
	.article-top-block,
	.article-top-block__txt,
	.article-top-block__img {
		display: block;
		width: auto;
	}

	.article-top-block__img {
		padding-left: 0;
	}

	.article-top-block__img img {
		margin: 0;
	}

	.article-top-block__txt+.article-top-block__img,
	.article-top-block__img+.article-top-block__txt {
		margin-top: 30px;
	}



	/* --- infographics layout --- */
	.infogr-layout--alt,
	.infogr-layout--alt .infogr-layout__main,
	.infogr-layout--alt .infogr-layout__visual {
		display: block;
		width: auto;
		padding: 0;
	}

	.infogr-layout--alt .infogr-layout__main+.infogr-layout__visual,
	.infogr-layout--alt .infogr-layout__visual+.infogr-layout__main {
		margin-top: 40px;
	}



	/* --- tools --- */
	.hidden-md {
		display: none;
	}

	.visible-md {
		display: block;
	}

	.visible-md-inline {
		display: inline;
	}

	.visible-md-ib {
		display: inline-block;
	}

	.visible-md-table {
		display: table;
	}

	.visible-md-tc {
		display: table-cell;
	}


	/* --- grid --- */
	.col-md-1 {
		width: 8.333%;
	}

	.col-md-2 {
		width: 16.666%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-4 {
		width: 33.33%;
	}

	.col-md-5 {
		width: 41.666%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-7 {
		width: 58.333%;
	}

	.col-md-8 {
		width: 66.666%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-10 {
		width: 83.333%;
	}

	.col-md-11 {
		width: 91.666%;
	}

	.col-md-12 {
		width: 100%;
	}
}



@media (min-width: 1000px) and (max-width: 1220px) {

	/* --- mini cafe --- */
	.mini-cafe__aside {
		width: 360px;
	}

	.mini-cafe__menu {
		margin-left: 45%;
		width: calc(55% + 20px);
	}

	.mini-cafe__visual {
		width: 280px;
	}

	.mini-cafe__visual::after {
		display: none;
	}



	/* --- review --- */
	.review {
		padding-left: 40px;
		padding-right: 40px;
	}

	.review__ava-box {
		margin: 0;
	}

	.review__header-img-cell {
		width: 100px;
	}
}



@media (min-width: 1000px) {

	/* --- banners-grid --- */
	.banners-grid {
		margin: -20px;
		width: calc(100% + 40px);
	}

	.banners-grid__item {
		padding: 20px;
	}



	/* --- logo grid --- */
	.logo-grid {
		margin: -15px;
		width: calc(100% + 30px);
	}

	.logo-grid__item {
		padding: 15px;
		text-align: center;
	}



	/* --- partner block --- */
	.partner-block {
		margin: -30px;
		width: calc(100% + 60px);
	}

	.partner-block__item {
		padding: 30px;
	}



	/* --- review grid --- */
	.review-grid {
		margin: -20px;
		width: calc(100% + 40px);
	}

	.review-grid__item {
		padding: 20px;
	}



	/* --- dropdowns --- */
	.dropdown-owner--left .dropdown {
		top: 50%;
		left: auto !important;
		right: 100%;
		-ms-transform-origin: right center;
		-webkit-transform-origin: right center;
		transform-origin: right center;
		-ms-transform: translateY(-50%) scaleX(0);
		-webkit-transform: translateY(-50%) scaleX(0);
		transform: translate3d(0, -50%, 0) scaleX(0);
	}

	.dropdown-owner--left.open .dropdown {
		-ms-transform: translateY(-50%) scaleX(1);
		-webkit-transform: translateY(-50%) scaleX(1);
		transform: translate3d(0, -50%, 0) scaleX(1);
	}

	.dropdown-arrow-owner--left::before {
		left: 0;
		bottom: 50%;
		border: 8px solid transparent;
		border-right: none;
		border-left-color: #fff;
		margin: 0 0 -8px 0;
	}
}



@media (max-width: 999px) {
	.prediction__title {
		text-align: center;
		font-weight: 600;
		font-size: 26px;
		line-height: 140%;
	}

	.prediction__body {
		padding: 60px 28px 50px;
		min-height: 600px;
	}

	.prediction__caption {
		font-size: 30px;
		line-height: 140%;
	}

	.prediction__action {
		width: 100%;
	}

	.prediction__body--phrase .prediction__action {
		padding-top: 0;
	}

	.prediction__phrase {
		margin: auto 0;
	}

	.prediction__phrase blockquote {
		font-size: 20px;
		line-height: 140%;
	}

	.prediction__phrase cite {
		font-size: 15px;
	}

	.catalog-filter__close {
		display: block;
	}

	.catalog__aside {
		width: 0;
		margin: 0;
	}

	.catalog-filter {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		max-width: 280px;
		z-index: 1005;
		border-radius: 0;
		transform: translateX(-100%);
		transition-duration: 400ms;
	}

	.catalog__filter-toggle {
		display: inline-flex;
	}

	.open-filter .page-wrapper {
		display: block;
	}

	.open-filter .catalog-filter {
		transform: translateX(0);
	}

	.product-detail {
		display: block;
	}

	.product-detail__visual {
		width: 100%;
		margin-right: 0;
	}

	.popup-block__body-wrapper {
		padding: 10px;
		padding-left: 0;
	}

	.popup-block__body .big-map {
		overflow-y: auto;
	}

	.popup-block__body .big-map::-webkit-scrollbar {
		width: 6px;
		background: none;
	}

	.popup-block__body .big-map::-webkit-scrollbar-thumb {
		width: 6px;
		border-radius: 4px;
		background-color: #8d8d8d;
	}

	.popup-block__body .big-map__aside {
		width: 100%;
		padding: 5px 15px;
	}

	.popup-block__body .big-map__addresses {
		max-height: none;
	}

	.popup-block__body .big-map__map {
		width: 100%;
		padding-left: 15px;
		padding-top: 5px;
		padding-right: 10px;
		order: -5;
		height: 500px;
		min-height: 0;
	}

	.popup-block__body .form__caption {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 15px;
	}

	.address-block__row {
		margin-bottom: 10px;
	}

	.address-block__title {
		margin-bottom: 0;
	}

	/* --- text --- */
	h1,
	.h1 {
		font-size: 36px;
		line-height: 40px;
	}

	h2,
	.h2 {
		font-size: 30px;
		line-height: 36px;
	}



	/* --- buttons --- */
	.btn {
		height: 30px;
		padding: 5px 25px;
		border-radius: 15px;
		font-size: 13px;
	}

	.touch.webkit .btn {
		padding-top: 6px;
		padding-bottom: 4px;
	}



	/* --- success pill --- */
	.success-pill {
		height: 30px;
		padding: 5px 25px 5px 45px;
		border-radius: 15px;
		font-size: 13px;
	}

	.success-pill::before {
		left: 25px;
	}



	/* --- page header --- */
	.page-header__cell-logo,
	.page-header__cell-menu-btn {
		position: relative;
		z-index: 100;
		background-color: #fff;
	}

	.page-header__cell-logo {
		padding-right: 20px;
	}

	.page-header__menu-main {
		width: 0;
	}

	.page-header__menu-aside {
		background-color: #fff;
		position: relative;
		z-index: 100;
		width: auto;
		text-align: right;
	}

	.page-header__cell-search {
		vertical-align: top;
		padding-left: 25px;
	}

	.page-header__search-btn {
		height: 91px;
		line-height: 0;
		padding: 10px 0 46px;
	}



	/* --- page header aside menu --- */
	/*.page-header-am{position: absolute; top: 100%; margin-top: 1px; right: 0; background-color: #fff; z-index: 100; text-align: right; padding-right: 20px; border-bottom: 1px solid #e2e2e2;}*/



	/* --- search row --- */
	.search-row .btn,
	.touch.webkit .search-row .btn {
		height: 40px;
		padding: 10px 30px;
		border-radius: 20px;
		font-size: 15px;
	}



	/* --- main slider --- */
	.main-slider .slick-arrow {
		display: none !important;
	}



	/* --- main slide --- */
	.main-slide {
		padding: 0;
	}

	.main-slide__link {
		left: 0;
		right: 0;
	}



	/* --- page section --- */
	.page-section {
		margin: 20px 0;
	}



	/* --- page-title-block --- */
	.page-title-block {
		margin: 60px 0 20px;
	}


	.main-slide .container {
		padding: 0 20px;
	}

	.main-banner__cell {
		width: 100%;
	}

	.price-map-block {
		display: flex;
		flex-wrap: wrap;
	}

	/* --- price block --- */
	.price-block--break-sm {
		margin-bottom: 0;
		margin-right: 20px;
	}



	/* --- mini cafe --- */
	.mini-cafe {
		background-position: 94% 99%, 0 0;
	}

	.mini-cafe,
	.mini-cafe__main,
	.mini-cafe__aside {
		display: block;
		height: auto;
	}

	.mini-cafe__aside {
		width: auto;
		border-left: none;
		border-top: 1px solid #777;
		overflow: hidden;
	}

	.mini-cafe__menu {
		width: calc(44% + 20px);
		margin: 0 -20px 30px 56%;
	}


	/* --- mini cafe slider --- */
	.mc-slider {
		margin-right: -1px;
	}



	/* --- mini cafe slide --- */
	.mc-slide {
		border-right: 1px solid #777;
	}

	.mc-slide__labels {
		margin-top: 0;
	}



	/* --- card banner --- */
	.card-banner:not(.card-banner--lg):not(.card-banner--lt) {
		padding: 20px;
		min-height: 0;
		width: 33%;
	}

	.card-banner:not(.card-banner--lg):not(.card-banner--lt) .card-banner__em,
	.card-banner:not(.card-banner--lg):not(.card-banner--lt) .card-banner__txt {
		display: none;
	}

	.card-banner:not(.card-banner--lg):not(.card-banner--lt) .card-banner__title {
		margin-bottom: 0;
		font-size: 15px;
		line-height: 23px;
	}



	/* --- news bloxk --- */
	.news-block--alone-sm .news-list__item:nth-child(4)~.news-list__item {
		display: none;
	}



	/* --- forms --- */
	.form__grid-item--lg {
		width: 60%;
	}

	.form__grid-item--sm {
		width: 40%;
	}

	.form__grid--free {
		margin: -20px;
	}

	.form__grid--free .form__row {
		padding-left: 20px;
		padding-right: 20px;
	}

	.form__grid--free .form__row.hidden-sm {
		display: none;
	}

	.form__row.visible-sm-ib {
		display: inline-block;
	}

	.form__row.hidden-sm {
		display: none;
	}



	/* --- grid table --- */
	/*.grid-table{margin: -10px;}
	.grid-table__item{width: calc(50% - 20px); margin: 20px 10px 0; padding-bottom: 20px;}*/
	.grid-table--reduce-sm .grid-table__item-title,
	.grid-table--reduce-sm .grid-table h3 {
		font-size: 20px;
		line-height: 28px;
		margin: 15px 0;
	}

	.grid-table--reduce-sm .grid-table__item {
		font-size: 13px;
		line-height: 18px;
	}



	/* --- top floor --- */
	.top-floor {
		background-position: 41% 50%;
		padding: 40px;
	}

	.top-floor__visual {
		padding: 0 10px;
		width: 54%;
	}

	.top-floor__visual img {
		max-height: 320px;
	}

	.top-floor .icon-col-block,
	.top-floor .icon-col-block__main,
	.top-floor .icon-col-block__icon {
		display: block;
	}

	.top-floor .icon-col-block__icon {
		width: auto;
		padding: 0;
		float: left;
		margin-right: 20px;
	}



	/* --- filter block --- */
	.filter-block {
		padding: 40px;
		font-size: 0;
	}

	.filter-block__form {
		width: auto;
		max-width: none;
		margin: -20px -20px -10px;
	}

	.filter-block__form .form__row {
		display: inline-block;
		vertical-align: top;
		width: 50%;
		margin: 0;
	}



	/* --- big map --- */
	.big-map {
		margin-left: 0px;
		margin-right: 0px;
		border: none;
	}

	.big-map__aside {
		width: auto;
		max-width: none;
		min-width: 0;
		height: auto;
		min-height: 0;
		padding: 30px 40px;
		box-shadow: none;
	}

	.big-map__map {
		position: relative;
		height: calc(300px + 30vw);
		max-height: 75vh;
		max-height: calc(100vh - 200px);
		min-height: 500px;
		width: 100%;
		border: 1px solid #e2e2e2;
		border-radius: 0 0 5px 5px;
		overflow: hidden;
	}

	.big-map__map>ymaps {
		width: 100% !important;
	}



	/* --- floor-slide --- */
	/*.floor-slide{background-size: 0 0; background-color: #303030; position: relative;}
	.floor-slide::before{content: ''; display: block; padding-top: 50.85%; background: inherit; background-size: cover;}
	.floor-slide .floor-slide__content{padding: 40px; width: auto;}
	.floor-slide .floor-slide__content::before{display: none;}
	.floor-slide .floor-slide__content-inner{display: block; max-width: 600px; width: auto;}
	.floor-slide__title{margin-top: 0;}
	.floor-slide__top-icon{position: absolute; top: 40px; right: 40px;}
	.floor-slide--low::before{padding-top: 31.35%;}*/
	.floor-slide {
		background-position: 70% 50%;
	}

	.floor-slide__content {
		min-width: 400px;
	}

	.floor-slide__content::before {
		height: calc(160px + 25vw);
	}

	.floor-slide__content,
	.floor-slide--low .floor-slide__content {
		padding: 40px 40px 40px 0;
	}

	.floor-slide--low .floor-slide__content::before {
		height: 200px;
	}

	.floor-slide--low {
		background-position: center;
	}

	.floor-slide__bg--sm {
		display: block;
	}



	/* --- block floor table --- */
	.bft,
	.bft tbody,
	.bft__row,
	.bft__cell,
	.bft__wide-cell,
	.bft__wide-row {
		display: block;
		width: auto;
	}

	.bft__cell,
	.bft__cell:first-child,
	.bft__cell:last-child {
		padding: 0;
		border: none;
	}

	.bft__cell {
		margin-bottom: 20px;
	}

	.bft__cell:last-child {
		margin-bottom: 0;
	}

	.bft__cell--number {
		margin: 0 10px 0 0;
		float: left;
	}

	.bft__row {
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
		padding: 20px 40px;
		margin-bottom: -1px;
	}

	.bft__wide-row {
		padding: 20px 40px 0;
		border-top: 1px solid #e2e2e2;
	}

	.bft__wide-row+.bft__row,
	.bft__wide-row+.bft__wide-row {
		border-top: none;
	}

	.bft__wide-cell {
		padding: 0;
	}

	.bft--clear-last .bft__row:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}



	/* --- toggleable section --- */
	.toggleable-section-sm:not(.open) {
		display: none;
	}

	.toggleable-section-sm:not(.open)+.toggleable-section-sm {
		margin-top: 0;
	}



	/* --- block footer floor --- */
	.block-footer-row {
		background: none !important;
		min-height: 0;
		margin-top: 40px;
	}

	.block-footer-row .btn-row::before {
		display: none;
	}

	.block-floor:not(:first-child) .block-floor__title:first-child {
		margin-top: 0;
	}



	/* --- banner-floor --- */
	.banner-floor {
		padding: 40px 40px 55px;
		min-height: 0;
	}



	/* --- news type grid --- */
	.news-type-grid {
		margin-bottom: -40px;
	}

	.news-type-grid__item {
		padding-bottom: 40px;
	}



	/* --- slider floor --- */
	.slider-floor .slick-track {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.slider-floor .slider-floor__slide {
		height: auto;
		-ms-flex-grow: 1;
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}



	/* --- bg floor --- */
	.bg-floor {
		padding-left: 40px;
		padding-right: 40px;
	}



	/* --- person floor --- */
	.person-floor {
		padding: 55px 40px;
	}

	.person-floor__header {
		width: 100%;
		margin-left: 0;
		display: block;
	}

	.person-floor__header-title,
	.person-floor__header-aside {
		display: block;
		padding: 0;
		width: auto;
	}

	.person-floor__header br {
		display: none;
	}

	.person-floor__header-aside {
		margin-top: 4px;
	}



	/* --- person slider --- */
	.person-slider__flower {
		display: none;
	}



	/* --- person slider bar --- */
	.person-slider-bar {
		margin: 40px 80px 0;
	}



	/* --- partner block --- */
	.partner-block__item--slider {
		-ms-order: 2;
		-webkit-order: 2;
		order: 2;
	}

	.partner-block__item--icons {
		-ms-order: 1;
		-webkit-order: 1;
		order: 1;
	}



	/* --- review --- */
	.review {
		padding: 30px 60px 50px;
	}



	/* --- food floor --- */
	.food-floor {
		padding: 55px 40px 60px;
	}

	.food-floor .block-floor__title {
		margin-left: 0;
		margin-right: 0;
	}

	.food-floor .food-floor__top-txt {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.food-floor .block-footer-row {
		margin-bottom: -20px;
	}



	/* --- food grid --- */
	.food-grid-block {
		margin: 60px 0;
	}



	/* --- search type floor --- */
	.st-floor {
		padding-left: 40px;
		padding-right: 40px;
	}

	.st-floor--subscribe {
		padding: 30px 20px;
	}

	.st-floor--subscribe:last-child {
		padding-bottom: 30px;
	}

	.st-floor--banners .banners-grid {
		display: block;
	}

	.st-floor--banners .banners-grid__item {
		display: block;
	}



	/* --- search results type floor --- */
	.srt-floor {
		padding-left: 40px;
		padding-right: 40px;
	}



	/* --- subscribe-row --- */
	.subscribe-row,
	.subscribe-row__label,
	.subscribe-row__form {
		display: block;
		width: auto;
	}

	.subscribe-row__label {
		margin-bottom: 20px;
		padding-right: 0;
	}

	.subscribe-row__label::after {
		display: none;
	}

	.subscribe-row__label br {
		display: none;
	}

	.subscribe-row .btn,
	.touch.webkit .subscribe-row .btn {
		height: 40px;
		padding: 10px 30px;
		border-radius: 20px;
		font-size: 15px;
	}



	/* --- article-floor --- */
	.article-floor {
		padding: 40px 0 60px;
	}

	.article-floor:first-child {
		padding-top: 40px;
	}



	/* --- e404-floor --- */
	.e404-floor {
		padding: 40px 0px;
	}



	/* --- e404 --- */
	.e404__aside {
		padding-left: 40px;
	}

	.e404__footer {
		margin-top: 40px;
	}



	/* --- col txt floor --- */
	.col-txt-floor {
		padding: 40px 0;
	}



	/* --- col txt floor --- */
	.col-txt-floor__col {
		width: 100%;
	}

	.col-txt-floor__col.col-txt-floor__col {
		padding: 0;
	}

	.col-txt-floor__col+.col-txt-floor__col {
		margin-top: 35px;
	}



	/* --- gallery slider --- */
	.gallery-slider .slick-arrow {
		width: 80px;
	}

	.gallery-slider.single-mode .gallery-slide {
		display: block;
		width: auto;
		margin: 0 85px;
	}



	/* --- infogr floor --- */
	.infogr-floor {
		padding: 40px 0 60px;
	}



	/* --- infogr-layout --- */
	.infogr-layout,
	.infogr-layout .infogr-layout__main,
	.infogr-layout .infogr-layout__visual {
		display: block;
		padding: 0;
		width: auto;
	}

	.infogr-layout__main+.infogr-layout__visual,
	.infogr-layout__visual+.infogr-layout__main {
		margin-top: 40px;
	}



	/* --- logo slider --- */
	.logo-slider {
		margin: 40px -20px;
		padding: 0 10px;
	}



	/* --- tools --- */
	.hidden-sm {
		display: none;
	}

	.visible-sm {
		display: block;
	}

	.visible-sm-inline {
		display: inline;
	}

	.visible-sm-ib {
		display: inline-block;
	}

	.visible-sm-table {
		display: table;
	}

	.visible-sm-tc {
		display: table-cell;
	}



	/* --- grid --- */
	.col-sm-1 {
		width: 8.333%;
	}

	.col-sm-2 {
		width: 16.666%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-4 {
		width: 33.33%;
	}

	.col-sm-5 {
		width: 41.666%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-7 {
		width: 58.333%;
	}

	.col-sm-8 {
		width: 66.666%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-10 {
		width: 83.333%;
	}

	.col-sm-11 {
		width: 91.666%;
	}

	.col-sm-12 {
		width: 100%;
	}
}



@media (min-width: 768px) and (max-width: 999px) {

	/* --- news block --- */
	.news-block--alone-sm .news-list {
		position: static;
		margin-bottom: -15px;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 40px;
		-webkit-column-gap: 40px;
		column-gap: 40px;
	}

	.news-block--alone-sm .news-list::after {
		display: none;
	}

	.news-block--alone-sm .news-list__item {
		display: inline-block;
		vertical-align: top;
		margin-bottom: 15px;
	}

	.news-block--alone-sm .block__notes {
		position: static;
	}



	/* --- main menu ---
	.main-menu{position: absolute; top: 100%; margin: 1px 0 0; left: 0; right: 0; background: rgba(255,255,255,.9);
		z-index: 90; padding-left: 10px; border-bottom: 1px solid #e2e2e2;
		-ms-transform: translateY(-100%); -webkit-transform: translateY(-100%); transform: translate3d(0,-100%,0); transition: .2s; pointer-events: none;}
	.main-menu__btn{padding: 18px 0; height: 60px;}
	.main-menu-open .main-menu{-ms-transform: translateY(0); -webkit-transform: translateY(0); transform: translate3d(0,0,0); pointer-events: all; box-shadow: 0px 3px 3px -2px rgba(0,0,0,.3);}
	*/



	/* --- page header --- */
	.page-header__menu-row,
	.page-header__menu-main,
	.page-header__menu-aside {
		display: block;
		width: auto;
	}

	.page-header__menu-row {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.page-header__menu-main {
		-ms-order: 2;
		-webkit-order: 2;
		order: 2;
	}

	.page-header__menu-aside {
		-ms-order: 1;
		-webkit-order: 1;
		order: 1;
	}

	.page-header__logo::before {
		vertical-align: bottom;
		height: 65px;
	}



	/* --- page header aside menu --- */
	.page-header-am {
		padding: 10px 0 0;
	}



	/* --- main menu --- */
	.main-menu {
		margin: 0 -10px;
	}

	.main-menu__btn {
		padding: 10px 0 12px;
		height: 46px;
	}



	/* --- mini cafe slide --- */
	.mc-slide,
	.mc-slide.slick-slide {
		min-height: 0;
		padding: 40px 40px 60px;
		font-size: 0;
	}

	.mc-slide__main,
	.mc-slide__image {
		display: inline-block;
		vertical-align: top;
		width: 50%;
	}

	.mc-slide__image {
		position: static;
		border: 1px solid #777;
		overflow: hidden;
		height: auto;
		width: calc(50% - 40px);
		margin-left: 40px;
	}



	/* --- map floor --- */
	.map-floor {
		padding: 0;
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
	}

	.map-floor__card {
		min-height: inherit;
		box-shadow: none;
		border-right: 1px solid #e2e2e2;
		width: 300px;
		padding: 30px 40px 30px 40px;
	}

	.map-floor__map {
		left: 300px;
		border: none;
	}

	.map-floor__map:only-child {
		left: 0;
	}

	.map-card__strong {
		font-size: 17px;
		line-height: 25px;
	}



	/* --- block floor table --- */
	.bft__cell--number {
		margin: 0 10px 0 0;
		float: left;
		width: 55px;
	}

	.bft__cell--number~.bft__cell {
		margin-left: 65px;
	}



	/* --- partner block --- */
	.partner-block {
		margin: -20px;
		width: calc(100% + 40px);
	}

	.partner-block__item {
		padding: 20px;
	}
}



@media (min-width: 768px) {

	/* --- text guide --- */
	.text-guide dt.h3 {
		font-size: 26px;
		line-height: 34px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.text-guide dt.h3::before {
		top: 9px;
	}

	.text-guide dt.h3::after {
		top: 18px;
	}



	/* --- main submenu --- */
	.main-submenu {
		height: auto !important;
	}

	.main-submenu__l1-item:last-child {
		margin-bottom: 30px;
	}



	/* --- slick slider --- */
	.sq-arrows--lg .slick-arrow {
		width: 40px;
	}

	.sq-arrows--lg .slick-arrow::before {
		width: 40px;
		height: 60px;
		margin: -30px 0 0 -20px;
	}



	/* --- col-list--2 --- */
	.col-list {
		margin-bottom: -8px;
	}

	.col-list--2 {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 40px;
		-webkit-column-gap: 40px;
		column-gap: 40px;
	}

	.col-list--3 {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
		-moz-column-gap: 40px;
		-webkit-column-gap: 40px;
		column-gap: 40px;
	}

	.col-list--3 li {
		margin-bottom: 0;
		padding-bottom: 8px;
	}

	.infogr-txt .col-list li {
		margin-bottom: 0px;
		padding-bottom: 15px;
		display: inline-block;
		vertical-align: top;
		width: 100%;
	}

	.infogr-txt .col-list li:last-child {
		padding-bottom: 0;
	}

	.infogr-txt .col-list.icon-style-list li {
		padding-bottom: 20px;
	}



	/* --- hor infogr grid --- */
	.hor-infogr-grid {
		margin: -15px -20px;
		width: calc(100% + 40px);
	}

	.hor-infogr-grid__item {
		padding: 15px 20px;
	}

	.hor-infogr-grid--offset {
		margin-top: -10px;
	}
}



@media (max-width: 767px) {
	.main-banner {
		margin-bottom: 20px;
	}

	.popup-block__body.popup-block__body {
		padding: 0;
		width: 100%;
		height: 100%;
	}

	.popup-block__body-wrapper {
		border-radius: 0;
		height: 100vh;
		padding-top: 30px;
		overflow: hidden;
	}

	.popup-block__body .big-map {
		position: absolute;
		top: 30px;
		bottom: 10px;
		height: auto;
		left: 0;
		right: 10px;
		max-height: none;
	}

	.popup-block__close::before,
	.popup-block__close::after {
		background-color: #7d7d7d;
	}

	.popup-block__close {
		top: 10px;
		right: 10px;
		z-index: 10;
	}

	.popup-block__body .big-tip__separator {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.popup-block__body .big-tip__header {
		padding: 10px 30px 10px 15px;
		margin: -15px;
		margin-bottom: 15px;
	}

	.popup-block__body .big-tip {
		max-width: calc(100vw - 60px);
		padding: 15px;
	}

	.popup-block__body .big-tip ymaps {
		width: 100% !important;
	}

	.big-tip__title {
		margin: 0;
	}

	.product-carousel__header {
		margin-bottom: 15px;
	}


	.accordions--wide {
		margin-left: -20px;
		margin-right: -20px;
		width: calc(100 + 40px);
	}

	.accordions--wide dt,
	.accordions--wide dd {
		padding-left: 20px;
		padding-right: 20px;
	}

	.accordions--wide dt {
		padding-left: 50px;
	}

	.accordions--wide dt::before {
		left: 20px;
	}

	.accordions--wide dt::after {
		left: 30px;
	}

	.text-banner__footer {
		width: calc(100% + 40px);
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}

	/* --- text --- */
	h1,
	.h1 {
		font-size: 30px;
		line-height: 36px;
	}

	h2,
	.h2 {
		font-size: 26px;
		line-height: 34px;
	}

	h3,
	.h3 {
		font-size: 20px;
		line-height: 28px;
	}

	h4,
	.h4 {
		font-size: 17px;
		line-height: 25px;
	}

	.stronger {
		font-size: 17px;
		line-height: 25px;
	}

	.text-guide table {
		width: 100% !important;
	}

	.text-guide dt {
		font-size: 15px;
		line-height: 23px;
	}

	.text-guide img[align="right"],
	.text-guide img[align="left"] {
		float: none;
		margin-left: 0;
		margin-right: 0;
	}



	/* --- page header --- */
	.page-header::after {
		content: '';
		position: absolute;
		bottom: -1px;
		left: 0;
		right: 0;
		border-top: 1px solid #e2e2e2;
		z-index: 100;
	}

	.page-header__cell-menu-btn {
		display: table-cell;
	}

	.page-header__cell-menu,
	.page-header__cell-logo,
	.page-header__cell-menu-btn,
	.page-header__cell-search {
		height: 60px;
	}

	.page-header__cell-logo,
	.page-header__cell-menu-btn {
		position: relative;
		z-index: 101;
		background-color: #fff;
	}

	.page-header__cell-menu {
		width: 0;
	}

	.page-header__cell-logo {
		width: 99%;
		text-align: center;
		padding: 0;
	}

	.page-header__cell-contact {
		display: table-cell;
	}

	.page-header__cell-search {
		padding-left: 0;
		width: 1px;
	}

	.page-header__search-btn::after {
		display: none;
	}

	.page-header__logo {
		height: 60px;
	}

	.page-header__logo::before {
		height: 52px;
	}

	.page-header__contact-btn,
	.page-header__search-btn {
		display: inline-block;
		width: 40px;
		height: 60px;
		position: relative;
		z-index: 101;
		padding: 0;
		text-align: center;
		cursor: pointer;
		color: #303030;
		transition: .2s;
		font-size: 0;
		background-color: #fff;
	}

	.page-header__search-btn {
		width: 50px;
		margin-right: -10px;
	}

	.page-header__contact-btn .svg-icon,
	.page-header__search-btn .svg-icon {
		transition: opacity .2s, -webkit-transform .2s;
		transition: opacity .2s, transform .2s;
		width: 30px;
		height: 30px;
	}

	.page-header__contact-btn::before,
	.page-header__search-btn::before {
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle;
	}

	.page-header__contact-btn-alt,
	.page-header__search-btn-alt {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
		-ms-transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		transition: opacity .2s, -webkit-transform .2s;
		transition: opacity .2s, transform .2s;
	}

	.page-header__contact-btn-alt::before,
	.page-header__contact-btn-alt::after,
	.page-header__search-btn-alt::before,
	.page-header__search-btn-alt::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		border-top: 3px solid;
		width: 30px;
		margin: -2px 0 0 -15px;
		transition: -webkit-transform .2s;
		transition: transform .2s;
		color: #303030;
	}

	.page-header__contact-btn-alt::before,
	.page-header__search-btn-alt::before {
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.page-header__contact-btn-alt::after,
	.page-header__search-btn-alt::after {
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.header-contacts-open .page-header__contact-btn-alt,
	.page-header__search-btn.open .page-header__search-btn-alt {
		opacity: 1;
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	.header-contacts-open .page-header__contact-btn .svg-icon,
	.page-header__search-btn.open .svg-icon {
		opacity: 0;
		transform: rotate(-90deg);
	}

	.page-header__menu-row {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin-top: 1px;
		padding: 0 0 30px;
		background-color: rgba(255, 255, 255, .97);
		box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .3);
		z-index: 100;
		transition: .5s;
		-ms-transform: translateY(-110%);
		-webkit-transform: translateY(-110%);
		transform: translate3d(0, -110%, 0);
	}

	.page-header__menu-row,
	.page-header__menu-main,
	.page-header__menu-aside {
		display: block;
		width: auto;
		text-align: left;
	}

	.page-header__menu-main,
	.page-header__menu-aside {
		background: transparent;
	}

	.page-header__logo {
		display: inline-block;
		vertical-align: top;
	}

	.no-touch .page-header__contact-btn:hover {
		color: #ef6b01;
	}

	.main-menu-open .page-header__menu-row {
		-ms-transform: translateY(0%);
		-webkit-transform: translateY(0%);
		transform: translate3d(0, 0%, 0);
	}



	/* --- main menu --- */
	.main-menu {
		margin: 0;
	}

	.main-menu__item {
		display: block;
		margin: 0 0 -1px;
		border-bottom: 1px solid #e2e2e2;
	}

	.main-menu__item:first-child .main-menu__btn {
		border-top: none;
	}

	.main-menu__btn {
		display: block;
		width: 100%;
		border-bottom: 1px solid #e2e2e2;
		border-top: 1px solid #e2e2e2;
		text-align: left;
		padding: 12px 20px 8px;
		height: auto;
		margin-bottom: -2px;
	}



	/* --- main-submenu --- */
	.main-submenu {
		position: static;
		background: transparent;
		box-shadow: none;
		overflow: hidden;
		padding: 15px 0 25px;
		opacity: 1;
		-ms-transform: none;
		-webkit-transform: none;
		transform: none;
	}

	.main-submenu,
	.main-menu__item.in-queue .main-submenu {
		transition: .5s;
	}

	.main-submenu:not(.open) {
		height: 0 !important;
		padding: 0;
		-ms-transform: none;
		-webkit-transform: none;
		transform: none;
		transition: .5s;
		opacity: 1;
	}

	.main-submenu.testing.testing {
		height: auto !important;
		padding: 15px 0 30px;
		transition: 0s;
	}

	.main-submenu.testing-not-complete.testing-not-complete {
		transition: 0s;
	}

	.main-submenu__main,
	.main-submenu--1-item .main-submenu__main {
		width: 100%;
	}

	.main-submenu__aside {
		display: none;
	}

	.main-submenu__l1 {
		margin-bottom: 0px;
	}

	.main-submenu__l1-item {
		margin-bottom: 10px;
		width: 100%;
		padding-right: 0;
	}

	.main-submenu__l1-title {
		margin: 15px 0;
		display: none;
	}

	.main-submenu__l2-item {
		margin: 15px 0;
	}

	.main-submenu__l3-item {
		margin: 5px 0;
	}

	.main-submenu__l3 {
		margin-left: 20px;
	}

	.main-submenu__close {
		display: none;
	}


	.main-submenu--standalone {
		position: absolute;
		background: rgba(255, 255, 255, .97);
		padding: 25px 10px 40px !important;
		box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .3);
		z-index: 100;
	}

	.main-submenu--standalone:not(.open) {
		-ms-transform: translateY(-110%);
		-webkit-transform: translateY(-110%);
		transform: translate3d(0, -110%, 0);
		height: auto !important;
		transition: .25s;
	}

	.main-submenu--standalone.open {
		-ms-transform: translateY(0%);
		-webkit-transform: translateY(0%);
		transform: translate3d(0, 0%, 0);
		height: auto !important;
		transition: .25s;
	}



	/* --- page header aside menu --- */
	.page-header-am {
		padding: 0;
		margin-top: 20px;
	}

	.page-header-am__item {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0 5px;
	}

	.page-header-am__item--lang {
		padding-left: 10px;
	}



	/* --- header contacts --- */
	.header-contacts {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, .97);
		padding: 25px 20px 40px;
		box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .3);
		transition: .3s;
		z-index: 100;
		-ms-transform: translateY(-110%);
		-webkit-transform: translateY(-110%);
		transform: translate3d(0, -110%, 0);
	}

	.header-contacts-open .header-contacts {
		-ms-transform: translateY(0%);
		-webkit-transform: translateY(0%);
		transform: translate3d(0, 0%, 0);
	}



	/* --- search row --- */
	.search-row .btn {
		padding-left: 0;
		padding-right: 0;
		width: 80px;
	}

	.search-row .btn__txt {
		display: none;
	}

	.search-row .btn__icon {
		margin: 0;
	}



	/* --- page footer  --- */
	.page-footer {
		padding-top: 30px;
	}



	/* --- footer banners --- */
	.footer-banners {
		display: none;
	}



	/* --- footer menu --- */
	.footer-menu__col:not(.footer-menu__col--social) {
		display: none;
	}

	.footer-menu__col--social {
		width: 100%;
	}



	/* --- card banner --- */
	.card-banner {
		padding: 20px;
		min-height: 130px;
	}

	.card-banner__labels {
		margin-bottom: 5px;
	}

	.card-banner__title {
		margin: 5px 0 8px;
	}

	.card-banner__action {
		margin-top: 15px;
	}

	.card-banner--lg,
	.card-banner--lg .card-banner__content {
		min-height: 0;
	}

	.card-banner--lg .card-banner__em {
		margin: 10px 0;
	}

	.card-banner__em,
	.card-banner__txt {
		display: none;
	}

	.card-banner--service {
		background-image: none !important;
		color: #303030;
		min-height: 68px;
	}

	.card-banner--service::after {
		display: none;
	}

	.card-banner--service .card-banner__title {
		margin: 0;
	}

	.card-banner--service .card-banner__top-icon {
		width: 40px;
		height: 40px;
		top: 14px;
		right: 20px;
	}

	.card-banner-abbonement__top-icon {
		width: 50px;
		height: 50px;
	}

	.card-banner--service .card-banner__content {
		margin-right: 60px;
	}

	.no-touch .card-banner--service:hover {
		color: #303030;
	}



	/* --- block --- */
	.block {
		padding: 20px;
	}

	.block__title {
		margin: 30px 0 15px;
	}

	.block .block-divider {
		margin-left: -20px;
		margin-right: -20px;
	}



	/* --- block floor --- */
	.block-floor:not(:first-child) .block-floor__title:first-child {
		margin-top: 0;
	}



	/* --- banner-floor --- */
	.banner-floor {
		padding: 30px 20px 40px;
		margin: 0 -20px;
	}



	/* --- page section --- */
	.page-section {
		margin: 20px 0;
	}



	/* --- page title block --- */
	.page-title-block {
		margin: 40px 0 20px;
	}

	.page-title-block,
	.page-title-block__title,
	.page-title-block__aside {
		display: block;
		width: auto;
		padding: 0;
	}

	.page-title-block__aside {
		margin-top: 15px;
	}

	.page-title-block .complex-links-row {
		margin: -5px -20px;
	}

	.page-title-block .complex-links-row .complex-link {
		margin: 5px 20px;
	}



	/* --- page-title-block-top --- */
	.page-title-block-top {
		margin-top: 40px;
		margin-bottom: 15px;
	}

	.page-title-block-top,
	.page-title-block-top__back,
	.page-title-block-top__item {
		display: block;
		padding: 0;
	}

	.page-title-block-top__back,
	.page-title-block-top__item {
		margin-bottom: 10px;
	}

	.page-title-block-top__back:last-child,
	.page-title-block-top__item:last-child {
		margin-bottom: 0;
	}

	.page-title-block-top .long-back-link {
		padding-left: 15px;
	}



	/* --- page title block strong --- */
	.page-title-block-strong {
		margin-bottom: 22px;
		margin-top: -12px;
	}



	/* --- mini cafe --- */
	.mini-cafe {
		padding: 0;
	}

	.mini-cafe__main {
		padding: 20px;
	}

	.mini-cafe__visual {
		display: none;
	}

	.mini-cafe__menu {
		margin-left: 0;
		width: auto;
		min-height: 0;
	}



	/* --- mini cafe slide --- */
	.mc-slide,
	.mc-slide.slick-slide {
		padding: 20px 20px 300px;
		min-height: 600px;
	}



	/* --- news block --- */
	.news-block .news-list {
		position: static;
		margin-bottom: -15px;
		-moz-columns: 1;
		-webkit-columns: 1;
		columns: 1;
	}

	.news-block .news-list::after {
		display: none;
	}

	.news-block .news-list__item {
		display: inline-block;
		vertical-align: top;
		margin-bottom: 15px;
	}

	.news-block .block__notes {
		position: static;
	}



	/* --- main slide --- */
	.main-slider {
		display: none;
	}

	/*.main-slider .slick-track{display: -webkit-flex; display: -ms-flex; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row;}
	.main-slider .slick-track::before,
	.main-slider .slick-track::after{display: none;}
	.main-slider .main-slide{height: auto;}
	.main-slide__container{padding: 30px 0; height: 100%;}
	.main-slide .main-slide__container{width: auto; margin-left: 0; margin-right: 0;}*/



	/* --- fixed nav --- */
	.fixed-nav {
		display: none;
	}



	/* --- forms --- */
	.form__title+.form__grid {
		margin-top: -20px;
	}

	.form__title+.form__grid--free {
		margin-top: -15px;
	}

	.form__grid .form__grid-item--lg,
	.form__grid .form__grid-item--sm {
		width: 100%;
		padding-top: 0;
		padding-bottom: 0;
	}

	.form__title,
	.form__title-main,
	.form__title-aside {
		display: block;
		width: auto;
		white-space: normal;
		padding: 0;
	}

	.form__title-aside {
		margin-top: 4px;
		font-size: 13px;
		line-height: 18px;
	}

	.form__title {
		margin: 40px 0 20px;
	}

	.form-floor__close {
		top: 15px;
		right: 15px;
	}

	.form__row--inline {
		display: block;
	}

	.form__row.visible-xs-ib {
		display: inline-block;
	}

	.form__row.hidden-xs {
		display: none;
	}



	/* --- form floor --- */
	.form-floor {
		padding: 40px 0;
	}

	.form-floor--border {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}

	.form-floor--toggleable .form__title:first-child {
		width: 100%;
		margin-top: 10px;
	}



	/* --- map floor --- */
	.map-floor {
		margin-left: -20px;
		margin-right: -20px;
		padding: 0px;
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
		min-height: 0;
	}

	.map-floor__map {
		position: relative;
		height: calc(160px + 30vw);
		border: none;
	}

	.map-floor__card {
		width: auto;
		max-width: none;
		box-shadow: none;
		border-top: 1px solid #e2e2e2;
	}



	/* --- map card --- */
	.map-card {
		padding: 20px 20px 30px;
	}

	.map-card__title {
		margin: 10px 0;
	}

	.map-card__strong {
		margin: 10px 0;
	}



	/* --- top floor --- */
	.block .top-floor {
		margin: -20px -20px 0;
	}

	.block .top-floor:first-child,
	.block>.block-floor:first-child {
		margin-top: -20px;
	}

	.block .top-floor:last-child,
	.block>.block-floor:last-child {
		margin-bottom: -20px;
	}

	.top-floor {
		padding: 20px;
		background: #303030 !important;
	}

	.top-floor__content {
		width: auto;
		max-width: none;
	}

	.top-floor__visual {
		display: none;
	}

	.top-floor .icon-col-block__icon .svg-icon {
		margin-top: 0px;
	}

	/*.top-floor .icon-col-block{position: relative;}
	.top-floor .icon-col-block__icon{display: table-cell; width: 0; padding: 0;}
	.top-floor .icon-col-block__icon .svg-icon{margin-right: -30px;}
	.top-floor .icon-col-block__icon + .icon-col-block__main .icon-col-block__title{padding-left: 40px; min-height: 30px;}
	*/
	.top-floor--img {
		display: none;
	}



	/* --- bg floor --- */
	.bg-floor {
		margin: 0 -20px;
		padding: 35px 20px 40px;
	}



	/* --- person floor --- */
	.person-floor {
		margin: -1px -20px;
		padding: 35px 20px 40px;
	}

	.person-floor__header {
		margin-bottom: 30px;
	}



	/* --- person slider --- */
	.person-slider {
		margin: 0 -20px;
	}

	.person-slider__item {
		width: 160px;
	}



	/* --- person-slider-bar --- */
	.person-slider-bar {
		margin: 30px 20px 0;
	}



	/* ---- person col --- */
	.person-col__img {
		width: 160px;
		height: 160px;
	}



	/* --- partner floor --- */
	.partner-floor {
		padding: 35px 20px 40px;
		margin: -1px -20px;
	}

	.partner-floor:last-child {
		padding-bottom: 20px;
	}



	/* --- review --- */
	.review {
		padding: 20px 20px 30px;
		margin-bottom: 30px;
	}

	.review::before {
		border-width: 15px;
	}

	.review__ava-box {
		margin: 0;
	}

	.review__header-img-cell {
		width: 100px;
	}



	/* --- centered info row --- */
	.centered-info-row {
		margin: 30px 0;
	}



	/* --- food-floor --- */
	.food-floor {
		padding: 35px 20px 40px;
		margin: 0 -20px;
	}

	.food-floor .block-footer-row {
		margin-bottom: 0;
	}

	.food-floor__top-txt,
	.food-floor__top-txt-main,
	.food-floor__top-txt-aside {
		display: block;
		width: auto;
		padding: 0;
	}

	.food-floor__top-txt-aside {
		margin-top: 14px;
	}



	/* --- food-grid --- */
	.food-grid-block {
		margin: 60px 0 40px;
	}

	.food-grid-block__summary {
		margin-top: 15px;
	}

	.food-grid {
		margin: -20px;
	}

	.food-grid__item {
		padding: 20px;
		display: block;
	}



	/* --- grid-table --- */
	.grid-table {
		margin-top: -25px;
	}

	.grid-table__item {
		margin-top: 25px;
		padding-bottom: 25px;
	}

	.grid-table .grid-table__item-title,
	.grid-table .grid-table h3 {
		font-size: 15px;
		line-height: 23px;
		margin: 10px 0;
	}

	.grid-table--break-xs .grid-table__item {
		width: 100%;
	}



	/* --- filter block --- */
	.filter-block__form .form__row {
		width: 100%;
	}

	.filter-block__form .check-grid--3 .check-grid__item {
		width: calc(25% - 10px);
	}



	/* --- tabs-line --- */
	.tabs-line {
		padding: 15px 20px;
	}

	.tabs-line__grid {
		margin: -5px -10px;
	}



	/* --- tab --- */
	.tab-label {
		margin: 5px 10px;
	}



	/* --- filter block --- */
	.filter-block {
		padding: 20px;
	}



	/* --- big map --- */
	.big-map {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.big-map__aside {
		padding: 30px 20px;
	}



	/* --- news type grid --- */
	.news-type-grid {
		margin: -10px -10px -35px;
		width: calc(100% + 20px);
	}

	.news-type-grid__item {
		padding: 10px 10px 35px;
	}



	/* --- text-banner --- */
	.text-banner {
		padding: 20px;
	}



	/* --- reg-floor --- */
	.reg-floor {
		padding: 30px 0;
	}

	.reg-floor+.reg-floor {
		padding-top: 10px;
	}

	.reg-floor-divider {
		margin: 25px 0;
	}



	/* --- infogr floor --- */
	.infogr-floor {
		padding: 30px 0 40px;
	}



	/* --- infogr txt --- */
	.infogr-txt {
		font-size: 15px;
		line-height: 23px;
	}

	.infogr-txt ul>li {
		margin-bottom: 8px;
	}

	.infogr-txt h3 {
		margin-bottom: 15px;
	}



	/* --- block-footer-floor --- */
	.block-footer-row {
		margin-bottom: 0;
	}



	/* --- slider floor --- */
	.slider-floor {
		margin: 0 -20px;
	}

	.slider-floor:first-child {
		margin-top: -20px;
	}

	.slider-floor:last-child {
		margin-bottom: -20px;
	}

	.slider-floor.sq-arrows .slick-arrow::before,
	.slider-floor.sq-arrows .slick-arrow::after {
		top: 50%;
	}



	/* --- floor slide --- */
	.floor-slide {
		background-size: 0;
		background-repeat: no-repeat;
		background-color: #303030;
	}

	.floor-slide::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 50vw;
		background-image: inherit;
		background-position: 30% 50%;
		background-size: cover;
	}

	.floor-slide.floor-slide__content--img::after {
		height: 100%;
		background-position: left;
	}

	.floor-slide__top-icon {
		display: none;
	}

	.floor-slide .floor-slide__content {
		padding: 25px 20px 45px;
		margin: 24vw 0 0;
		width: auto;
		min-width: 0;
		text-align: left;
	}

	.floor-slide .floor-slide__content::before {
		display: none;
	}

	.floor-slide--low .floor-slide__content {
		padding: 25px 20px;
	}

	.floor-slide__content-inner {
		width: auto;
	}

	.floor-slide__bg--xs {
		display: block;
	}



	/* --- tabs line --- */
	.tabs-line--block {
		padding: 0 0 10px;
	}

	.tabs-line--block:first-child {
		margin-top: -10px;
	}



	/* --- block floor table --- */
	.bft {
		margin-left: -20px;
		margin-right: -20px;
	}

	.bft__row,
	.bft__wide-row {
		padding-left: 20px;
		padding-right: 20px;
	}



	/* --- logo grid --- */
	.logo-grid {
		margin-bottom: 0;
	}

	.logo-grid__item {
		padding-bottom: 0;
	}



	/* --- more-link-row --- */
	.more-link-row {
		margin-top: 25px;
	}



	/* --- search type floor --- */
	.st-floor {
		padding: 20px;
		margin: 0 -20px 0;
	}

	.st-floor:first-child {
		margin-top: -20px;
	}

	.st-floor:last-child {
		margin-bottom: -20px;
	}

	.page-nav-floor+.st-floor--subscribe {
		margin-top: 10px;
	}

	.block script:first-child+[id^="comp_"] .st-floor:first-child {
		margin-top: -20px;
	}



	/* --- search results type floor --- */
	.srt-floor {
		padding: 25px 20px 40px;
		margin: 0 -20px 0;
	}



	/* --- subscribe-row --- */
	.subscribe-row__label-txt {
		margin: 0;
	}

	.subscribe-row__label {
		margin-bottom: 10px;
		text-align: center;
	}



	/* --- page-nav-floor --- */
	.page-nav-floor {
		padding: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}



	/* --- subscribe-form --- */
	.subscribe-form {
		max-width: 300px;
		margin: 0 auto;
	}

	.subscribe-form,
	.subscribe-form__item,
	.subscribe-form__btn {
		display: block;
		width: auto;
	}

	.subscribe-form__item,
	.subscribe-form__btn {
		margin-bottom: 20px;
	}

	.subscribe-form__item:last-child,
	.subscribe-form__btn:last-child {
		margin-bottom: 0;
	}

	.subscribe-form__btn {
		text-align: center;
	}

	.subscribe-form .text-input {
		min-width: auto;
	}



	/* --- article-floor --- */
	.article-floor {
		padding: 20px 0 40px;
	}

	.article-floor:first-child,
	.top-floor+.article-floor {
		padding-top: 0px;
	}

	.block>.article-floor:first-child {
		padding-top: 20px;
	}



	/* --- e404 floor --- */
	.e404-floor {
		padding: 30px 0;
	}



	/* --- e404 --- */
	.e404,
	.e404__main,
	.e404__aside {
		display: block;
		width: auto;
		padding: 0;
	}

	.e404__footer {
		margin-top: 30px;
	}

	.e404__aside {
		margin-top: 30px;
	}

	.e404__aside:empty,
	.e404__aside.empty {
		display: none;
	}



	/* --- sitemap block --- */
	.sitemap-block__list {
		-moz-columns: 2;
		-webkit-columns: 2;
		columns: 2;
	}



	/* --- sitemap grid --- */
	.sitemap-grid {
		-moz-columns: 2;
		-webkit-columns: 2;
		columns: 2;
	}

	.sitemap-grid .sitemap-block {
		padding-bottom: 30px;
	}



	/* --- gallery floor --- */
	.gallery-floor {
		margin-left: -20px;
		margin-right: -20px;
	}



	/* --- gallery slider --- */
	.gallery-slider .slick-arrow {
		display: none !important;
	}

	.gallery-slider.single-mode .gallery-slide {
		display: block;
		width: auto;
		margin: 0 20px;
	}



	/* --- gallery slide --- */
	.gallery-slide {
		padding: 0;
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
	}

	.gallery-slider--vertical .gallery-slide {
		padding: 0 20px;
		border-top: none;
		border-bottom: none;
	}


	/* --- title w aside --- */
	.title-w-aside,
	.title-w-aside__main,
	.title-w-aside__aside {
		display: block;
		width: auto;
	}

	.title-w-aside__aside {
		white-space: normal;
		padding-left: 0;
		margin-top: 5px;
	}

	.title-w-aside.h3 .check-grid {
		margin-top: -5px;
	}




	/* --- tools --- */
	.hidden-xs {
		display: none;
	}

	.visible-xs {
		display: block;
	}

	.visible-xs-inline {
		display: inline;
	}

	.visible-xs-ib {
		display: inline-block;
	}

	.visible-xs-table {
		display: table;
	}

	.visible-xs-tc {
		display: table-cell;
	}

	.push-up {
		margin-top: -20px;
	}

	.push-down {
		margin-bottom: -20px;
	}



	/* --- grid --- */
	.col-xs-1 {
		width: 8.333%;
	}

	.col-xs-2 {
		width: 16.666%;
	}

	.col-xs-3 {
		width: 25%;
	}

	.col-xs-4 {
		width: 33.33%;
	}

	.col-xs-5 {
		width: 41.666%;
	}

	.col-xs-6 {
		width: 50%;
	}

	.col-xs-7 {
		width: 58.333%;
	}

	.col-xs-8 {
		width: 66.666%;
	}

	.col-xs-9 {
		width: 75%;
	}

	.col-xs-10 {
		width: 83.333%;
	}

	.col-xs-11 {
		width: 91.666%;
	}

	.col-xs-12 {
		width: 100%;
	}

	.image-grid__item {
		width: 49%;
	}
}

@media (max-width: 639px) {

	.reviews-slider,
	.collage-slider {
		padding-bottom: 25px;
	}

	.collage-slide {
		min-height: auto;
	}

	.reviews-slider .slick-arrow.slick-arrow,
	.collage-slider .slick-arrow.slick-arrow {
		display: none !important;
	}

	.review-item {
		padding: 15px;
	}

	.review-item__header {
		background-size: 25px auto;
	}

	.review-item__photo img {
		width: 60px;
		height: 60px;
	}

	.review-item__photo {
		margin-right: 10px;
	}

	.review-item__info {
		padding-right: 30px;
	}


	.catalog__cell {
		width: 50%;
	}

	.catalog__toolbar {}

	.catalog__toolbar-toggles {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}

	/* --- news type grid --- */
	.block-floor__title {
		text-align: center;
	}

	.news-type-grid__item {
		width: 100%;
	}

	.news-type-grid__item .news-type-item__img {
		padding-top: 0;
		height: calc((100vw - 60px) * .705);
		max-width: 340px;
		max-height: 240px;
	}

	/* flex bug with padding-top: 70.5% */
	.news-type-item {
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
	}



	/* --- text banner --- */
	.text-banner__img {
		max-width: 95px;
		max-height: 65px;
		margin: 2px 0 20px 20px;
	}

	.text-banner__title {
		max-width: calc(100% - 115px);
	}



	/* --- card banner --- */
	.card-banner--service-b .card-banner__content {
		padding-bottom: 50px;
	}

	.card-banner__btns .btn {
		padding-left: 15px;
		padding-right: 15px;
	}

	.card-banner__btns .btn-row {
		margin: 0 -10px -10px 0;
	}

	.card-banner__btns .btn-row .btn {
		margin: 0 10px 10px 0;
	}
}



@media (max-width: 640px) and (min-width: 480px) {
	.news-type-item__img {
		width: 340px;
		height: 240px;
		padding-top: 0;
	}
}

@media (max-width: 479px) {
	.catalog__cell {
		width: 100%;
	}

	/* --- container --- */
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}



	/* --- main menu --- */
	.main-menu__btn {
		padding-left: 10px;
		padding-right: 10px;
	}



	/* --- page header aside menu --- */
	.page-header-am__item {
		padding: 0;
	}

	.page-header-am__item--lang {
		padding-left: 5px;
	}



	/* --- header contacts --- */
	.header-contacts {
		padding-left: 10px;
		padding-right: 10px;
	}



	/* --- tabs block --- */
	.tabs-block {
		margin-left: -10px;
		margin-right: -10px;
	}



	/* --- page footer --- */
	.page-footer-bottom {
		padding: 20px 0;
	}

	.page-footer-bottom__row,
	.page-footer-bottom__left,
	.page-footer-bottom__right {
		display: block;
		width: auto;
		text-align: center;
	}

	.page-footer-bottom__left+.page-footer-bottom__right {
		margin-top: 8px;
	}



	/* --- price block --- */
	.price-block__li,
	.price-block--break-sm .price-block__li {
		width: 100%;
	}



	/* --- page footer --- */
	.footer-menu__col--social {
		text-align: center;
	}



	/* --- icon col block --- */
	.icon-col-block__col {
		width: calc(100% - 20px);
	}

	.page-header .icon-col-block__col {
		width: calc(50% - 20px);
	}



	/* --- text input --- */
	textarea.text-input {
		padding-left: 15px;
		padding-right: 15px;
	}



	/* --- icon col block --- */
	.icon-col-block__title--contact {
		font-size: 20px;
		line-height: 28px;
	}

	.top-floor .icon-col-block__icon .svg-icon {
		width: 25px;
		height: 25px;
		margin-top: -3px;
	}

	.top-floor .icon-col-block__icon {
		margin-right: 15px;
	}



	/* --- filter block --- */
	.filter-block__form .check-grid--3 .check-grid__item {
		width: calc(33.33% - 10px);
	}



	/* --- review slider --- */
	.review-slider {
		padding: 25px 0 45px;
		margin-bottom: 30px;
	}

	.review-slider::before,
	.review-slider::after {
		border-width: 15px;
	}

	.review-slider .slick-arrow {
		display: none !important;
	}



	/* --- review slide --- */
	.review-slide {
		padding: 0 20px;
	}



	/* --- page nav --- */
	.page-nav__back {
		margin-right: 10px;
	}

	.page-nav__next {
		margin-left: 10px;
	}

	.page-nav__btn {
		margin: 0;
	}



	/* --- sitemap block --- */
	.sitemap-block__list {
		-moz-columns: 1;
		-webkit-columns: 1;
		columns: 1;
	}



	/* --- sitemap grid --- */
	.sitemap-grid {
		-moz-columns: 1;
		-webkit-columns: 1;
		columns: 1;
	}



	/* --- cert --- */
	.cert {
		padding: 20px;
	}

	.cert__img {
		max-width: 100px;
	}

	.cert__txt,
	.cert__link-row {
		margin-right: 100px;
	}



	/* --- card slide --- */
	.card-slider {
		max-width: none;
	}

	.card-slider .slick-arrow {
		right: auto;
		left: 50%;
	}

	.card-slider .slick-prev {
		margin-left: -45px;
	}

	.card-slider .slick-next {
		margin-left: 5px;
	}

	.card-slider .card-slide__txt-cell {
		padding-bottom: 55px;
	}



	/* --- card slide --- */
	.card-slide,
	.card-slide__img-cell,
	.card-slide__txt-cell {
		display: block;
	}

	.card-slide__txt-cell {
		width: auto;
		padding: 0;
	}

	.card-slide__img-cell {
		max-width: 240px;
		margin-bottom: 15px;
	}



	/* --- infogr-item --- */
	.infogr-item__title br {
		display: none;
	}




	/* --- tools --- */
	.hidden-xxs {
		display: none;
	}

	.visible-xxs {
		display: block;
	}

	.visible-xxs-inline {
		display: inline;
	}

	.visible-xxs-ib {
		display: inline-block;
	}

	.visible-xxs-table {
		display: table;
	}

	.visible-xxs-tc {
		display: table-cell;
	}



	/* --- grid --- */
	.col-xxs-1 {
		width: 8.333%;
	}

	.col-xxs-2 {
		width: 16.666%;
	}

	.col-xxs-3 {
		width: 25%;
	}

	.col-xxs-4 {
		width: 33.33%;
	}

	.col-xxs-5 {
		width: 41.666%;
	}

	.col-xxs-6 {
		width: 50%;
	}

	.col-xxs-7 {
		width: 58.333%;
	}

	.col-xxs-8 {
		width: 66.666%;
	}

	.col-xxs-9 {
		width: 75%;
	}

	.col-xxs-10 {
		width: 83.333%;
	}

	.col-xxs-11 {
		width: 91.666%;
	}

	.col-xxs-12 {
		width: 100%;
	}

	.prediction {
		margin: 15px auto;
	}

	.prediction__body {
		min-height: 550px;
	}

	.prediction__title {
		font-size: 24px;
	}

	.gallery-slider--vertical .gallery-slide {
		padding: 0px;
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
	}

	.image-grid__item {
		width: 100%;
	}
}




@media (max-width: 379px) {

	/* --- infogr-item --- */
	.infogr-item__img-cell {
		padding-right: 20px;
	}

	.infogr-item__img-box {
		width: 40px;
		height: 40px;
	}

	.prediction__body {
		min-height: 490px;
	}
}



@media (max-width: 359px) {

	/* --- news li --- */
	.news-li,
	.news-li__img-cell,
	.news-li__txt-cell {
		display: block;
	}

	.news-li__img-cell {
		width: auto;
		padding: 0;
		margin-bottom: 10px;
	}



	/* --- mini cafe slide --- */
	.mc-slide,
	.mc-slide.slick-slide {
		padding: 20px 20px 280px;
		min-height: 510px;
	}



	/* --- icon col block --- */
	.page-header .icon-col-block__col {
		width: calc(100% - 20px);
	}



	/* --- text banner --- */
	.text-banner__img {
		display: none;
	}

	.text-banner__title {
		max-width: none;
	}

	.text-banner--sm .text-banner__title,
	.text-banner--sm .text-banner__subtitle,
	.text-banner--sm .text-banner__txt {
		margin-right: 0;
	}



	/* --- news type item --- */
	.news-type-item__top-row-labels .label {
		padding-left: 10px;
		padding-right: 10px;
	}



	/* --- cert --- */
	.cert {
		min-height: 0;
	}

	.cert__images-wrap {
		display: none;
	}

	.cert__txt,
	.cert__link-row {
		margin-right: 0px;
		max-width: none;
	}

	.cert__title-main {
		font-size: 20px;
		line-height: 28px;
	}



	/* --- tools --- */
	.hidden-xxxs {
		display: none;
	}

	.visible-xxxs {
		display: block;
	}

	.visible-xxxs-inline {
		display: inline;
	}

	.visible-xxxs-ib {
		display: inline-block;
	}

	.visible-xxxs-table {
		display: table;
	}

	.visible-xxxs-tc {
		display: table-cell;
	}



	/* --- grid --- */
	.col-xxxs-1 {
		width: 8.333%;
	}

	.col-xxxs-2 {
		width: 16.666%;
	}

	.col-xxxs-3 {
		width: 25%;
	}

	.col-xxxs-4 {
		width: 33.33%;
	}

	.col-xxxs-5 {
		width: 41.666%;
	}

	.col-xxxs-6 {
		width: 50%;
	}

	.col-xxxs-7 {
		width: 58.333%;
	}

	.col-xxxs-8 {
		width: 66.666%;
	}

	.col-xxxs-9 {
		width: 75%;
	}

	.col-xxxs-10 {
		width: 83.333%;
	}

	.col-xxxs-11 {
		width: 91.666%;
	}

	.col-xxxs-12 {
		width: 100%;
	}
}




@media (min-width: 1000px) {
	.self-clearing-cols .col-lg-1:nth-child(12n+1) {
		clear: both;
	}

	.self-clearing-cols .col-lg-2:nth-child(6n+1) {
		clear: both;
	}

	.self-clearing-cols .col-lg-3:nth-child(4n+1) {
		clear: both;
	}

	.self-clearing-cols .col-lg-4:nth-child(3n+1) {
		clear: both;
	}

	.self-clearing-cols .col-lg-6:nth-child(2n+1) {
		clear: both;
	}

	.self-clearing-cols .col-lg-12 {
		clear: both;
	}
}



@media (max-width: 999px) and (min-width: 768px) {
	.self-clearing-cols .col-sm-1:nth-child(12n+1) {
		clear: both;
	}

	.self-clearing-cols .col-sm-2:nth-child(6n+1) {
		clear: both;
	}

	.self-clearing-cols .col-sm-3:nth-child(4n+1) {
		clear: both;
	}

	.self-clearing-cols .col-sm-4:nth-child(3n+1) {
		clear: both;
	}

	.self-clearing-cols .col-sm-6:nth-child(2n+1) {
		clear: both;
	}

	.self-clearing-cols .col-sm-12 {
		clear: both;
	}
}



@media (max-width: 767px) {
	.self-clearing-cols .col-xs-1:nth-child(12n+1) {
		clear: both;
	}

	.self-clearing-cols .col-xs-2:nth-child(6n+1) {
		clear: both;
	}

	.self-clearing-cols .col-xs-3:nth-child(4n+1) {
		clear: both;
	}

	.self-clearing-cols .col-xs-4:nth-child(3n+1) {
		clear: both;
	}

	.self-clearing-cols .col-xs-6:nth-child(2n+1) {
		clear: both;
	}

	.self-clearing-cols .col-xs-12 {
		clear: both;
	}
}


.bx-context-toolbar-empty-area>.page-header__cell-contact {
	height: 30px;
}

/* ************************************************************** */
.features {
	margin: 45px 0;
}

.features__grid {
	display: flex;
	flex-wrap: wrap;
	margin: -10px -20px;
	width: calc(100% + 40px);
}

.features__cell {
	padding: 10px 20px;
	box-sizing: border-box;
	width: 50%;
	display: flex;
}

.features__item {
	flex-grow: 1;
	background-color: #f0f0f0;
	border-radius: 8px;
	padding: 25px 30px 30px;
}

.features__img {
	float: right;
	width: 200px;
	height: 130px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.features__caption {
	color: #303030;
	font-size: 26px;
	font-weight: 600;
	line-height: 34px;
}

.features__descr {
	font-size: 17px;
	font-style: italic;
	line-height: 25px;
	margin: 15px 0;
}

.features__text {
	font-size: 15px;
	line-height: 23px;
}

.features--custom .features__grid {
	margin: -10px;
	width: calc(100% + 20px);
}

.features--custom .features__cell {
	padding: 10px;
}

.icons-block {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 45px 0;
}

.icons-block .btn {
	margin: 0 50px;
	flex-shrink: 0;
}

.icons-block__col {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	width: 40%;
}

.slider-floor .slider-floor__slide {
	position: relative;
}

.news-type-item__top-row {
	margin: 15px 0;
}

.news-type-item__label {
	display: inline-block;
	align-items: center;
	box-sizing: border-box;
	padding: 6px 15px;
	opacity: 0.7;
	border: 1px solid #ef6b01;
	border-radius: 13px;
	font-size: 12px;
	color: #ef6b01;
	line-height: 1;
	text-transform: uppercase;
	margin-right: 20px;
}

.news-type-item__label--active {
	background-color: #ef6b01;
	color: #ffffff;
}

.open-modal {
	overflow: hidden;
	height: 100vh;
}

.modal,
.modal__overlay {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal__overlay {
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
}

.modal {
	display: flex;
	z-index: 1000;
	padding: 40px 20px;
	box-sizing: border-box;
	overflow-y: auto;
	transition-duration: 300ms;
}

.modal::-webkit-scrollbar {
	width: 0;
}

.modal::-webkit-scrollbar-thumb {
	width: 0;
}

.modal::-webkit-scrollbar-button {
	display: none;
	width: 0;
	height: 0;
}

.modal::-webkit-scrollbar-corner {
	background-color: transparent;
}

.modal--min .modal__layout {
	width: 440px;
}

.modal--mid .modal__layout {
	width: 1000px;
}

.modal--hide {
	visibility: hidden;
	opacity: 0;
}

.modal--dark .modal__layout {
	background: #1A1A1A;
	color: #fff;
}

.modal--dark .modal__close {
	color: #fff;
}

.modal__layout {
	position: relative;
	z-index: 15;
	padding: 30px 30px 40px;
	background: #fff;
	margin: auto;
	border-radius: 23px;
	box-sizing: border-box;
	max-width: 100%;
}

.modal__close {
	width: 20px;
	height: 20px;
	border: none;
	background: none;
	outline: none;
	position: absolute;
	bottom: calc(100% + 15px);
	right: 0;
	transition-duration: 300ms;
	cursor: pointer;
}

.modal__close::before {
	width: 20px;
	height: 3px;
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.modal__close::after {
	width: 20px;
	height: 3px;
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.modal__close::before,
.modal__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.modal__close::after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.modal__header {
	margin-bottom: 25px;
}

.modal__title mark {
	background: none;
	color: #E8592F;
}

.modal__title {
	font-weight: 600;
	font-size: 28px;
	line-height: 145.69%;
	text-align: center;
}

.modal__action {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.modal .form__grid-item {
	width: 100%;
}

.show-form {
	overflow: hidden;
}

.show-form .modal {
	visibility: visible;
	opacity: 1;
}

.icon-preloader {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}

.icon-preloader::after {
	content: '';
	width: 100px;
	height: 100px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 6px solid #000;
	border-top-color: transparent;
	animation: spinner 1s linear infinite;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.berlio-info__grid {
	margin: -10px;
	display: flex;
}

.berlio-info__cell {
	padding: 10px;
	width: 33.33%;
	flex-grow: 1;
	display: flex;
}

.berlio-info__item {
	width: 100%;
	padding: 24px 21px;
	background: #313131;
	border-radius: 17px;
}

.berlio-info__icon img {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.berlio-info__icon {
	width: 65px;
	height: 65px;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	box-shadow: 2px 8px 32px rgba(255, 83, 33, 0.28);
}

.berlio-info__title mark {
	background: none;
}

.berlio-info__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 125.19%;
	color: #FFFFFF;
	margin-bottom: 10px;
}

.berlio-info__text {
	font-size: 15px;
	line-height: 125.19%;
	color: #D1D1D1;
	opacity: 0.4;
}

.berlio-info__btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: -24px;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1A1A1A;
	position: relative;
	z-index: 10;
}

@media (any-hover: hover),
(-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.modal__close:hover {
		opacity: 0.8;
	}
}

.main-slider {
	display: flex;
	overflow: hidden;
}

.main-slide {
	width: 100%;
	flex-shrink: 0;
}

.main-slider--narrow {
	border-radius: 8px;
	overflow: hidden;
}

.main-slider--narrow .slick-arrow {
	width: 95px;
}

.main-slider--narrow .slick-arrow::before {
	width: 48px;
	height: 48px;
	margin-left: -24px;
	margin-top: -24px;
}

.main-slider--narrow .slick-arrow::after {
	width: 12px;
	height: 12px;
}

.main-slider--narrow .slick-prev::after {
	margin: -6px 0 0 -4px;
}

.main-slider--narrow .slick-next::after {
	margin: -6px 0 0 -9px;
}

.main-slider--narrow .main-slide__container {
	padding: 30px 0;
	height: 300px;
}

.main-slider--narrow .slick-dots button::before {
	width: 7px;
	height: 7px;
}

.footer-menu__award {
	display: flex;
	align-items: center;
	color: #919191;
	font-size: 13px;
}

.footer-menu__award img {
	margin-right: 10px;
	width: 40px;
	height: 25px;
}

.page-header__cell-awards {
	margin-right: 10px;
}

.page-header__cell-award {
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-header__cell-award img {
	width: 54px;
	height: 36px;
	flex-shrink: 0;
}

.main-slider--adaptive .main-slide {
	width: 100vw;
	max-width: 100%;
}

@media (max-width: 999px) {
	.features__cell {
		width: 100%;
	}

	.features__item {
		padding: 15px 20px 20px;
	}

	.features__img {
		justify-content: flex-start;
		float: none;
		height: auto;
	}

	.icons-block .btn {
		margin: 0 20px;
	}

	.page-header__cell-awards {
		display: none;
	}

	.berlio-info__grid {
		flex-direction: column;
	}

	.berlio-info__cell {
		width: 100%;
	}

	.berlio-info__item {
		text-align: center;
	}

	.berlio-info__icon {
		margin-left: auto;
		margin-right: auto;
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}

	.berlio-info__title {
		font-size: 18px;
		line-height: 1.2;
	}

	.berlio-info__text {
		font-size: 14px;
		line-height: 1.35;
	}

	.berlio-info__btn {
		transform: rotate(90deg);
	}
}

@media (max-width: 767px) {
	.main-slider--adaptive .main-slide {
		background-size: 0;
	}

	.main-slider--adaptive .main-slide::before {
		background-image: inherit;
		content: '';
		display: block;
		height: 30vw;
		background-size: cover;
		border-radius: 8px;
	}

	.main-slider--adaptive .container {
		padding: 0;
		margin: 0;
	}

	.main-slider--adaptive .main-slide__container .main-slide__action {
		margin-top: 10px;
	}

	.main-slider--adaptive .main-slide__container .main-slide__txt {
		margin: 10px 0;
	}

	.main-slider--adaptive .main-slide__container .h1 {
		margin-bottom: 10px;
	}

	.main-slider--adaptive .main-slide__container::before {
		display: none;
	}

	.main-slider--adaptive .main-slide__container {
		max-width: none;
		height: auto;
		width: auto;
		margin: 0;
		padding: 0;
		margin-top: 15px;
	}

	.main-slider--adaptive .bx_slide_white {
		color: #303030;
	}

	.main-slider--adaptive .slick-dots {
		bottom: auto;
		top: calc(30vw - 25px);
	}

	.features {
		margin: 30px 0;
	}

	.icons-block {
		margin: 30px 0;
		flex-wrap: wrap;
	}

	.icons-block .btn {
		margin: 20px 0;
	}

	.icons-block__col {
		width: 100%;
	}

	.modal {
		padding: 10px;
	}

	.modal__layout {
		border-radius: 15px;
		padding: 25px 15px;
	}

	.modal__header {
		margin-bottom: 15px;
	}

	.modal__title {
		font-size: 20px;
		line-height: 1.2;
	}

	.modal__close {
		right: 7px;
		top: 7px;
	}
}

@media (max-width: 480px) {
	.main-slider--adaptive .main-slide__container .h1 {
		font-size: 22px;
		line-height: 1.2;
	}
}

.snippet-btn {
	display: block;
	max-width: 300px;
}

.snippet-btn.left {
	margin-right: auto;
}

.snippet-btn.center {
	margin: auto;
}

.snippet-btn.right {
	margin-left: auto;
}

.snippet-btn-1 .btn__txt {
	color: #000;
	font-weight: 500;
}

.snippet-btn-1 {
	border: 1px solid #ef6b01;
}

.catalog-item__label.combo {
	background: linear-gradient(180deg, #FA6D47 0%, #E43E35 100%);
}

.catalog-item__label.new {
	background: linear-gradient(180deg, #82BA41 0%, #4D8F36 100%);
}

.catalog-item__label.bestseller {
	background: linear-gradient(180deg, #785CAC 0%, #563C9F 100%);
}

.catalog-item__label.hot {
	background: linear-gradient(180deg, #cc0000 0%, #7f0000 100%);
}

.catalog-item__label.healthy {
	background: linear-gradient(180deg, #384d84 0%, #4e6192 100%);
}


/* profile */

.page-header__profile {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	margin-left: auto;
}

.profile-btn {
	position: relative;
}

.profile-btn.open .profile-btn__switch-arrow {
	transform: rotate(180deg);
}

.profile-btn__switch {
	display: flex;
	align-items: center;
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	transition: color .2s;
	cursor: pointer;
}

.no-touch .profile-btn__switch:hover {
	color: #ef6b01;
}

.profile-btn__switch-icon {
	height: 36px;
	width: 36px;
	margin-right: 9px;
}

.profile-btn__switch-arrow {
	width: 10px;
	height: 6px;
	color: #919191;
	margin-left: 8px;
	transition: transform .2s;
}

.profile-btn__drop {
	position: absolute;
	min-width: 190px;
	bottom: -10px;
	right: 0;
	transition: transform .3s, opacity .3s;
	transform: translateY(100%) scaleY(0);
	opacity: 0;
	transform-origin: top;
	background: #fff;
	box-shadow: 0 0 24px rgba(0, 0, 0, .15);
	border-radius: 5px;
	padding: 16px;
}

.profile-btn.open .profile-btn__drop {
	transform: translateY(100%) scaleY(1);
	opacity: 1;
}

.profile-btn__drop-list {
	font-size: 15px;
	line-height: 23px;
}

.profile-btn__drop-li {
	color: #303030;
	margin-bottom: 11px;
}

.profile-btn__drop-link {
	display: inline-flex;
	align-items: center;
	color: #303030;
}

.profile-btn__drop-li:last-child {
	margin-bottom: 0;
}

.profile-btn__drop-li-icon {
	height: 18px;
	width: 18px;
	margin-right: 8px;
	color: inherit;
}

@media (max-width: 767px) {

	.profile-btn__switch-name {
		display: none;
	}

	.profile-btn__switch-arrow {
		margin-left: 0;
	}

	.profile-btn__drop {
		z-index: 1000;
	}
}


/* footer-profile */

.footer-profile {
	font-size: 15px;
	line-height: 23px;
	color: #919191;
	padding: 30px 0;
	background-color: #fff;
}

.footer-profile__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-profile__dev {
	color: #919191;
}

@media (max-width: 767px) {
	.footer-profile {
		padding: 24px 0;
		;
	}

	.footer-profile__content {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

	.footer-profile__left {
		margin-bottom: 16px;
	}
}

/* tabs */

.tabs {
	background-color: #fff;
}

.tabs__head {
	display: flex;
	padding: 20px 40px;
	border-bottom: 1px solid #e2e2e2;
}

.tabs__tab {
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	transition: color .2s, border-color .2s;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	margin-right: 40px;
	white-space: nowrap;
}

.tabs__tab.open {
	color: #ef6b01;
	border-bottom-color: #ef6b01;
}

.tabs__tab:active,
.no-touch .tabs__tab:hover {
	color: #ef6b01;
}

.tabs__tab:last-child {
	margin-right: 0;
}

.tabs__sections {
	padding: 40px 60px 70px 60px;
}

.tabs__section {
	display: none;
}

.tabs__section.open {
	display: block;
}

.tabs__section-title {
	margin-bottom: 30px;
}

.tabs__section-actions {
	margin-top: 30px;
}

.tabs__section-action {
	margin-right: 22px;
}

.tabs__section-action:last-child {
	margin-right: 0;
}

@media (max-width: 767px) {

	.tabs__head {
		flex-wrap: nowrap;
		overflow: auto;
		margin: 0 -20px;
		padding: 20px 20px 0;
		scrollbar-width: none;
		background-color: #fff;
	}

	.tabs__head::-webkit-scrollbar {
		display: none;
		width: 0;
	}

	.tabs__tab {
		margin-right: 24px;
	}

	.tabs__tab:last-child {
		margin-right: 0;
	}

	.tabs__sections {
		padding: 24px 20px;
		margin: 0 -20px;
		background: #fff;
	}

	.tabs__section-title {
		margin-bottom: 16px;
	}

	.tabs__section-actions {
		display: flex;
		flex-direction: column;
		margin-top: 24px;
	}

	.tabs__section-action {
		margin: 0 0 22px;
	}

	.tabs__section-action:last-child {
		margin: 0;
	}
}

@media (max-width: 479px) {

	.tabs__head {
		margin: 0 -10px;
		padding: 20px 10px 0;
	}

	.tabs__sections {
		padding: 24px 10px;
		margin: 0 -10px;
	}
}

/* fields-grid */

.fields-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px 30px;
}

.fields-row__item {
	flex: 1 1 33.33%;
	padding-bottom: 10px;
}

@media (max-width: 767px) {
	.fields-row {
		flex-direction: column;
		margin: 0 -20px 24px;
	}

	.fields-row__item {
		flex: 0;
		padding-bottom: 0;
	}
}

@media (max-width: 479px) {
	.fields-row {
		margin: 0 -10px 24px;
	}
}


/* login tabs */

.login-tabs__head {
	display: flex;
	margin-bottom: 15px;
}

.login-tabs__tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	background: #fff;
	border-radius: 20px;
	transition: background-color .2s, color .2s;
	cursor: pointer;
	margin-right: 10px;
	color: #EF6B01;
	font-size: 15px;
	line-height: 18px;
	white-space: nowrap;
}

.login-tabs__tab:last-child {
	margin-right: 0;
}

.login-tabs__tab.open,
.login-tabs__tab:active,
.no-touch .login-tabs__tab:hover {
	background-color: #EF6B01;
	color: #fff;
}

.login-tabs__tab::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 30%) rotate(45deg);
	height: 10px;
	width: 10px;
	background-color: transparent;
	transition: background-color .2s;
}

.login-tabs__tab.open::before {
	background-color: #EF6B01;
}

.login-tabs__section {
	display: none;
	background: #fff;
	border-radius: 5px;
}

.login-tabs__section.open {
	display: block;
}

.login-tabs__section-content div[id^=comp_] {
	display: flex;
}

.login-tabs__form {
	flex: 0 0 50%;
}

.login-tabs__form-block {
	padding: 40px 82px;
	border-bottom: 1px solid #E2E2E2;
}

.login-tabs__form-block:first-child {
	padding-top: 60px;
}

.login-tabs__form-block:last-child {
	border-bottom: 0;
}

.login-tabs__form-title {
	padding: 0 20px;
}

.login-tabs__form-subtitle {
	padding: 0 20px;
	font-size: 15px;
	line-height: 23px;
	font-style: italic;
}

.login-tabs__form-actions {
	margin-top: 20px;
	padding: 0 20px;
}

.login-tabs__form-action {
	margin-right: 20px;
}

.login-tabs__form-action:last-child {
	margin-right: 0;
}

.login-tabs__banner {
	position: relative;
	flex: 1 1 50%;
	padding: 60px 80px;
	background-size: cover;
}

.login-tabs__banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #5EA221 25.15%, rgba(94, 162, 33, .8) 100%);
}

.login-tabs__banner-content {
	position: relative;
	font-size: 20px;
	line-height: 28px;
	color: #fff;
	max-width: 320px;
}

.login-tabs__message {
	padding: 0 20px;
	color: #5EA221;
}

.login-tabs__message--warn {
	color: #EF6B01;
}

@media (max-width: 767px) {

	.login-tabs__head {
		flex-wrap: nowrap;
		overflow: auto;
		margin-right: -10px;
		margin-left: -10px;
		padding: 0 10px;
	}

	.login-tabs__tab {
		height: 30px;
		font-size: 13px;
	}

	.login-tabs__tab::before {
		display: none;
	}

	.login-tabs__section-content div[id^=comp_] {
		flex-direction: column;
	}

	.login-tabs__form {
		flex: 0;
	}

	.login-tabs__form-block {
		padding: 24px 0;
	}

	.login-tabs__form-block:first-child {
		padding-top: 24px;
	}


	.login-tabs__form-actions {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.login-tabs__form-action {
		margin: 0 0 20px;
	}

	.login-tabs__form-action:last-child {
		margin: 0;
	}

	.login-tabs__banner {
		flex: 0;
		padding: 24px 10px;
	}

	.login-tabs__banner-content {
		max-width: 100%;
		font-size: 16px;
		line-height: 24px;
	}
}

/* form-field */

.form-field {
	padding: 20px;
}

.form-field.error {
	background: rgba(239, 107, 1, .1);
}

.form-field__top {
	display: flex;
	margin-bottom: 16px;
}

.form-field__label {
	font-size: 13px;
	line-height: 18px;
	color: #303030;
}

.form-field__label-required {
	color: #E63C2F;
}

.form-field__error {
	font-size: 13px;
	line-height: 18px;
	color: #E63C2F;
	margin-left: 15px;
}

.form-field__input-block {
	display: flex;
	position: relative;
	padding-bottom: 8px;
	border-bottom: 2px solid #E2E2E2;
}

.form-field.error .form-field__input-block {
	border-color: rgba(230, 60, 47, .3);
}

.form-field__input {
	width: 100%;
	height: 24px;
	padding: 0;
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	border: 0;
	outline: 0;
	-webkit-appearance: none;
	background-color: #fff;
}

.form-field__input::placeholder {
	font-size: 15px;
	line-height: 23px;
	color: #B9B9B9;
}

.form-field__input-btn {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #919191;
	transition: color .2s;
	cursor: pointer;
}

.form-field__input-btn:active,
.no-touch .form-field__input-btn:hover {
	color: #EF6B01;
}

.form-field__input-btn-icon {
	display: none;
	height: 24px;
	width: 24px;
}

.form-field__input[type="password"]~.form-field__input-btn .pass-icon {
	display: initial;
}

.form-field__input[type="text"]~.form-field__input-btn .text-icon {
	display: initial;
}

.form-field__select {
	border: 0;
	outline: none;
	width: 100%;
	height: 23px;
	background-color: transparent;
	color: #000;
	font-size: 15px;
	line-height: 23px;
	padding: 0;
}

:root {
	--input-date-bg-icon: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M16 3V4H8V3C8 2.45 7.55 2 7 2C6.45 2 6 2.45 6 3V4H5C3.89 4 3.01 4.9 3.01 6L3 20C3 21.1 3.89 22 5 22H19C20.1 22 21 21.1 21 20V6C21 4.9 20.1 4 19 4H18V3C18 2.45 17.55 2 17 2C16.45 2 16 2.45 16 3ZM16 13H13C12.45 13 12 13.45 12 14V17C12 17.55 12.45 18 13 18H16C16.55 18 17 17.55 17 17V14C17 13.45 16.55 13 16 13ZM6 20H18C18.55 20 19 19.55 19 19V9H5V19C5 19.55 5.45 20 6 20Z' fill='gray'/></svg>");
}

input.form-field__date[type="date"]::-webkit-calendar-picker-indicator {
	background-image: var(--input-date-bg-icon);
	cursor: pointer;
}

@media (max-width: 767px) {

	.form-field {
		padding: 12px 20px;
	}

	.form-field__top {
		margin-bottom: 8px;
	}
}

@media (max-width: 479px) {

	.form-field {
		padding: 12px 10px;
	}
}


.success-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	font-size: 15px;
	line-height: 18px;
	padding: 0 30px;
	background: rgba(135, 183, 38, .2);
	border-radius: 20px;
	color: #529025;
}

.success-btn.wait-btn {
	background: rgba(255, 169, 39, .2);
	color: #EF940B;
}

.success-btn__icon {
	flex: 0 0 auto;
	height: 10px;
	width: 14px;
	margin-right: 8px;
}

.wait-btn__icon {
	flex: 0 0 auto;
	height: 15px;
	width: 14px;
	margin-right: 8px;
}

.status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 12px;
	background: rgba(81, 185, 72, .2);
	border-radius: 14px;
	font-size: 13px;
	line-height: 18px;
	color: #303030;
	white-space: nowrap;
}

.status.status--red {
	background: rgba(230, 60, 47, .2);
}

.status.status--orange {
	background: rgba(255, 169, 39, .2);
}

@media (max-width: 767px) {

	.success-btn {
		height: unset;
		padding: 6px 30px;
	}
}

/* profile-table  */

.profile-table {
	width: 100%;
	text-align: left;
}

.profile-table__table {
	width: 100%;
}

.profile-table th {
	font-size: 13px;
	line-height: 18px;
	color: #B9B9B9;
	padding: 12px;
	border: 0;
	border-bottom: 1px solid #E2E2E2;
}

.profile-table td {
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	padding: 12px;
	border: 0;
	border-bottom: 1px solid #E2E2E2;
}

.profile-table th:first-child {
	padding-left: 0;
}

.profile-table td:first-child {
	padding-left: 0;
}

.profile-table td:last-child {
	padding-right: 0;
}

@media (max-width: 767px) {

	.profile-table {
		overflow: auto;
		margin: 0;
		width: unset;
		scrollbar-width: none;
	}

	.profile-table::-webkit-scrollbar {
		display: none;
		width: 0;
	}

	.profile-table__table {
		width: 100%;
		padding: 0 20px;
	}

	.profile-table th {
		white-space: nowrap;
		padding: 12px;
	}
}

@media (max-width: 479px) {

	.profile-table {
		margin: 0;
	}
}

.profile-pagination {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.profile-pagination__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	border: 1px solid #D7D7D7;
	margin: 0 0 0 16px;
}

.profile-pagination__arrow-icon {
	width: 12px;
	height: 20px;
	color: #9A9999;
}

.no-touch .profile-pagination__arrow:hover .profile-pagination__arrow-icon {
	color: #000;
}

.profile-pagination__arrow--prev .profile-pagination__arrow-icon {
	transform: scale(-1);
}

.profile-pagination__arrow--prev {
	margin: 0 16px 0 0;
}

.profile-pagination__item {
	font-size: 15px;
	line-height: 23px;
	border-bottom: 3px solid transparent;
	margin: 0 4px;
	padding: 0 10px 4px;
	color: #303030;
}

.profile-pagination__item.active {
	border-color: #EF6B01;
	color: #EF6B01;
}

.no-touch .profile-pagination__item:hover {
	color: #EF6B01;
}


@media (max-width: 767px) {

	.profile-pagination {
		flex-wrap: nowrap;
		overflow: auto;
		margin: 24px -20px 0;
		padding: 0 20px;
	}

	.profile-pagination__arrow {
		flex: 0 0 auto;
		height: 36px;
		width: 36px;
	}

	.profile-pagination__arrow-icon {
		width: 10px;
		height: 18px;
	}
}

.tabs-title-block {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.tabs-title-block__title {
	flex: 0 1 auto;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.title-note {
	flex: 0 0 auto;
	position: relative;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: #f0f0f0;
	cursor: pointer;
	transition: background-color .2s;
	color: #acacac;

}

.title-note::before {
	content: "i";
	position: absolute;
	font-size: 13px;
	line-height: 13px;
	color: #acacac;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: color .2s;
}

.no-touch .title-note:hover {
	background-color: #ccc;
	color: #f0f0f0;
}

.no-touch .title-note:hover::before {
	color: #f0f0f0;
}

.title-note:not(:first-child) {
	margin-left: 10px;
}

.title-note__content {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	max-width: 300px;
	min-width: 200px;
	background-color: #fff;
	border-radius: 12px;
	padding: 10px;
	transform: translate(-50%, 0);
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, .15);
	color: #acacac;
	transition: opacity .2s, visibility .2s;
	visibility: hidden;
	opacity: 0;
	font-size: 15px;
	line-height: 23px;
}

.title-note:hover .title-note__content {
	visibility: visible;
	opacity: 1;
	transition-delay: .2s;
}

@media (max-width: 1220px) {

	.title-note__content {
		left: unset;
		right: 0;
		width: calc(100vw - 60px);
		transform: translate(0, 0);
		min-width: unset;
		max-width: 300px;
	}
}

@media (max-width: 1220px) {

	.title-note:not(:first-child),
	.title-note {
		margin-left: auto;
	}
}

.news-type-item__countdow.finished .news-type-item__countdow-caption--run {
	display: none;
}

.news-type-item__countdow.finished .news-type-item__countdow-caption--finish {
	display: block;
}

.news-type-item__countdow {
	font-style: italic;
}

.news-type-item__countdow-caption {
	margin-bottom: 5px;
}

.news-type-item__countdow-caption--finish {
	display: none;
}

/* jQuery Countdown styles 2.0.0. */
.is-countdown {
	border-radius: 5px;
}

.countdown-rtl {
	direction: rtl;
}

.countdown-row {
	display: flex;
}

.countdown-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: white;
	float: left;
	font-size: 75%;
	text-align: center;
	line-height: 1;
	position: relative;
}

.countdown-amount {
	font-size: 21px;
	font-weight: 500;
}

.countdown-period {
	display: block;
	font-size: 11px;
	text-transform: lowercase;
	margin-top: 1px;
}

.countdown-descr {
	display: block;
	width: 100%;
}

.countdow--separate {
	background: none;
	display: inline-block;
	vertical-align: top;
}

.countdow--separate .countdown-section {
	color: #000;
}

.countdow--separate .countdown-section+.countdown-section {
	margin-left: 20px;
}

.countdow--separate .countdown-amount {
	font-weight: 700;
}

.puzzle {
	margin-bottom: 60px;
}

.puzzle img {
	max-width: 100%;
}

.puzzle__banner {
	text-align: center;
	padding-bottom: 123px;
	background: #fff;
}

.puzzle__banner-img {
	margin-bottom: 87px;
}

.puzzle__banner-title {
	font-weight: 700;
	font-size: 96px;
	line-height: 117px;
	color: #0d083e;
	margin-bottom: 34px;
	text-transform: uppercase;
}

.puzzle__banner-text {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	color: #040c34;
}

.puzzle__banner-text p+p {
	margin-top: 10px;
}

.puzzle__list {
	counter-reset: list;
	list-style: none;
	padding: 0;
}

.puzzle__item {
	counter-increment: list;
}

.puzzle__subtitle {
	padding: 19px 0;
	font-weight: 700;
	font-size: 64px;
	line-height: 78px;
	color: #050d33;
	text-align: center;
	margin: 0;
}

.puzzle__subtitle::before {
	display: inline-block;
	margin-right: 0.2em;
	content: counter(list) ".";
}

.puzzle__block {
	padding-top: 20px;
	padding-bottom: 133px;
	background: #fff;
}

.puzzle__block-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.puzzle__block-visual .slick-track {
	display: flex;
	align-items: center;
}

.puzzle__block-visual {
	width: 100%;
	background: #ddd;
	-webkit-box-shadow: 20px 20px 51px rgba(18, 11, 78, 0.06);
	box-shadow: 20px 20px 51px rgba(18, 11, 78, 0.06);
	max-width: 1285px;
}

.puzzle__block-visual+.puzzle__block-visual {
	margin-top: 20px;
}

.puzzle__block-visual+.puzzle__block-text {
	margin-top: 20px;
}

.puzzle__block-visual img {
	vertical-align: top;
	width: 100%;
}

.puzzle__block-visual iframe {
	aspect-ratio: 100/56;
}

.puzzle__block-text {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #040c34;
}

.puzzle__block-final-text {
	margin-top: 200px;
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	text-align: center;
	color: #040c34;
}

@media (max-width: 999px) {
	.puzzle__banner {
		padding-bottom: 40px;
	}

	.puzzle__banner-img {
		margin-bottom: 40px;
	}

	.puzzle__banner-title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 16px;
	}

	.puzzle__banner-text {
		font-size: 20px;
		line-height: 26px;
	}

	.puzzle__subtitle {
		font-size: 30px;
		line-height: 36px;
	}

	.puzzle__block {
		padding-bottom: 40px;
	}

	.puzzle__block-text {
		font-size: 16px;
		line-height: 20px;
	}

	.puzzle__block-final-text {
		margin-top: 60px;
		font-size: 18px;
		line-height: 24px;
	}
}




.accordion__toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
	outline: none;
	padding: 0;
}

.accordion__toggle.open-accordion .accordion__open {
	display: none;
}

.accordion__toggle.open-accordion .accordion__close {
	display: inline-block;
}

.accordion__toggle.open-accordion .accordion__icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion__close {
	display: none;
}

.accordion__icon {
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	width: 32px;
	height: 32px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: #f15a23;
	border-radius: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	margin-left: 16px;
}

.accordion__icon::after {
	content: '';
	width: 10px;
	height: 10px;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-bottom: 3px;
}

.accordion__icon--xs {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-left: 8px;
}

.accordion__icon--xs::after {
	width: 6px;
	height: 6px;
	border-left: 1px solid;
	border-bottom: 1px solid;
	margin-bottom: 2px;
}

.tenders {
	margin-top: 28px;
	margin-bottom: 84px;
}

.tenders ul {
	padding: 0;
	list-style: none;
}

.tenders__img {
	max-width: 100%;
}

.tenders__body {
	padding: 32px;
	background-color: #fff;
	border-radius: 10px;
	margin-top: -15px;
	position: relative;
	z-index: 20;
}

.tenders__note a,
.tenders__description a {
	color: currentColor;
	text-decoration: underline;
}

.tenders__note a:hover,
.tenders__description a:hover {
	text-decoration: none;
}

.tenders__list:not(:empty) {
	margin-top: 22px;
}

.tenders__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tenders__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tenders__note {
	margin-top: 22px;
}

.tender-item__header {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.tender-item__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: #f15a23;
}

.tender-item__body {
	padding-bottom: 20px;
}

.tender-item__item:not(:first-of-type) {
	margin-top: 20px;
}

.tender-application {
	padding: 24px;
	background: #f3f3f3;
	border-radius: 10px;
}

.tender-application__title {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}

.tender-application__title b {
	font-weight: 700;
}

.tender-application__body {
	margin-top: 20px;
}

.tender-application__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.tender-application__toggle {
	font-weight: 500;
	font-size: 17px;
	line-height: 26px;
	color: #f15a23;
}

.tender-application__description-body {
	padding-top: 11px;
}

.tender-application__description-content {
	font-size: 15px;
	line-height: 24px;
}

.tender-application__specification {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 33px;
	font-weight: 500;
	font-size: 17px;
	line-height: 26px;
	color: #f15a23;
	text-decoration: none;
}

.tender-application__specification .accordion__icon {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.tender-application__actions {
	-ms-flex-item-align: end;
	align-self: flex-end;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.tender-application__form:not(:empty) {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.new-btn {
	padding: 12px 30px;
	background: #f15a23;
	border-radius: 17px;
	font-weight: 700;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.new-btn:hover {
	background: -webkit-gradient(linear, left bottom, left top, from(#f15a23), to(#f15a23)), #f15a23;
	background: linear-gradient(0deg, #f15a23, #f15a23), #f15a23;
	-webkit-box-shadow: 0px 0px 18px rgba(193, 72, 28, 0.52);
	box-shadow: 0px 0px 18px rgba(193, 72, 28, 0.52);
}

.new-btn:active {
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1))), #f15a23;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #f15a23;
}

.new-btn:disabled {
	background: -webkit-gradient(linear, left bottom, left top, from(#f79c7b), to(#f79c7b)), #fff;
	background: linear-gradient(0deg, #f79c7b, #f79c7b), #fff;
}

.new-btn--xs {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 16px;
}

.new-btn--full {
	width: 100%;
}

.application-form__header {
	margin-bottom: 24px;
}

.application-form__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
}

.application-form__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.application-form__left {
	width: 39%;
}

.application-form__right {
	width: 56.88%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.application-form__field+.application-form__field {
	margin-top: 20px;
}

.application-form__action {
	padding-top: 32px;
	margin-top: auto;
}

.field__label {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #f15a23;
	margin-bottom: 8px;
	display: block;
}

.field__input {
	position: relative;
	display: block;
}

.field__input input,
.field__input textarea {
	padding: 10px 16px;
	width: 100%;
	height: 44px;
	background: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #f15a23;
	box-shadow: inset 0 0 0 1px #f15a23;
	border-radius: 12px;
	outline: none;
	border: none;
	font-size: 16px;
	line-height: 22px;
	color: #000;
}

.field__input input:focus,
.field__input textarea:focus {
	-webkit-box-shadow: inset 0 0 0 2px #f15a23;
	box-shadow: inset 0 0 0 2px #f15a23;
}

.field__input input:disabled,
.field__input textarea:disabled {
	color: #808080;
	-webkit-box-shadow: inset 0 0 0 2px #f8ac91;
	box-shadow: inset 0 0 0 2px #f8ac91;
}

.field__input textarea {
	height: 152px;
	resize: none;
}

.field__icon {
	position: absolute;
	top: 14px;
	left: 12px;
	z-index: 20;
	width: 16px;
	height: 16px;
}

.field__content {
	width: calc(100% - 200px);
}

.field__text {
	font-size: 15px;
	line-height: 22px;
}

.field__error {
	font-size: 16px;
	line-height: 22px;
	color: #f00;
	margin-top: 2px;
	width: 100%;
}

.field--row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.field--row .field__label {
	margin-bottom: 0;
}

.field--row .field__input {
	width: 180px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.field--error input,
.field--error textarea {
	-webkit-box-shadow: inset 0 0 0 2px #f00;
	box-shadow: inset 0 0 0 2px #f00;
	padding-left: 36px;
}

.upload-files {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.upload-files.full .upload-files__descr {
	display: none;
}

.upload-files__label {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #f15a23;
	margin-right: 12px;
}

.upload-files__list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 4px 10px;
	background: #fff;
	border: 1px dashed #f15a23;
	border-radius: 12px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-height: 44px;
}

.upload-files__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 6px;
	color: #808080;
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	cursor: pointer;
}

.upload-files__item:hover {
	color: #000;
}

.upload-files__item-name {
	font-size: 16px;
	line-height: 22px;
}

.upload-files__item-delete {
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	width: 18px;
	height: 18px;
	position: relative;
	margin-left: 2px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: currentColor;
}

.upload-files__item-delete::before,
.upload-files__item-delete::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1px;
	background: currentColor;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.upload-files__item-delete::after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.upload-files__input {
	display: none;
}

.upload-files__descr {
	font-size: 16px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	max-width: 100%;
	padding: 0 6px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #aeaeae;
}

.upload-files__btn {
	margin-left: 12px;
}

.icon-preloader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}

.icon-preloader::after {
	content: '';
	width: 100px;
	height: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50%;
	border: 6px solid #000;
	border-top-color: transparent;
	-webkit-animation: spinner 1s linear infinite;
	animation: spinner 1s linear infinite;
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@media (max-width: 999px) {
	.tenders__body {
		padding: 16px 12px;
	}

	.tenders__list {
		margin-top: 16px;
	}

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

	.tender-application {
		padding: 24px 12px;
	}

	.tender-application__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.tender-application__specification {
		margin-top: 20px;
	}

	.tender-application__actions {
		margin-top: 23px;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}

	.tender-application__form {
		margin-top: 20px;
		padding-top: 20px;
	}

	.application-form__body {
		display: block;
	}

	.application-form__left,
	.application-form__right {
		width: 100%;
	}

	.application-form__right {
		margin-top: 32px;
	}

	.application-form__field+.application-form__field {
		margin-top: 32px;
	}

	.field__input textarea {
		height: 88px;
	}

	.field--row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.field--row .field__content,
	.field--row .field__input {
		width: 100%;
	}

	.field--row .field__content {
		margin-bottom: 8px;
	}

	.new-btn {
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
	}

	.new-btn--xs {
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		padding: 12px 16px;
	}

	.upload-files {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.upload-files__list {
		margin-top: 12px;
		width: 100%;
		-webkit-box-ordinal-group: 16;
		-ms-flex-order: 15;
		order: 15;
	}
}


.no_active {
	display: none;
}

.g-recaptcha {
	padding: 10px 0px;
}

.categories-menu {
	position: relative;
	display: inline-block;
}

.subcategories-menu {
	opacity: 0;
	background: white;
	border-radius: 8px;
	position: absolute;
	top: 100%;
	transition: all 0.2s ease;
	z-index: 3;
}

.categories-menu:hover .subcategories-menu {
	opacity: 1;
	top: calc(100% + 5px);
}

.categories-menu div .arrow {
	background: url('/local/images/arrow-dropdown.png');
	background-repeat: no-repeat;
	background-size: 9px 7px;
	background-position: 79% center;
	padding-right: 15px;
	vertical-align: middle;

}

.categories-menu:hover div .arrow {
	background: url('/local/images/active-arrow-dropdown.png');
	background-repeat: no-repeat;
	background-size: 9px 7px;
	background-position: 79% center;
	vertical-align: middle;
	padding-right: 15px;
}

.active-arrow {
	background: url('/local/images/active-arrow-dropdown.png');
	background-repeat: no-repeat;
	background-size: 9px 7px;
	background-position: 79% center;
	vertical-align: middle;
	padding-right: 15px;
}


.catalog-item-drink__icons {
	display: flex;
}

.catalog-item-drink__icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 30%;
	border: 1px solid black;
	border-radius: 4px;
	height: 60px;
	justify-content: center;
	margin-right: 5%;
}

.catalog-item-drink__icons :last-child {
	margin-right: 0%;
}

.black-marker li {
	position: relative;
}

.black-marker li::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #000;
	border-radius: 50%;
	transform: translateY(-50%);
}

.konfidentsialnosti-page-floor {
	padding: 75px 0;
}

.konfidentsialnosti-page__main h2 {
	margin: 15px 0;
}

.konfidentsialnosti-page__main strong {
	font-weight: bold;
}

.konfidentsialnosti-page__main ol {
	margin-bottom: 20px;
}

.konfidentsialnosti-page__main li {
	margin-bottom: 10px;
}

.konfidentsialnosti-item-wrap {
	padding: 20px;
}

.konfidentsialnosti-page__main table {
	width: 100%;
	/* Задает ширину таблицы */
	border-collapse: collapse;
	/* Убирает двойные границы между ячейками */
	margin-bottom: 20px;
	/* Отступ снизу для таблицы */
}

.konfidentsialnosti-page__main th,
.konfidentsialnosti-page__main td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.konfidentsialnosti-page__main th {
	background-color: #f2f2f2;
	font-weight: bold;
}

/* .konfidentsialnosti-page__main tr:nth-child(even) {
	background-color: #f9f9f9;
} */

.konfidentsialnosti-page__main tr:hover {
	background-color: #f1f1f1;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.konfidentsialnosti-page__main table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

@media (max-width: 550px) {
	#food {
		display: flex;
		flex-direction: column;
	}

	.categories-menu .btn {
		padding: 5px 15px;
	}

	.catalog__toolbar-toggles label .btn {
		padding: 5px 8px;
	}
}

@media (max-width: 1100px) and (min-width: 700px) {
	.catalog-item-drink__icon {
		width: 35%;
		margin-right: 1%;
	}

	.catalog-item-drink__icons :last-child {
		margin-right: 0%;
	}
}


@media (min-width: 999px) {
	.price-map-block .card-banner {
		min-height: 70.2px;
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.price-map-block .card-banner .card-banner__title {
		margin-bottom: 0px;
	}

	.price-map-block {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
	}

	.price-block {
		margin-bottom: 10px;
		-ms-flex-grow: 0;
		-webkit-flex-grow: 0;
		flex-grow: 0;
	}

}

.js-popup__profit {
	position: fixed;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	z-index: 10;
}

.js-popup__profit img {
	border-radius: 8px;
	width: 80vw;
}

.js-btn__close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: black;
}

@media (max-width: 750px) {
	.js-popup__profit img {
		width: 95vw;
	}
}

.gallery-slide--big {
	margin: 0px 75px !important;
}



/*popup*/

body.modal-open {
	overflow: hidden;
}

.form-field__text-help {
	color: #e63c2f;
	cursor: pointer;
    font-size: 10px;
}

@keyframes slideDown {
    0% {
        transform: translateY(-110%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #19191920;
    width: 100%;
    height: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
	display: none;
}

.popup.opened {
	display: block;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.popup.opened .popup__content {
    animation-name: slideDown;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-fill-mode: both;
}

.popup__wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.popup__inner {
    display: table-cell;
    vertical-align: middle;
    padding: 50px 0;
}

.popup__content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 624px;
    margin: 0 auto;
    position: relative;
}

.popup-check .popup__content {
	max-width: 380px;
	padding: 50px 30px 30px;
}

.popup-check .popup__content img {
	width: 100%;
	height: auto;
}

/* .popup-close {
    position: absolute;
	top: 7px;
    right: 7px;
    border: none;
    cursor: pointer;
    background: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.popup-close::before,
.popup-close::after {
    content: "";
    background: #191919;
    height: 20px;
    width: 1px;
    position: absolute;
    border-radius: 10px;
    top: 50%;
} */
/* 
.popup-close::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.popup-close::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
} 

@media (max-width: 450px) {
	.popup-check .popup__content {
		max-width: 96%;
		padding: 40px 20px 20px;
	}

	.popup-check .popup__content .popup-close {
    right: 14px;
	}
} */
