body {
	background: var(--body-bg-color);
	color: var(--text-color-2);
	font-family: var(--font-family-sans);
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-y: scroll;
}

.react-island--layout-transparent {
	display: contents;
}

* {
	box-sizing: border-box;
	outline-color: var(--link-color);
}

hr {
	border: 0;
	border-top: 1px solid #e7ded2;
	margin: 20px 0;
}

button {
	cursor: pointer;
}

/* Hide focus styles if they're not needed, for example,
when an element receives focus via the mouse. */

:focus:not(:focus-visible),
:focus:not(:-moz-focusring) {
	outline: 0;
}

/* Show focus styles on keyboard focus. */

:-moz-focusring,
:focus-visible {
	outline: var(--link-color) auto 1px;
}

.slick-slide:focus {
	outline: none;
}

a {
	color: var(--link-color);
}

img {
	max-width: 100%;
	line-height: 0;
}

main {
	min-height: 40vh;
}

b {
	font-weight: 500;
	color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-serif);
}

/* h1 {
    font-size: var(--main-h1-size);
    font-weight: 500;
    margin: 10px 0 20px 0;
    color: var(--text-color);
    line-height: 140%;
} */

.main-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: content-box;
}

.full-container {
	max-width: 1440px;
	margin: 0 auto;
}

.main-title {
	font-family: var(--font-family-serif);
	font-weight: 500;
	font-size: 30px;
	line-height: 140%;
	color: var(--text-color);
	padding: 0;
	margin: 0 0 20px;
}

.btn-small {
	background: #ffffff;
	border-radius: 4px;
	color: var(--btn-bg-color);
	border: 0;
	font-size: 12px;
	min-width: 101px;
	height: 26px;
	cursor: pointer;
}

.btn-small:hover {
	background: var(--btn-bg-color);
	color: #fff;
}

.btn-link {
	background: var(--btn-bg-color);
	border-radius: 4px;
	padding: 15px 30px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid var(--btn-bg-color);
	line-height: initial;
	cursor: pointer;
}

.btn-link:hover {
	background: var(--btn-hover-bg-color);
	color: #fff;
}

.btn-clear {
	width: auto;
	height: auto;
	background: transparent;
	box-shadow: none;
	border: 0;
	padding: 0;
}

.btn-link--ic {
	padding: 11px 14px;
	display: flex;
}

.btn-link--2 {
	background: var(--main-bg-color);
	color: var(--text-color-2);
	border: 1px solid var(--main-bg-color);
}

.btn-link--2:hover {
	background: var(--main-bg-color);
	color: var(--link-color);
	border: 1px solid var(--btn-bg-color);
}

.btn-clear--small,
.btn-link--small {
	padding: 8px 20px 8px 20px;
	line-height: 1.45;
}

.btn-link--white {
	background: #fff;
	color: var(--text-color);
	border-color: var(--main-bg-color-2);
}

.btn-link--white:hover {
	background: #fff;
	color: var(--btn-bg-color);
	border: 1px solid var(--btn-bg-color);
}

.slick-disabled {
	display: none !important;
}

.slick-track {
	margin-left: 0;
}

.slick-prev {
	left: 10px;
}

.slick-prev svg {
	transform: translateX(-1px);
}

.slick-next {
	right: 10px;
}

.slick-next svg {
	transform: translateX(1px);
}

.slick-arrow {
	position: absolute;
	z-index: 10;
	width: 40px;
	height: 40px;
	background: var(--main-color-5);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	top: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.slick-arrow:hover {
	background: var(--btn-bg-color);
}

.slick-arrow:hover svg {
	fill: #fff;
}

.slick-arrow[style='display: block;'] {
	display: flex !important;
}

.slick-arrow[style='display: block;'].slick-disabled {
	display: none !important;
}

.slick-arrow svg {
	width: 9px;
	height: 14px;
}

.slick-dots {
	position: absolute;
	bottom: 24px;
	display: flex;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: center;
	z-index: 10;
}

.slick-dots li button {
	padding: 8px;
	font-size: 0;
	line-height: 0;
	display: block;
	cursor: pointer;
	border: 0;
	outline: none;
	background-color: transparent;
}

.slick-dots li button::before {
	display: block;
	content: '';
	width: 16px;
	height: 8px;
	color: var(--main-bg-color);
	background-color: var(--main-bg-color);
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button::before {
	background-color: var(--main-color);
}

.slick-track:before,
.slick-track:after {
	opacity: 0;
	position: absolute;
}

/* ToolTip */

.link-tooltip {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	position: relative;
}

.link-dashed {
	text-decoration: none;
	position: relative;
}

.link-dashed::before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	border-bottom: 1px dashed;
}

.link-dashed.link-tooltip::before {
	right: 25px;
}

.link-tooltip::after {
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background-color: #fff;
	background-image: var(--i-arrowDown);
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--main-bg-color-2);
	line-height: 0;
}

.link-tooltip--active::after {
	background-color: var(--main-color);
	background-image: var(--i-arrowUp--active);
}

.tooltip {
	position: absolute;
	background: #ffffff;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 23px 15px 15px;
	z-index: var(--z-index-tooltip);
	top: calc(100% + 10px);
	display: none;
}

.tooltip--open {
	display: block;
}

.tooltip::before {
	content: '';
	position: absolute;
	top: -7px;
	left: 19%;
	width: 20px;
	height: 7px;
	background: #fff;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.tooltip__title {
	font-size: 14px;
	line-height: 20px;
	color: var(--text-color-4);
}

.tooltip__title b {
	color: var(--text-color);
	font-weight: 500;
}

.tooltip__btns {
	margin: 15px -4px 0;
	display: flex;
}

.tooltip__btns > * {
	margin: 0 4px;
	white-space: nowrap;
}

.tooltip__link {
	display: inline-block;
}

.tooltip__btns + .tooltip__link {
	margin-top: 20px;
}

.tooltip__link + .tooltip__link {
	margin-top: 8px;
}

/* ToolTip */

.top-header {
	background-image: linear-gradient(180deg, var(--main-color-5) 0%, transparent 100%);
}

.top-header__divider {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--main-color-12);
}

.top-header-right {
	display: flex;
	position: relative;
	gap: 30px;
	font-size: 14px;
}

.top-header-phone {
	display: flex;
	align-items: center;
	gap: 5px;
}

.top-header-phone__row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-header-phone__row a:hover {
	text-decoration: underline;
}

.top-header-phone__button {
	padding-block: 2px;
	padding-inline: 12px;
	margin-left: 10px;
	border-radius: 4px;
	background-color: var(--main-color-5);
	color: var(--link-color);
	border: 1px solid var(--text-color-3);
	transition: all 0.3s ease;
}

.top-header-phone__button:hover {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: #fff;
}

.top-header-city > span {
	display: flex;
	align-items: center;
	color: var(--text-color-3);
	margin-right: 3px;
}

.top-header-icon {
	width: 12px;
	height: auto;
	margin-top: 2px;
	color: var(--link-color);
	fill: currentColor;
}

.top-header-city a::before {
	display: none;
}

.top-header-city {
	display: flex;
	align-items: center;
	gap: 5px;
}

.top-header-phone a {
	text-decoration: none;
}

.top-header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
}

.main-header__content {
	display: flex;
	align-items: center;
	min-height: 104px;
	justify-content: space-between;
}

.header-search,
.header-widget {
	width: 33%;
}

.header-mobile {
	display: none;
}

.header-widget {
	display: flex;
	justify-content: flex-end;
}

.header-widget__item {
	text-decoration: none;
	line-height: 0;
	display: flex;
	align-items: center;
}

.header-widget > .header-widget__item {
	margin-left: 20px;
}

.header-widget__item[data-count]::after {
	content: attr(data-count);
	position: relative;
	min-width: 20px;
	height: 20px;
	background: var(--main-bg-color-2);
	color: var(--text-color-2);
	border-radius: 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	margin-left: 2px;
	padding: 0 4px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-logo {
	line-height: 0;
}

.header-logo svg {
	height: 64px;
	width: auto;
	max-width: 100%;
}

@media (min-width: 1500px) {
	.header-logo svg {
		height: 80px;
	}
}

/* Верхние меню */

.sub-menu-back {
	display: none;
}

.top-header-menu ul {
	display: flex;
	list-style: none;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

.top-header-menu li + li {
	margin-left: 24px;
}

.top-header-menu li a {
	color: var(--text-color-2);
	text-decoration: none;
}

.top-header-menu li a:hover {
	color: var(--link-color);
}

/* END Верхние меню */

/* Search */

.header-search form {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 315px;
}

.header-search__input {
	background: var(--main-bg-color);
	border: 1px solid var(--main-bg-color-2);
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 12px;
	line-height: 20px;
	height: 40px;
	width: 100%;
	padding: 10px 40px 10px 15px;
	color: var(--text-color-2);
}

.header-search__input::placeholder {
	color: var(--text-color-3);
}

.header-search__submit {
	position: absolute;
	z-index: 1;
	right: 8px;
	top: 8px;
	padding: 0;
	width: 24px;
	height: 24px;
	background: transparent;
	border: 0;
}

/* END Search */

/* breadcrumbs */

.breadcrumbs ol {
	list-style: none;
	padding: 0;
	margin: 20px 0 10px 0;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumbs__item {
	display: flex;
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
}

.breadcrumbs__item + .breadcrumbs__item::before {
	content: '/';
	margin: 0 5px;
}

.breadcrumbs__link {
}

/* END breadcrumbs */

/* Отзывы */
.main-reviews__container {
	padding: 0 60px;
}

.main-reviews {
	margin: var(--margin-default) auto;
	position: relative;
	padding-bottom: 35px;
}

.main-reviews-slick {
	position: static;
}

.main-section__container {
	padding: 0 60px;
}

.main-section {
	margin: var(--margin-default) auto;
	position: relative;
	padding-bottom: 35px;
}

.main-section-slick {
	position: static;
}

/*  */

/* Инстагарам */

.instagram-slider__container {
	padding: 0 60px;
	position: relative;
}

.instagram-slider {
	padding-bottom: 35px;
}

.instagram-slider-slick {
	position: static;
}

.instagram-slider .slick-dots {
	margin-top: 20px;
	bottom: -30px;
	left: 0;
	right: 0;
}

.instagram__item {
	position: relative;
	border-radius: 4px;
	margin: 0 10px;
}

.instagram-slider .slick-list {
	margin: 0 -10px;
}

.instagram__item-content {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 10;
	transform: translateY(calc(100% - 34px));
	transition: all 0.7s;
	padding: 0 20px 20px;
	color: #fff;
}

.instagram__item-content--open {
	transform: translateY(0);
	background: rgba(35, 31, 32, 0.6);
}

.instagram__item-content svg {
	fill: #414042;
	transition: all 0.5s;
}

.instagram__item-content--open svg {
	fill: #fff;
}

.instagram__item-content--open .instagram__item-content-btn {
	background: transparent;
}

.instagram__item-content--open .instagram__item-content-btn svg {
	transform: rotate(-180deg);
}

.instagram__item-content-btn {
	width: calc(100% + 40px);
	margin: 0 -20px;
	background: #e9e9e9;
	border-radius: 4px;
	height: 34px;
	cursor: pointer;
	outline: 0;
}

.instagram__item-picture img {
	width: 100%;
}

.instagram__item-tag {
	margin-top: 6px;
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
}

.instagram__item-text {
	margin-top: 10px;
	font-size: 16px;
	line-height: 150%;
	font-weight: 300;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.instagram__item-btn {
	width: 118px;
	height: 40px;
	background: #ffffff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	margin-top: 37px;
}

/* Инстагарам */

/* Footer moved to React island styles. */

/* Mobile nav */

.navbar-mobile {
	position: sticky;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: var(--z-index-mobile-nav);
}

.navbar-mobile__list {
	display: flex;
	list-style: none;
	background: #fff;
	border-top: 1px solid #dceafd;
	padding: 0 20px;
	margin: 0;
}

.navbar-mobile__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
}

.navbar-mobile__link {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-size: 10px;
	line-height: 14px;
	position: relative;
	padding: 4px;
	color: #414042;
	text-decoration: none;
}

.navbar-mobile__link[data-count]::after {
	position: absolute;
	top: 4px;
	right: 0;
}

@media (min-width: 993px) {
	.desktop-hide {
		display: none;
	}
}

@media (max-width: 1400px) {
	.instagram__item-text {
		-webkit-line-clamp: 5;
	}

	.instagram__item-btn {
		margin-top: 15px;
	}
}

@media (max-width: 1200px) {
	.instagram__item-text {
		-webkit-line-clamp: 6;
	}

	.instagram__item-btn {
		margin-top: 15px;
	}
}

@media (max-width: 992px) {
	.main-container {
		padding: 0 20px;
	}

	.header-menu-btn {
		width: 24px;
	}

	.header-search,
	.header-widget {
		flex: 33.333%;
	}

	.header-search-btn {
		flex: calc(33.333% - 24px);
	}

	.header-search-btn button {
		margin-left: 24px;
	}

	.header-mobile {
		display: block;
	}

	.header-search {
		display: none;
	}

	.header-search--open {
		display: block;
		position: absolute;
		width: 100%;
		top: 104px;
		left: 0;
		right: 0;
		z-index: var(--z-index-tooltip);
		background: #fff;
		padding: 10px 20px;
		box-sizing: border-box;
		border-bottom: 1px solid var(--border-color);
		border-top: 1px solid var(--border-color);
	}

	.header-search form {
		max-width: 100%;
	}

	.top-header {
		display: none;
	}
}

@media (max-width: 768px) {
	.main-reviews__container {
		padding: 0 15px;
	}

	.instagram-slider__container {
		padding: 0 15px;
	}

	.main-header__content {
		min-height: 60px;
	}

	.header-logo {
		max-width: 153px;
	}

	.advantages__item-text {
		font-size: 14px;
	}

	.header-search--open {
		top: 60px;
	}
}

@media (max-width: 576px) {
	.header-widget {
		display: none;
	}

	.header-search-btn {
		order: 1;
		flex: none;
	}

	.header-search-btn button {
		margin-left: 0;
	}

	.main-header__content {
		min-height: 50px;
	}

	.header-logo {
		max-width: 114px;
	}

	.header-search--open {
		top: 95px;
	}
}

/* ALL */

.main-container--cancel {
	max-width: 100%;
	padding: 0;
}
