/*RESET CSS*/

*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
	margin: 0;
}

ol[role="list"],
ul[role="list"] {
	list-style: none;
}

* {
	outline: none;
}

body {
	min-height: 100vh;
	line-height: 1.5;
	background: var(--body-bg);
	font-family: "Exo2";
	font-size: 14px;
	color: var(--text);
	scroll-behavior: smooth;
}

button,
h1,
h2,
h3,
h4,
input,
label {
	line-height: 1.1;
}

h1,
h2,
h3,
h4 {
	text-wrap: balance;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
	color: currentColor;
}

img,
picture {
	max-width: 100%;
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

#all {
	width: 100%;
	min-width: 300px;
}

/*BASE STYLES*/

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
	scrollbar-width: auto;
	scrollbar-color: #ff6600 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 10px;
}

*::-webkit-scrollbar-track {
	background: #ffffff;
}

*::-webkit-scrollbar-thumb {
	background-color: #ff6600;
	border-radius: 1px;
	border: 0px none #ffffff;
}

a {
	color: var(--hover-bg);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-decoration: none;
}

button {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.d-grid {
	display: grid;
}

.align-items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.align-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align-items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.justify-content-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.justify-content-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.flex-center {
	justify-content: center;
}

.img {
	-o-object-fit: contain;
	object-fit: contain;
}

.overflow {
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
	padding-left: 80px;
	padding-right: 80px;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.bg-white {
	background-color: var(--wrapper-bg);
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.bold {
	font-weight: 700 !important;
}

.btn {
	text-transform: uppercase;
	padding: 12px 19px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 20px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.uppercase {
	text-transform: uppercase !important;
}

.primary {
	color: var(--primary);
	text-decoration: underline;
}

.btn__transparent {
	background-color: transparent;
	border: 3px solid var(--primary);
	color: var(--text);
}

.btn__transparent:hover {
	background-color: var(--primary);
	color: #ffffff;
}

.btn__transparent:disabled {
	border-color: grey;
	color: grey;
}

.btn__primary {
	background-color: var(--primary);
	color: #ffffff !important;
	border: none;
}

.btn__primary:hover {
	-webkit-filter: brightness(1.3);
	filter: brightness(1.3);
}

.btn__gradient {
	display: flex;
	background: linear-gradient(#6a76c9, #359ef6);
	padding: 3px 3px;
	border: 0;
}

.btn__gradient span {
	width: 100%;
	background: var(--secondary);
	padding: 4px 7px;
	border-radius: 8px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.btn__small {
	font-size: 13px !important;
	padding: 7px 7px;
	font-weight: 500;
}

.btn__gradient:hover span {
	background: transparent;
}

.btn__violet {
	background: var(--violet);
	color: #ffffff;
}

.small {
	font-size: 12px;
	font-weight: 200;
}

.columns,
.columns-2 {
	columns: 2;
}

.columns-3 {
	columns: 3;
}

.columns-center {
	display: flex;
	justify-content: space-evenly;
}

.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 20px 0;
	font-size: 14px;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
}

.breadcrumbs__item {
	margin-right: 20px;
	font-weight: 700;
}

.breadcrumbs__item a {
	color: var(--text);
	font-weight: 400;
}

.breadcrumbs__delimiter {
	margin-right: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-title {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: var(--title);
	margin: 45px 0;
	text-transform: uppercase;
}
.section {
	clear: both;
}

/*HEADER*/

.license-link {
	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	gap: 10px;
}

.header__top {
	background: var(--header-top);
	color: #ffffff;
	position: sticky;
	top: 0;
	padding: 27px 0;
	z-index: 41;
	height: 82px;
}

.header__top-container {
	gap: 13px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__top-menu {
	padding: 0;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	gap: 10px;
	/* margin-left: 15px; */
}

.header__top-menu__item {
	/* margin-right: 0; */
	list-style: none;
	font-size: 14px;
	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;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	line-height: 1.2;
	gap: 8px;
}

.header__top-container .header__top-menu__item {
	white-space: normal;
	gap: 0 10px;
}

.footer__menu-second a:hover,
.footer__menu a:hover,
.header__top-menu__item a:hover,
.open-city:hover {
	color: var(--primary);
}

.header__top-menu__item svg {
	/* margin-left: auto; */
	width: 12px;
	min-width: 12px;
	height: auto;
}

.header__top-menu__item:last-child svg {
	display: none;
}

.header__login {
	background: var(--first-top);
	position: relative;
	max-height: 0;
	overflow: hidden;
	transition: 0.4s;
}

.header__login.active {
	max-height: 200px;
}

.header__login__container {
	padding-top: 40px;
	padding-bottom: 40px;
}

.header__login--close {
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	padding: 5px;
	z-index: 2;
}

.open-city {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 8px;
	font-size: 13px;
	font-weight: 300;
	cursor: pointer;
	/* margin-top: 3px; */
}

.open-city__value {
	max-width: 135px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.city-select_simple {
	position: absolute;
	top: 100%;
	background: var(--secondary);
	display: none;
	left: auto;
}

.city-select_simple.opened {
	display: block;
}

ul.region_list {
	padding: 12px 25px 22px 25px;
	list-style: none;
	margin: 0;
	font-size: 1.1em;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 4px solid var(--primary);
}

.city-select_simple a {
	color: #ffffff;
	font-weight: 300;
}

.city-select_simple a:hover {
	color: var(--primary);
}

.open-city svg.str {
	rotate: 0;
}

.open-city.active svg.str {
	rotate: 180deg;
}

.header-buttons {
	font-size: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}

.header-buttons .header-buttons__item {
	font-size: 12px;
}

.header-buttons__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 102px;
	line-height: 1.2;
	gap: 8px;
	background: transparent;
	-webkit-appearance: none;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	color: white;
	font-weight: 400;
	text-align: right;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.header-buttons__item.special-btn {
	max-width: 120px;
}

@media (hover: hover) {
	.header-buttons__item:hover {
		color: var(--primary);
	}
}

.header-buttons__icon {
	/* margin-left: 8px; */
	min-width: 18px;
}

.special-btn .header-buttons__icon {
	min-width: 30px;
}

.header__phone__icon {
	position: absolute;
	left: -0;
	top: 50%;
	transform: translateY(-50%);
}

.header__menu {
	position: sticky;
	top: 82px;
	z-index: 40;
}

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	margin-right: auto;
	position: relative;
}

.menu-item {
	font-size: 20px;
	color: var(--text);
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-item.parent > span {
	cursor: pointer;
}

.menu-item > span {
	padding: 0 10px;
}

.menu-item:not(.catalog-btn) .submenu {
	position: absolute;
	background: var(--wrapper-bg);
	font-size: 18px;
	text-align: left;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	line-height: 1.2;
	padding: 12px 30px 30px 36px;
	box-shadow: 0 35px 25px -29px #00000085;
	top: 100%;
	margin: 0;
	width: 300px;
	z-index: 2;
	left: 0;
}

.menu-item:not(.catalog-btn) .submenu a {
	padding: 0;
}

.menu-item:not(.catalog-btn) .submenu a:hover {
	color: var(--primary);
}

@media (hover: hover) {
	.menu-item:not(.catalog-btn):hover .submenu {
		display: flex;
	}
}

.menu-item a {
	padding: 0 10px;
	text-decoration: none;
}

.menu-item:not(.catalog-btn) a:hover {
	color: var(--primary);
}

.menu-item:not(:first-child, :last-child)::before {
	content: "";
	position: absolute;
	right: 0;
	height: 30px;
	width: 2px;
	background: var(--primary);
	top: 12px;
}

.catalog-btn {
	background: var(--primary);
	color: #ffffff;
	border-radius: 8px;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	position: static;
}

.catalog-btn .submenu {
	background: var(--catalog-menu);
	width: 410px;
	position: absolute;
	left: 0;
	top: calc(100% + 15px);
	flex-direction: column;
	align-items: stretch;
	padding: 10px 0;
	border-radius: 0 0 8px 8px;
}

.mobile-menu .header__phone {
	margin-top: 15px;
	margin-bottom: 15px;
}

.mobile-menu .icons-nav__link {
	font-size: 13px;
	gap: 12px;
}

.mobile-menu .icons-nav__link img {
	height: 30px;
	width: 30px;
	object-fit: contain;
}

.mobile-menu .icons-nav__wrapper {
	float: left;
	width: 100%;
}

.mobile-menu .catalog-btn .submenu,
.mobile-menu .menu .submenu,
.mobile-menu .catalog-btn .submenu .menu {
	width: 100%;
	position: relative;
	left: auto;
	top: auto;
	background: var(--wrapper-bg);
	border-radius: 0;
	padding-top: 0;
	flex-direction: column;
	align-items: stretch;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 10px;
	box-shadow: none;
	gap: 0 !important;
}

.mobile-menu .menu-item {
	background: transparent;
}

.mobile-menu .menu-item a {
	color: var(--main-text);
	font-weight: 400;
}

.mobile-menu .menu-item.catalog-btn a svg {
	display: none;
}

.mobile-menu .catalog-btn .menu-item,
.mobile-menu .menu-item {
	border-bottom: 1px solid var(--bg);
}

.mobile-menu .header__top-menu,
.mobile-menu .menu {
	gap: 0;
	align-items: stretch;
}

.mobile-email {
	display: flex;
	align-items: center;
	gap: 10px;
	float: left;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 14px;
}

.mobile-menu_nav .btn__gradient {
	margin-top: 10px;
}

.mobile-menu_nav > .menu {
	margin-top: 10px;
}

.mobile-menu .menu .menu-item,
.mobile-menu .header__top-menu__item {
	justify-content: flex-start;
}

.mobile-menu .menu .menu-item:not(:last-child),
.mobile-menu .header__top-menu__item:not(:last-child) {
	border-bottom: 1px solid var(--bg);
}

.mobile-menu .menu .menu-item a,
.mobile-menu .header__top-menu__item a,
.mobile-menu .menu .menu-item span {
	padding: 14px 0;
	line-height: 1.4;
}

.mobile-menu .catalog-btn .submenu .submenu-item {
	padding: 0 20px 0 0;
}

.mobile-menu .opened > a {
	font-weight: 700;
}

.mobile-menu .menu .submenu .submenu-item:not(:last-child),
.mobile-menu .catalog-btn .submenu .submenu-item:not(:last-child) {
	border-bottom: 1px solid var(--bg);
}

.mobile-menu .menu .submenu .submenu-item a,
.mobile-menu .menu .submenu .menu-item a,
.mobile-menu .catalog-btn .menu-item a,
.mobile-menu .catalog-btn .submenu .submenu-item a {
	padding: 12px 0 12px 15px;
	color: var(--main-text);
	line-height: 1.4;
}

.mobile-menu .menu-item.parent > a,
.mobile-menu .submenu-item.parent > a {
	width: auto;
	line-height: 1.4;
}

.mobile-menu .catalog-btn.parent,
.mobile-menu .menu-item.parent,
.mobile-menu .catalog-btn .submenu .submenu-item.parent {
	background: url(/local/templates/cf/components/bitrix/catalog.smart.filter/main/images/angle-down.svg)
		no-repeat calc(100% - 10px) 23px;
	display: flex;
	flex-wrap: wrap;
}

.mobile-menu .catalog-btn .submenu .submenu-item .img {
	display: none;
}

.mobile-menu .catalog-btn .submenu .submenu-item.parent {
	padding-right: 30px;
}

.mobile-menu .catalog-btn .submenu .submenu-item.parent > a {
	color: var(--main-text);
}

.mobile-menu .submenu .menu {
	padding-left: 20px;
}

.mobile-menu .header__phone--item {
	font-size: 19px;
}

.mobile-menu .header__address {
	font-size: 13px;
	margin-top: 25px;
	padding-left: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	float: left;
	padding-bottom: 30px;
}

.mpc-site .mobile-menu .header__address {
	padding-left: 30px;
	padding-bottom: 15px;
}

.mpc-site .mobile-menu .header__address svg {
	top: 10px;
	width: 20px;
	height: 20px;
}

.mobile-menu .header__address svg {
	left: 0;
	bottom: 6px;
	top: 20px;
}

.mobile-menu .header-buttons__item {
	max-width: calc(50% - 5px);
	text-align: left;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 4px 10px;
	margin-top: 0;
	color: #000000;
	width: 100%;
	/* -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end; */
	padding: 8px 10px;
	border-radius: 8px;
	background: whitesmoke;
	min-height: 70px;
	float: left;
	font-size: 12px;
}

.mobile-menu .header-buttons__item.theme-btn {
	margin-right: 10px;
}

.catalog-btn .submenu .submenu-item {
	font-size: 18px;
	padding: 10px 12px;
}

.catalog-btn .submenu .submenu-item .img,
.catalog-btn .submenu .submenu-item svg {
	width: 38px;
	min-width: 38px;
	height: 42px;
	transition: 0.2s;
}

.catalog-btn .submenu .submenu-item svg path {
	fill: none;
	stroke-width: 3px;
	stroke: var(--primary);
}

.catalog-btn .submenu .submenu-item a {
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 18px;
	text-align: left;
	line-height: 1.3;
}

@media (hover: hover) {
	.catalog-btn .submenu .submenu-item a:hover {
		color: var(--primary);
	}

	.catalog-btn .submenu .submenu-item a:hover .img {
		transform: scale(1.15);
	}
}

.submenu-level-2 {
	display: none;
	position: absolute;
}

@media (hover: hover) {
	.submenu-item:hover > .submenu-level-2 {
		display: block;
		left: 100%;
		top: 0;
		background: var(--bg);
		width: 600px;
		box-shadow: 13px 32px 35px -17px #0000007d;
		border-radius: 0 0 8px 0;
		padding: 20px 30px;
		list-style: none;
		min-height: 100%;
		columns: 250px 2;
	}
}

.catalog-btn .submenu-level-2 .submenu-item {
	padding: 14px 0;
	font-size: 16px;
}

.catalog-btn .submenu-level-2 .submenu-item a {
	color: var(--text);
}

@media (hover: hover) {
	.catalog-btn .submenu-level-2 .submenu-item a:hover {
		color: var(--primary);
	}
}

.catalog-btn > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	font-weight: 300;
	padding: 10px 20px;
	transition: 0s;
	text-decoration: none;
}

.catalog-btn.opened {
	border-radius: 8px 8px 0 0;
}

.catalog-btn.opened > a {
	box-shadow: 0 18px 0 0 var(--primary);
}

.submenu {
	display: none;
}

.submenu.opened,
.menu.opened {
	display: flex;
}

.header__search {
	min-width: 28%;
}

.search {
	border: 2px solid var(--primary);
	border-radius: 8px;
	padding: 10px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0;
}

.search__submit {
	margin-right: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	height: 25px;
	width: 24px;
}

.search__input {
	border: 0;
	color: var(--title);
	padding: 0;
	font-size: 18px;
	font-weight: 300;
	width: calc(100% - 36px);
	outline: none;
	background-color: transparent;
}

.search__input::placeholder {
	color: var(--title);
	opacity: 1;
	/* Firefox */
}

.search__input ::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: var(--title);
}

.header__second {
	color: var(--main-text);
}

.header__second-container {
	/* padding-top: 50px; */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 20px;
	gap: 35px;
}

.header__menu-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-shadow: 0 35px 25px -29px #00000085;
	box-shadow: 0 35px 25px -29px #00000085;
	z-index: 1;
	position: relative;
	padding-bottom: 15px;
	padding-top: 15px;
	border-radius: 0;
}

/* .header__logo {
	margin-right: 6%;
} */

.header__logo img {
	max-width: 100%;
	width: 365px;
	height: auto;
	object-fit: contain;
}

.header__address {
	font-size: 20px;
	position: relative;
	max-width: 28%;
	padding-left: 24px;
}

.header__address svg {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.header__phone {
	font-size: 12px;
}

.header__phone span {
	padding-left: 27px;
}

.header__phone--item a {
	font-size: 20px;
	font-weight: 700;
	position: relative;
	padding-left: 26px;
	text-align: left;
}

.header__messengers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.header__get-sertificate {
	font-size: 12px !important;
}

.header__callback {
	text-transform: uppercase;
	background: var(--primary);
	color: #ffffff;
	padding: 7px 13px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
}

/*FOOTER*/

.footer {
	background: var(--footer-bg);
	color: #ffffff;
	padding: 60px 0;
}

.footer.d-flex {
	flex-wrap: wrap;
}

.footer__menu {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	gap: 15px;
}

.footer__menu-item {
	font-size: 16px;
	font-weight: 300;
}

.footer__subscribe {
	max-width: 326px;
}

.footer__subscribe form {
	flex-wrap: wrap;
}

.footer_text {
	width: 100%;
	text-align: right;
	margin-top: 20px;
	color: var(--gray-text);
}

.footer_text a {
	color: var(--gray-text);
}

.footer_text a:hover {
	color: var(--primary);
}

.subscribe {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-top: -24px;
}

.subscribe__text,
.footer__subscribe label {
	color: #999999;
	font-size: 12px;
}

@media(max-width: 576px) {
	.task-159500 .subscribe__text,
	.task-159500 .footer__subscribe label {
		font-size: 14px;
	}
}

.footer__subscribe label {
	margin-top: 0;
	width: calc(100% - 40px);
}

.footer__subscribe .form-section__field {
	margin-top: 10px;
	flex-wrap: wrap;
	padding: 0;
}

.footer__subscribe form span.form-status {
	line-height: 1;
	background: var(--secondary);
}

.footer__subscribe form span.form-status:empty {
	background: transparent;
}

.subscribe__input {
	min-width: 265px;
	height: 45px;
	border-radius: 8px;
	padding: 0 20px;
	border: 0;
	margin-top: 5px;
	font-size: 18px;
	font-weight: 400;
}

.subscribe__submit {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#ffa061),
		to(#ff7316)
	);
	background: -o-linear-gradient(top, #ffa061 0%, #ff7316 100%);
	background: linear-gradient(180deg, #ffa061 0%, #ff7316 100%);
	-webkit-appearance: none;
	color: #ffffff;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 8px;
	width: 41px;
	height: 35px;
	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;
	margin-left: 20px;
	margin-bottom: 5px;
	cursor: pointer;
}

.subscribe__submit:disabled {
	background: linear-gradient(180deg, #ffa061 0%, gray 100%);
}

.footer__kedu {
	margin-left: 24px;
	position: relative;
	top: 20px;
}

.footer__menu-second {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-evenly;
	padding-right: 0;
	margin-top: 0;
	gap: 8px 15px;
	font-size: 14px;
	max-width: calc(100% - 185px);
}

.footer-mpc .footer__menu-second {
	margin-top: -28px;
}

.footer__menu-second__item:not(:first-child) a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 15px 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__contacts-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	gap: 12px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.footer .btn {
	width: 158px;
	font-size: 15px;
	padding: 8px;
	text-align: center;
	font-weight: 500;
}

.footer__contacts-item:nth-child(1) {
	max-width: 340px;
}

.footer__contacts-item .small {
	opacity: 0.7;
	position: relative;
	left: -4px;
}

.footer__icon {
	margin-top: 7px;
	min-width: 18px;
}

.footer__contacts a {
}

.footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin: 0 27px;
}

.footer__bottom {
	text-transform: uppercase;
	color: var(--bg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 300;
	gap: 20px 40px;
}

.footer__bottom-link {
	text-transform: none;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 12px;
}

@media(max-width: 576px) {
	.task-159500 .footer__bottom-link {
		font-size: 14px;
	}
}

.footer__bottom-link a {
	color: #aaaaaa;
	text-decoration: underline;
}

.footer__copywrite {
	color: #666666;
	max-width: 160px;
	font-size: 12px;
	margin-top: 0;
	margin-bottom: auto;
}

.footer__container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px 15px;
}

.footer__menu-bottom {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style: none;
	gap: 20px 35px;
	margin-left: auto;
	margin-right: auto;
}

.section-content {
	min-height: 500px;
}

main {
	padding-top: 50px;
	padding-bottom: 50px;
}

.mobile-menu {
	display: block;
	position: fixed;
	left: -400px;
	top: 0;
	-webkit-transition: left 0.4s;
	-o-transition: left 0.4s;
	transition: left 0.4s;
	width: 300px;
	background: var(--wrapper-bg);
	z-index: 100;
	height: 100vh;
	-webkit-box-shadow: calc(100vw - 300px) 0 0 26px transparent;
	box-shadow: calc(100vw - 300px) 0 0 26px transparent;
	padding: 14px;
	overflow-y: scroll;
}

.mobile-menu .license-link {
	float: left;
	width: 100%;
}

html body .bvi-panel.bvi-fixed-top {
	position: relative !important;
}

.bvi-body .mobile-menu {
	z-index: 1000000;
}

.mobile-menu.opened {
	left: 0;
	-webkit-box-shadow: 317px 0 0 2600px #0000007a;
	box-shadow: 317px 0 0 2600px #0000007a;
}

.mobile-menu__close {
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	background: transparent;
	width: 30px;
	height: 40px;
	margin-left: 20px;
	cursor: pointer;
}

.mobile-menu__search {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.mobile-menu__search .form {
	position: relative;
}

.youtube-lazy {
	position: relative;
}

.youtube-lazy iframe {
	z-index: 3;
	position: absolute;
	height: 100% !important;
	top: 0;
	left: 0;
}

.youtube-btn {
	background: transparent;
	border: none;
	padding: 0;
	position: absolute;
	top: calc(50% - 33px);
	right: calc(50% - 52px);
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.youtube-btn:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/*FOOTER FORM*/

.footer-form {
	background: var(--primary);
	color: #ffffff;
}

.footer-form__left {
	max-width: 44%;
	z-index: 1;
}

.footer-form__bg {
	position: absolute;
	bottom: 0;
	right: 5%;
}

.footer-form__header {
	font-size: 45px;
	font-weight: 700;
	text-transform: uppercase;
}

.footer-form__text {
	font-size: 19px;
	font-weight: 300;
	max-width: 492px;
}

.footer-form__manager {
	font-size: 16px;
	margin-top: 30px;
	display: flex;
	gap: 10px;
}

.footer-form__container {
	position: relative;
	min-height: 295px;
	padding-top: 50px;
	padding-bottom: 50px;
	gap: 30px 6%;
	align-items: center;
}
main .footer-form__container {
	padding-bottom: 25px;
}

.footer-form__right {
	max-width: 56%;
	z-index: 2;
	position: relative;
}

.footer-form__title {
	font-size: 24px;
	font-weight: 600;
}

.footer-form__content {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 500px;
	gap: 10px;
	margin-top: 20px;
}

.footer-form__field {
	font-size: 12px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.footer-form__field-checkbox {
	width: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	font-size: 13px;
	font-weight: 200;
	position: relative;
	padding-left: 0;
	line-height: 1.2;
	margin-top: 10px;
}

.footer-form__field-checkbox input {
	position: absolute;
	left: 0;
	margin: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #ffffff;
	-webkit-appearance: none;
	border-radius: 4px;
	background: #ffffff;
	top: 5px;
}

.footer-form__field input[type="text"] {
	padding: 15px 25px;
	font-size: 18px;
	font-weight: 300;
	border: 0;
	border-radius: 8px;
	margin-top: 5px;
	min-width: 303px;
	outline: none;
	-webkit-box-shadow: 0px 9px 14px -3px #00000052;
	box-shadow: 0px 9px 14px -3px #00000052;
}

.footer-form__submit {
	color: #111111;
	background: white;
	-webkit-appearance: none;
	border: 3px solid #ffa467;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 25px;
	-webkit-box-shadow: 0px 9px 14px -3px #00000052;
	box-shadow: 0px 9px 14px -3px #00000052;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.footer-form__submit:disabled {
	border-color: gray;
}

.footer-form__submit:active {
	box-shadow: inset 0px 0px 23px 1px rgb(207 94 18);
}

.footer-form__image {
	position: absolute;
	bottom: 0;
	right: 2%;
	z-index: 1;
}
.form-question .footer-form__image {
	max-height: 360px;
}
.footer-form .footer-form__image {
	max-height: 340px;
}

/* #146444 Правка по форме после тестирования - акция, форма Мне это интересно */
	
.section.content .footer-form img {
    border-radius: 0;
    float: none;
    margin-bottom: 0;
}

.section.content .footer-form a {
    color: #fff;
	font-weight: 200;
}

.footer__logo {
	max-width: 260px;
}

.form-question {
	margin-left: -80px;
	margin-right: -80px;
	-webkit-box-shadow: 500px 0 0 0 var(--primary), -500px 0 0 0 var(--primary);
	box-shadow: 500px 0 0 0 var(--primary), -500px 0 0 0 var(--primary);
	margin-top: 65px;
}

.form-question .footer-form__image {
	bottom: 0;
	right: auto;
	left: 0;
}

.form-question .footer-form__container {
	padding-left: 22%;
}

.form-question .footer-form__left {
	max-width: 44%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.required__form__field {
	position: relative;
}

.required__form__field:after {
	content: "*";
	color: var(--primary);
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	top: 30px;
	right: 10px;
}

#certificate-form,
#form_vakansii {
	width: 496px;
}

#certificate-form .checkbox label,
#form_vakansii .checkbox label {
	font-size: 12px;
}

#certificate-form .popup__submit,
#form_vakansii .popup__submit {
	padding: 14px 24px;
}

.popup .checkbox {
	color: var(--text);
}

.popup__field,
form,
.front-slider__form__field-checkbox {
	position: relative;
}

.popup .form-status {
	margin-top: 10px;
	display: flex;
}

.popup__field {
	padding-bottom: 20px;
}

form .front-slider__form__field-checkbox {
	overflow: visible;
	display: flex;
}

form span.form-status {
	color: var(--primary);
	width: 100%;
	font-weight: normal;
	font-size: 14px;
}

form .popup__field span.form-status {
	bottom: -15px;
}

.footer-form form span.form-status {
	color: #fff;
}

.error__form__field input,
.error__form__field textarea {
	background: #f9ebe1 !important;
}

.open-mobile-menu {
	display: none;
	background: var(--primary);
	color: #ffffff;
	border-radius: 8px;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 34px;
	padding: 10px;
	cursor: pointer;
}

.mobile-callback {
	display: none;
}

.arrow-btn {
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	gap: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.arrow-btn:hover {
	gap: 20px;
	color: var(--primary);
}

.hidden {
	display: none !important;
}

[data-fancybox="cources"],
[data-fancybox="certificates"],
[data-fancybox="reviews"],
.recommend__picture[data-fancybox] {
	position: relative;
	cursor: pointer;
	display: flex;
}

[data-fancybox="certificates"] {
	max-height: 100%;
	height: 100%;
}

[data-fancybox="reviews"]::before,
[data-fancybox="product"]::before,
[data-fancybox="cources"]::before,
[data-fancybox="certificates"]::before,
.recommend__picture[data-fancybox]::before {
	content: "";
	background: url(../images/icon_zoom.svg);
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	background-size: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.9s;
	background-position: bottom left;
	max-width: 100%;
	max-height: 100%;
}

[data-fancybox="product"]::before {
	left: 0;
	bottom: auto;
	top: 0;
	width: 40px;
	height: 40px;
	transform: rotate(90deg);
}

[data-fancybox="reviews"]:hover::before,
[data-fancybox="product"]:hover::before,
[data-fancybox="cources"]:hover::before,
[data-fancybox="certificates"]:hover::before,
.recommend__picture[data-fancybox]:hover::before {
	width: 171px;
	height: 171px;
	opacity: 0.2;
}

@media (min-width: 991px) {
	main .swiper,
	.popup .swiper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	main .swiper-wrapper,
	.popup .swiper-wrapper {
		height: auto;
	}
}

.popup .swiper:not(.crosslink),
main .swiper:not(.crosslink) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

main .swiper:not(.crosslink) .swiper-wrapper,
.popup .swiper:not(.crosslink) .swiper-wrapper {
	height: auto;
}

.popup .quick-view__next,
.popup .swiper-button-next,
main .swiper-button-next {
	position: relative;
	right: auto;
	left: auto;
	top: auto;
	bottom: auto;
	-webkit-box-ordinal-group: 21;
	-ms-flex-order: 20;
	order: 20;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	float: left;
	height: auto;
	margin-top: auto;
	margin-bottom: auto;
	width: 20px;
}

.popup .quick-view__prev,
.popup .swiper-button-prev,
main .swiper-button-prev {
	position: relative;
	right: auto;
	left: auto;
	top: auto;
	bottom: auto;
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	float: left;
	height: auto;
	margin-top: auto;
	margin-bottom: auto;
	width: 20px;
}

.popup .swiper-pagination,
main .swiper-pagination {
	position: relative;
	margin: 0 25px;
	-webkit-box-ordinal-group: 16;
	-ms-flex-order: 15;
	order: 15;
	max-width: calc(100% - 105px);
}

.popup .swiper-pagination:not(.swiper-pagination-bullets-dynamic),
main .swiper-pagination:not(.swiper-pagination-bullets-dynamic) {
	right: auto;
	left: auto !important;
	top: auto !important;
	bottom: auto !important;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	float: left;
	width: auto !important;
	gap: 15px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-self: center;
}

.popup .swiper-pagination.swiper-pagination-bullets-dynamic,
main .swiper-pagination.swiper-pagination-bullets-dynamic {
	left: 0 !important;
	transform: none !important;
	top: 0;
}

.popup
	.swiper-pagination.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
main
	.swiper-pagination.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	margin: 0 12px;
}

.popup .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.popup
	.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet-active-next-next,
main .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
main
	.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet-active-next-next,
.popup .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.popup
	.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet-active-prev-prev,
main .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
main
	.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet-active-prev-prev {
	transform: scale(1);
}

.popup .swiper-pagination-bullet,
.popup .swiper-pagination .swiper-pagination-bullet,
main .swiper-pagination .swiper-pagination-bullet {
	background: var(--bullet);
	opacity: 1 !important;
	width: 13px;
	height: 13px;
	border-radius: 4px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.popup .swiper-pagination-bullet-active,
.popup .swiper-pagination .swiper-pagination-bullet-active,
main .swiper-pagination-bullet-active,
main .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--primary);
}

.popup .quick-view__next:after,
.popup .swiper-button-next:after,
main .swiper-button-next:after {
	content: "";
	background: url(/local/templates/cf/images/back.svg);
	width: 20px;
	height: 19px;
}

.popup .quick-view__prev:after,
.popup .swiper-button-prev:after,
main .swiper-button-prev:after {
	content: "";
	background: url(/local/templates/cf/images/back.svg);
	width: 20px;
	height: 19px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.pager-block {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.pager,
.navigation-arrows {
	display: flex;
	align-items: center;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.pager-item,
.pager-block a,
.pager-block .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	color: var(--title);
	font-weight: 700;
}

.pager-item a:hover {
	color: var(--primary);
}

.pager-prev {
	transform: rotate(180deg);
}

.pager-current {
	color: #ffffff;
	background: var(--primary);
	padding: 8px 16px;
	border-radius: 8px;
	line-height: 1;
}

.only-mobile {
	display: none;
}

[data-toggle-content] {
	max-height: 0;
	overflow: hidden;
	transition: 0.6s;
}

[data-toggle-content].active {
	max-height: 2000px;
}

.content,
.seo-text {
	font-size: 18px;
}

.content p,
.seo-text p {
	margin-bottom: 22px;
}

.content p.no-margin {
	margin: 0;
}

.seo-text h2,
.seo-text h3,
.seo-text h4,
.seo-text h5 {
	margin: 32px 0 22px 0;
}

.content ul,
.seo-text ul {
	margin: 10px auto 22px 22px; /* auto */
	list-style: none;
	padding: 0;
	max-width: 1180px;
	overflow: hidden;
}

.seo-text ul {
	margin-left: 0;
	margin-right: 0;
}

.content ul li,
.seo-text ul li {
	padding-left: 32px;
	position: relative;
	margin-bottom: 22px;
}

.content ul li:before,
.seo-text ul li:before {
	content: "";
	background: url(../images/point_menu.svg) no-repeat center;
	width: 20px;
	height: 20px;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 3px;
}

.content ul li.active:before,
.seo-text ul li.active:before {
	transform: rotate(90deg);
}

.content ul li:last-child,
.seo-text ul li:last-child {
	margin-bottom: 0;
}

.content__img {
	height: auto;
	padding-bottom: 20px;
	box-shadow: 0 37px 25px -20px #00000036;
	margin-right: 40px;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid var(--img-border);
	border-radius: 8px;
}

.content__text {
	max-width: 900px;
	margin-top: auto;
	margin-bottom: auto;
}

.content__text p {
}

.content__text p:first-child {
	font-size: 24px;
}

.popup {
	background: var(--wrapper-bg) !important;
	padding: 50px 30px 50px 30px !important;
	border-radius: 8px !important;
	width: 600px;
	max-width: 100%;
	display: none;
}

.popup_wide {
	width: 1200px;
}

.popup-column {
	flex-grow: 1;
}

.popup .f-button.is-close-btn {
	top: 15px !important;
	right: 15px !important;
	background: transparent;
}

.popup .f-button.is-close-btn svg {
	stroke: var(--primary);
}

.popup__title {
	font-weight: 700;
	color: var(--title);
	font-size: 30px;
	text-align: center;
	line-height: 1.2;
	text-transform: uppercase;
}

#add_review .popup__title {
	margin-bottom: 20px;
}

.popup__text {
	margin: 20px 0;
	font-size: 16px;
	color: var(--text);
	text-align: center;
}

#change_price .popup__text {
	font-size: 24px;
}

#change_price.popup {
	width: 910px;
}

.popup__field {
	gap: 20px;
}

.popup__field span {
	color: #999999;
	font-size: 14px;
	padding: 0 0 7px 22px;
	line-height: 1;
}

.popup__input {
	background: var(--bg-input);
	box-shadow: none;
	border: 0;
	-webkit-appearance: none;
	padding: 11px;
	font-size: 16px;
	outline: none !important;
	border-radius: 8px;
}

.one-click__form__input {
	border-radius: 8px;
}

.popup__submit {
	font-size: 20px;
	padding: 14px 30px;
	line-height: 1.2;
	margin-top: auto;
	position: relative;
	top: 5px;
}

label a {
	text-decoration: underline;
}

label a:hover {
	text-decoration: none;
}

.checkbox {
	display: flex;
	gap: 6px;
	padding-right: 22px;
	align-items: center;
}

.checkbox input {
	position: relative !important;
	margin-left: 0 !important;
}

.checkbox label {
	padding: 0;
}

.checkbox input[type="checkbox"] {
	all: unset;
	width: 20px;
	min-width: 20px;
	height: 20px;
	display: block;
	margin-right: 10px;
}

.checkbox input[type="checkbox"]::before {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	background: #ffffff;
	border-radius: 4px;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: 0.2s;
	border: 1px solid var(--primary);
}

.checkbox input[type="checkbox"]:checked::before {
	background: var(--primary);
	box-shadow: inset 0 0 0 3px #ffffff;
}

.section-404 {
	font-size: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 0 20px 0;
	gap: 20px 0;
}

.section-404__img-2 {
	margin-top: -55px;
	margin-bottom: 30px;
}

/*Стили для версии для слабовидящих*/

body .bvi-body textarea,
body .bvi-body select,
body .bvi-body input {
	border: 1px solid !important;
}

.add-to-favorite {
	margin-left: auto;
	position: relative;
}

.add-to-favorite input {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	opacity: 0;
	margin: 0;
	width: 20px;
	height: 20px;
}

.add-to-favorite input + label {
	z-index: 2;
	position: relative;
	cursor: pointer;
}

.add-to-favorite.active svg path {
	fill: var(--primary);
}

.content-block__detail {
	/*overflow: hidden;*/
	/*overflow: clip;*/
}

.content-block__detail li p {
	display: contents;
}

.content-block__detail h2 {
	text-align: center; /* left */
}

.bvi-body .tab-nav {
	gap: 10px;
}

.bvi-body[data-bvi-theme="brown"]
	.menu-item:not(:first-child, :last-child)::before {
	background: #4d4b43 !important;
}

.bvi-body[data-bvi-theme="white"]
	.menu-item:not(:first-child, :last-child)::before {
	background: #000000 !important;
}

.bvi-body[data-bvi-theme="black"]
	.menu-item:not(:first-child, :last-child)::before {
	background: #ffffff !important;
}

.bvi-body[data-bvi-theme="blue"]
	.menu-item:not(:first-child, :last-child)::before {
	background: #063462 !important;
}

.bvi-body[data-bvi-theme="green"]
	.menu-item:not(:first-child, :last-child)::before {
	background: #a9e44d !important;
}

.bvi-body .tab-nav__link:not(.active)::before {
	display: none;
}

.bvi-body[data-bvi-theme="blue"] .checkbox input[type="checkbox"]::before {
	background: #9dd1ff !important;
	border: 1px solid #063462;
}

.bvi-body[data-bvi-theme="blue"]
	.checkbox
	input[type="checkbox"]:checked::before {
	background: #063462 !important;
	box-shadow: inset 0 0 0 3px #9dd1ff !important;
}

.bvi-body[data-bvi-theme="white"] .checkbox input[type="checkbox"]::before {
	background: #ffffff !important;
	border: 1px solid #000000;
}

.bvi-body[data-bvi-theme="white"]
	.checkbox
	input[type="checkbox"]:checked::before {
	background: #000000 !important;
	box-shadow: inset 0 0 0 3px #ffffff !important;
}

.bvi-body[data-bvi-theme="black"] .checkbox input[type="checkbox"]::before {
	background: #000000;
	border: 1px solid #ffffff;
}

.bvi-body[data-bvi-theme="black"]
	.checkbox
	input[type="checkbox"]:checked::before {
	background: #ffffff;
	box-shadow: inset 0 0 0 3px #000000;
}

.bvi-body[data-bvi-theme="brown"] .checkbox input[type="checkbox"]::before {
	background: #f7f3d6;
	border: 1px solid #4d4b43;
}

.bvi-body[data-bvi-theme="brown"]
	.checkbox
	input[type="checkbox"]:checked::before {
	background: #4d4b43;
	box-shadow: inset 0 0 0 3px #f7f3d6;
}

.bvi-body[data-bvi-theme="green"] .checkbox input[type="checkbox"]::before {
	background: #3b2716;
	border: 1px solid #a9e44d;
}

.bvi-body[data-bvi-theme="green"]
	.checkbox
	input[type="checkbox"]:checked::before {
	background: #a9e44d;
	box-shadow: inset 0 0 0 3px #3b2716;
}

body .bvi-body[data-bvi-theme="white"] :not(.bvi-no-styles) .categories__img {
	background-color: #000000 !important;
}

body .bvi-body[data-bvi-theme="brown"] :not(.bvi-no-styles) .categories__img {
	background-color: #4d4b43 !important;
}

body .bvi-body[data-bvi-theme="green"] :not(.bvi-no-styles) {
	background: #a9e44d;
}

body .bvi-body[data-bvi-theme="brown"] :not(.bvi-no-styles) {
	background: #4d4b43;
}

body .bvi-body[data-bvi-theme="black"] :not(.bvi-no-styles) {
	background: #000000;
}

body .bvi-body[data-bvi-theme="white"] :not(.bvi-no-styles) {
	background: #ffffff;
}

body .bvi-body[data-bvi-theme="blue"] :not(.bvi-no-styles) {
	background: #063462;
}

@media (max-width: 1570px) {
	.container {
		padding-left: 50px;
		padding-right: 50px;
	}

	.form-question {
		margin-left: -50px;
		margin-right: -50px;
	}

	/* .header__logo {
		margin-right: 4%;
	} */
}

@media (max-width: 1490px) {
	.header__top-container .header__top-menu__item {
		gap: 0 12px;
	}

	.header__top-menu {
		gap: 8px;
	}
}

@media (max-width: 1460px) {
	/* .header__logo {
		margin-right: 0;
		max-width: 20%;
		min-width: 150px;
	} */

	/* .header__top-container .header__top-menu__item {
		max-width: 90px;
		font-size: 13px;
		text-wrap: balance;
	} */
}

@media (max-width: 1410px) {
	.header-buttons__item {
		font-size: 0;
	}
}

@media (max-width: 1390px) {
	/* .header-buttons__icon {
		margin-left: 0;
	} */

	.footer__copywrite {
		max-width: 100%;
		order: 5;
		width: 100%;
	}

	.footer-form__left {
		max-width: 29%;
	}

	.footer-form__right {
		max-width: 71%;
	}

	.footer-form__text {
		font-size: 17px;
		margin-top: 20px;
	}

	.footer-form__header {
		font-size: 30px;
		line-height: 1.2;
	}
}

@media (max-width: 1340px) {
	.menu-item {
		font-size: 16px;
	}

	.menu-item:not(.catalog-btn) .submenu {
		font-size: 15px;
		gap: 17px;
		width: 255px;
	}

	.menu-item:not(:first-child, :last-child)::before {
		height: 22px;
		top: 15px;
	}

	.footer__kedu {
		margin-left: 0;
		top: 0;
		-webkit-box-ordinal-group: 101;
		-ms-flex-order: 100;
		order: 100;
	}

	.footer__menu-second {
		padding-right: 0;
		margin-top: 0 !important;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.header__top-menu {
		margin-right: 0;
		gap: 18px 8px;
	}

	.header__top-menu__item {
		margin-right: 0;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		gap: 0 8px;
		font-size: 14px;
	}

	.header-buttons {
		gap: 15px 15px;
	}

	.open-city {
		gap: 0 10px;
	}
	/* 
	.header-buttons__icon {
		margin-left: 10px;
	} */
}

@media (max-width: 1230px) {
	.form-question .footer-form__container {
		padding-left: 32%;
	}

	.form-question .footer-form__left {
		max-width: 100%;
	}
	/* 
	.header__phone--item {
		font-size: 18px;
	} */

	.header__phone--item a,
	.header__address {
		font-size: 16px;
		max-width: 100%;
	}

	.container {
		padding-left: 30px;
		padding-right: 30px;
	}

	.form-question {
		margin-left: -30px;
		margin-right: -30px;
	}
}

@media (min-width: 1200px) {
	.mobile-menu {
		display: none;
	}
}

@media (max-width: 1199px) {
	.content,
	.seo-text {
		font-size: 14px;
	}

	.content__text p:first-child {
		font-size: 15px;
	}

	.content ul li,
	.seo-text ul li {
		margin-bottom: 10px;
		padding-left: 30px;
	}

	.open-mobile-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header__top .header__top-menu {
		display: none;
	}

	.header__top-menu,
	.mobile-menu .menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-top: 0;
		margin-bottom: 0;
		float: left;
		width: 100%;
		margin-left: 0;
	}

	.mobile-menu_nav > .menu {
		margin-top: 10px;
	}

	.header__top-menu__item,
	.mobile-menu .menu .menu-item {
		font-size: 15px;
		margin: 0;
		text-align: left;
	}

	.header__top-menu__item svg {
		display: none;
	}

	.mobile-menu .search__input {
		font-size: 15px;
	}

	.mobile-menu .menu-item {
		list-style: none;
		margin-top: 20px;
		float: left;
		width: 100%;
		justify-content: flex-start;
		border-radius: 0;
	}

	.mobile-menu .search {
		padding: 8px 12px;
	}

	.mobile-menu .catalog-btn a {
		gap: 18px;
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 15px;
	}

	.open-city {
		margin-left: 5px;
		margin-right: auto;
	}

	.header__menu .header__search {
		display: none;
	}
}

@media screen and (max-width: 860px) {
	main {
		-webkit-box-shadow: inset 0 26px 25px -42px #00000085;
		box-shadow: inset 0 26px 25px -42px #00000085;
	}

	.header__menu {
		display: none;
	}

	.section-404 {
		font-size: 18px;
		gap: 15px 0;
		text-align: center;
		line-height: 1.2;
		padding: 25px 0 20px 0;
	}

	.section-404__img {
		width: 80%;
	}

	.section-404__img-2 {
		width: 40%;
		margin-top: -45px;
	}

	.btn {
		font-size: 15px;
	}

	.header-buttons .special-btn {
		display: none;
	}

	.header-buttons__icon {
		/* margin-left: 0; */
		/* width: 42px; */
	}

	.header__menu .catalog-btn {
		display: none;
	}

	.footer__menu,
	.footer__menu-bottom {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 767px) {
	.header__top .header__get-sertificate,
	.header__top .license-link {
		display: none;
	}

	.header__get-sertificate {
		font-size: 15px;
		width: 100%;
		display: inline-block;
		font-weight: 500;
		letter-spacing: 0.5px;
		/* margin-top: 16px; */
	}

	.header__get-sertificate span {
		background: var(--wrapper-bg);
		padding: 6px 7px;
		color: var(--text);
		font-weight: 700;
	}

	.header__get-sertificate:hover span {
		color: var(--wrapper-bg);
	}

	.content ul li a,
	.seo-text ul li a {
		word-break: break-word;
	}

	.form-question {
		overflow: hidden;
	}

	.city-select_simple {
		left: 0;
		right: 0;
	}

	ul.region_list {
		padding: 12px 25px 22px 20px;
		font-size: 1.3em;
	}

	.popup__title {
		font-size: 22px;
	}

	.popup__input {
		width: 100%;
	}

	.popup__submit {
		padding: 12px 15px;
		top: 1px;
	}

	.popup__field {
		gap: 15px;
	}

	.content__img {
		margin-top: 0;
	}

	.columns,
	.columns-2,
	.columns-3 {
		columns: 1;
	}

	.columns-center {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.only-mobile {
		display: block;
		width: 100%;
	}

	.only-mobile.block {
		display: block !important;
	}

	.product-buttons_wrapper {
		margin-bottom: 0 !important;
		margin-top: 30px;
	}

	.only-desktop {
		display: none !important;
	}

	.form-question .footer-form__container {
		padding-left: 0;
		padding-right: 0;
	}

	.arrow-btn {
		font-size: 13px;
	}

	.section-title {
		font-size: 17px;
		margin: 25px 0;
		line-height: 1.2;
	}

	.pager {
		gap: 5px;
	}

	.pager-block {
		margin-top: 30px;
	}

	.pager-item {
		font-size: 16px;
		padding: 7px 12px;
	}

	.pager-current {
		padding: 7px 12px;
	}

	main {
		padding-top: 25px;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.form-question {
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 40px;
	}

	.open-mobile-menu {
		width: 34px;
		height: 33px;
		padding: 8px;
	}

	.header__top-container {
		gap: 10px 10px;
	}

	.open-city {
		font-size: 12px;
		gap: 0 6px;
	}

	.open-city svg {
		width: 8px;
		min-width: 8px;
		height: auto;
	}

	.header__top {
		padding: 10px 0;
		height: auto;
	}

	.header__menu {
		top: 53px;
	}

	.header__top .header-buttons__icon {
		/* margin-left: 3px; */
		height: 24px;
		width: 23px;
	}

	.header__top--mpc .header-buttons {
		align-items: flex-start;
	}

	.mobile-menu .header-buttons__icon {
		/* margin-left: 0; */
		height: 22px;
	}

	.header-buttons {
		font-size: 12px;
	}

	.header-buttons .header-buttons__item {
		font-size: 12px;
	}

	.header__second .header__callback,
	.header__second .header__address,
	.header__second .header__phone {
		display: none;
	}

	.menu-item {
		font-size: 12px;
	}

	.menu-item a {
		width: 100%;
		display: inline-block;
	}

	.header__menu-container {
		padding-left: 5px;
		padding-right: 5px;
	}

	.header__menu {
		-webkit-box-shadow: 0 17px 20px -14px #00000024;
		box-shadow: 0 17px 20px -14px #00000024;
	}

	.menu {
		margin-right: 0;
	}

	.menu-item:not(:first-child, :last-child)::before {
		height: 15px;
		top: 3px;
	}

	.mobile-menu_nav .menu-item:not(:first-child, :last-child)::before {
		display: none;
	}

	.header__second-container {
		padding-top: 16px;
		padding-bottom: 17px;
	}

	.header__messengers {
		gap: 15px;
	}

	.header__messengers svg {
		width: 25px;
	}

	/* .header__logo {
		margin-left: 1%;
	} */

	.header__messengers--item svg {
		height: 18px;
	}

	.header__messengers--item.viber svg {
		height: 21px;
	}

	.footer-form__container {
		text-align: center;
		-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;
		gap: 0;
		padding-top: 25px;
		padding-bottom: 25px;
		max-width: 90%;
	}

	.footer-form__left,
	.footer-form__right {
		max-width: 100% !important;
	}

	.footer-form__right {
		max-width: 100% !important;
	}

	.footer-form__manager {
		display: none;
	}

	.footer-form__header {
		font-size: 17px;
	}

	.footer-form__text {
		font-size: 12px;
		font-weight: 400;
		margin-top: 15px;
	}

	.task-159500 .footer-form__text {
		font-size: 14px;
	}

	.footer-form__title {
		font-size: 13px;
		margin-top: 20px;
	}

	.task-159500 .footer-form__title {
		font-size: 16px;
	}

	.task-159500 .footer-form__field {
		font-size: 14px;
	}

	.footer-form__field input[type="text"] {
		min-width: 100%;
		padding: 10px 15px;
		font-size: 12px;
	}

	.footer-form__field-checkbox input {
		width: 15px;
		height: 15px;
	}

	.footer-form__field-checkbox {
		font-size: 12px;
		text-align: left;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-top: 2px;
		padding-left: 0;
	}

	.footer-form__field-checkbox .checkbox {
		padding-right: 0;
		gap: 0;
	}

	.footer-form__field.second {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.footer-form__image {
		display: none;
	}

	.footer-form__submit {
		font-size: 14px;
		padding: 8px 17px;
		margin: 10px auto;
	}

	.footer__logo {
		max-width: 148px;
	}

	.footer__menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 8px 10px;
	}

	.footer__menu-item {
		font-size: 12px;
	}

	.task-159500 .footer__menu-item {
		font-size: 14px;
	}

	.footer__container {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 22px 15px;
	}

	.footer {
		padding: 30px 0;
	}

	.footer__subscribe {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
		margin-top: 20px;
	}

	.footer__kedu {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}

	.footer__menu-second {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 48%;
		float: left;
		max-width: calc(48% - 15px);
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 8px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-right: 15px;
	}

	.footer__contacts {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: 52%;
		float: left;
		max-width: 52%;
	}

	.footer__social {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 100%;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}

	.footer__callback {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 3;
		order: 3;
		margin-left: 0;
		margin-right: auto;
		margin-bottom: 20px;
	}

	.footer__bottom {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
		max-width: calc(100% - 188px);
		gap: 9px;
		font-size: 12px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__copywrite {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		max-width: 100%;
	}

	.task-159500 .footer__copywrite {
		font-size: 14px;
	}

	.subscribe__input {
		height: 35px;
		font-size: 14px;
		min-width: 60px;
	}

	.subscribe__submit {
		margin-bottom: 0;
	}

	.footer__contacts-item {
		font-size: 14px;
	}

	.footer__menu-second__item {
		font-size: 12px;
		line-height: 1.3;
	}

	.task-159500 .footer__menu-second__item {
		font-size: 14px;
	}

	.footer__menu-second__item:not(:last-child) {
		border-bottom: 1px solid var(--primary);
		padding-bottom: 10px;
	}

	.footer__menu-second__item.delimeter {
		display: none;
	}

	.footer__menu-second__item svg {
		display: none;
	}

	.footer__contacts-phone {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__contacts-phone .del {
		display: none;
	}

	.footer__contacts-phone .footer__icon {
		display: none;
	}

	.footer__contacts-phone a {
		background: url(../images/icon_call.svg) no-repeat left;
		padding-left: 25px;
	}

	.footer__icon {
		min-width: 15px;
		max-width: 15px;
	}

	.footer__menu-bottom {
		gap: 10px 0;
	}

	.mobile-callback {
		display: flex;
	}

	.youtube-btn {
		transform: scale(0.6);
	}
}

@media screen and (max-width: 380px) {
	.open-mobile-menu {
		width: 30px;
		height: 30px;
		padding: 6px;
	}
	.header-buttons {
		gap: 12px 10px;
	}
}

.offers-popup__title {
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--title);
}

.fancybox__slide {
	scrollbar-width: none;
}

.fancybox__content.offers-popup {
	max-height: 95%;
	display: flex !important;
	width: 550px;
	max-width: 100%;
	background: var(--wrapper-bg);
	color: var(--text);
}

.offers-popup {
	border-radius: 8px !important;
}

.offers-popup .error {
	color: var(--primary);
	font-size: 20px;
	margin: 20px 0;
}

.offers-popup_content {
	max-height: calc(100% - 100px);
	overflow-y: auto;
	padding: 0 10px 0 0;
}

.offers-popup__header {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.offers-popup__item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 15px;
}

.offers-popup__size {
	display: flex;
	align-items: center;
	font-size: 18px;
	flex-grow: 1;
	margin-right: 25px;
	width: calc(100% - 130px);
	justify-content: space-between;
}
.offers-popup__size span {
	margin-left: 25px;
	white-space: nowrap;
}

.offers-popup__count {
	width: 130px;
}

.offers-popup .form-item {
	font-size: 25px;
}

.offers-popup .form-item-qty {
}

.offers-popup .qty-down {
}

.offers-popup .form-text {
	font-size: 20px;
	width: 55px;
}

.offers-popup .qty-up {
}

.form-item-qty {
	width: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px 5px;
	position: relative;
	background: var(--bg);
	font-size: 30px;
	border-radius: 8px;
	padding: 0 18px;
}

.form-item-qty input {
	font-weight: 800;
	font-size: 27px;
}

.form-item-qty span {
	cursor: pointer;
}

.form-text {
	background: transparent;
	border: 0;
	outline: none;
	text-align: center;
	padding: 0;
	max-width: 94px;
	color: var(--text);
}

.add-to-cart,
.add-to-cart-o,
.add-to-cart-list {
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-to-cart-list {
	max-width: 240px;
	margin: 0 auto;
}

.categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 45px 20px;
	margin: 60px 0;
}

.categories__item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.categories__picture {
	background: url(../images/category_bg.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 218px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
	position: relative;
	overflow: hidden;
}

.categories__picture img {
	transition: 0.4s;
}

.categories__item:hover img {
	transform: scale(1.2);
}

.categories__title {
	color: var(--text);
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 20px;
	text-align: center;
	line-height: 1.2;
	min-height: 60px;
	transition: 0.4s;
}

.categories__picture:before {
	content: "";
	position: absolute;
	background: linear-gradient(
		0deg,
		transparent,
		var(--wrapper-bg),
		transparent
	);
	height: 6px;
	width: 100%;
	transform: rotate(64deg);
	top: 15%;
	right: -58%;
	transition: 0;
	opacity: 0.6;
}

.categories__picture:hover::before {
	animation: transformation 0.7s linear infinite reverse;
}

@keyframes transformation {
	from {
		width: 320%;
		height: calc(100% + 25px);
		transition: 0.7s;
		top: -15px;
		right: -15px;
	}
}

.categories__item:hover .categories__title {
	color: var(--primary);
}

@media screen and (max-width: 1366px) {
	.categories {
		grid-gap: 35px 15px;
	}

	.categories__picture {
		width: 180px;
		height: 160px;
	}

	.categories__img {
		width: 82px;
		height: 70px;
	}

	.categories__item {
		justify-content: flex-start;
	}

	.categories__title {
		font-size: 20px;
	}
}

@media screen and (max-width: 880px) {
	.categories__picture {
		width: 120px;
		height: 110px;
	}

	.categories__img {
		width: 60%;
		height: 55%;
	}

	.categories__title {
		font-size: 16px;
		min-height: auto;
	}
}

@media screen and (max-width: 576px) {
	.footer__subscribe-flex {
		width: 100%;
	}

	.footer__subscribe-input {
		flex-grow: 1;
	}

	.footer__subscribe {
		max-width: 100%;
		margin-top: 0;
	}

	.categories__picture {
		width: 65px;
		height: 62px;
	}

	.categories {
		grid-gap: 15px 10px;
	}

	.categories__title {
		font-size: 12px;
		margin-top: 5px;
	}

	.categories {
		margin: 20px 0;
	}
}

.faq__answer,
.orange_border_left {
	margin-bottom: 40px;
}

.faq__question {
	margin-bottom: 20px;
}

.faq__answer,
.orange_border_left {
	border-left: 8px solid #ff7316;
	padding-left: 30px;
}

.orange_border_left ul {
	margin: 30px 0;
}

.faq__answer ul {
	margin: 0;
}

.two-columns-list {
	columns: 2;
}

.big-text {
	font-size: 24px;
}

@media (max-width: 767px) {
	.two-columns-list {
		columns: 1;
	}

	.faq__answer,
	.orange_border_left {
		border-left: 4px solid #ff7316;
		padding-left: 15px;
	}
}

.content a,
.seo-text a {
	color: #ff7316;
	font-weight: 700;
}

.content a:hover,
.seo-text a:hover {
	color: #333333;
}

.accent-text {
	background: #333333;
	width: auto;
	display: inline-block;
	color: #fff;
	border-radius: 5px;
	padding: 5px;
	margin-top: 12px;
}

.big-num-list {
	max-width: 1130px;
	margin: 0 auto;
	counter-reset: num;
	padding: 0;
	font-size: 24px;
}

.big-num-list li {
	list-style: none;
	gap: 50px;
	display: flex;
	margin-bottom: 30px;
	counter-increment: num;
}

.big-num-list li:before {
	content: counter(num);
	display: inline-flex;
	width: 97px;
	font-size: 45px;
	height: 97px;
	background-color: #ff7316;
	color: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}

.big-num-list li span {
	width: 80%;
}

.big-num-list__one-string-item {
	display: flex;
	align-items: center;
}

.big-num-list ul {
	counter-reset: num2;
	font-size: 18px;
	margin: 0;
}

.big-num-list ul > li {
	counter-increment: num2;
}

.medium-num-list {
	margin: 0 auto;
	counter-reset: num;
	padding: 0;
	font-size: 16px;
	text-decoration: none;
	color: inherit;
	font-weight: 400;
}

.medium-num-list li {
	list-style: none;
	gap: 30px;
	display: flex;
	margin: 30px 0;
	counter-increment: num;
}

.medium-num-list li:before {
	content: counter(num);
	display: inline-flex;
	width: 50px;
	font-size: 40px;
	height: 50px;
	background-color: var(--primary);
	color: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1;
}

.medium-num-list.dark li:before {
	background-color: var(--footer-bg);
}

.medium-num-list li span {
	width: calc(100% - 50px);
}

.medium-num-list__one-string-item {
	display: flex;
	align-items: center;
}

.medium-num-list ul {
	counter-reset: num2;
	font-size: 18px;
	margin: 0;
}

.medium-num-list ul > li {
	counter-increment: num2;
}

.small-num-list {
	counter-reset: num;
	padding: 0;
	font-size: 14px;
}

.small-num-list li {
	list-style: none;
	gap: 15px;
	display: flex;
	margin-bottom: 10px;
	counter-increment: num;
}

.small-num-list li:before {
	content: counter(num);
	display: inline-flex;
	width: 16px;
	min-width: 16px;
	font-size: 14px;
	height: 20px;
	background-color: var(--primary);
	color: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	font-weight: 700;
	line-height: 1;
}

.like-a-title {
	font-weight: 600;
	font-size: 18px;
}

.content-block-container {
	display: flex;
	gap: 50px;
	align-items: center;
}

.content-block-container img {
	height: auto;
}

.main-info-content {
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 1199px) {
	.big-num-list ul,
	.like-a-title {
		font-size: 14px;
	}

	.big-num-list,
	.main-info-content {
		font-size: 18px;
	}

	.big-num-list li {
		gap: 30px;
	}

	.big-num-list li:before {
		width: 60px;
		font-size: 36px;
		height: 60px;
	}

	.content-block-container {
		flex-direction: column;
		gap: 10px;
	}
}

@media screen and (max-width: 576px) {
	.big-num-list,
	.main-info-content {
		font-size: 16px;
	}

	.big-num-list li:before {
		width: 40px;
		font-size: 21px;
		height: 40px;
	}

	.big-num-list ul,
	.like-a-title {
		font-size: 14px;
	}

	.big-num-list li span {
		width: 85%;
	}

	.big-num-list li {
		gap: 20px;
		margin-bottom: 20px;
	}
}

.stages-list {
	max-width: inherit !important;
}

.stages-list .stages-item::before {
	display: none;
}

.stages-list .stages-item {
	padding: 0;
	display: flex;
	gap: 50px;
	margin-bottom: 15px;
}

.stages-item__text {
	display: flex;
	width: 90%;
	gap: 50px;
}

.stages-item__title {
	width: 30%;
	text-transform: uppercase;
	font-weight: 600;
}

.stages-item__descr {
	width: 70%;
}

.stages-item__img {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.stages-item__img svg path {
	fill: var(--main-text);
}

@media (min-width: 767px) {
	.stages-item__img {
		width: 10%;
	}
}

@media (max-width: 991px) {
	.stages-item__text,
	.stages-list .stages-item {
		gap: 30px;
	}
}

@media (max-width: 767px) {
	.stages-item__text {
		flex-direction: column;
		gap: 20px;
		width: 80%;
	}

	.stages-item__title,
	.stages-item__descr {
		width: 100%;
	}

	.stages-item__img {
		justify-content: space-evenly;
	}

	.stages-list .stages-item {
		margin-bottom: 20px;
	}

	.stages-item__img {
		width: 20%;
	}
}

.content-page__nav {
	display: flex;
	justify-content: space-between;
	margin-top: 0px;
}

.content-page__nav-prev {
	flex-direction: row-reverse;
	font-weight: 600;
}

.content-page__nav-prev svg {
	transform: rotate(180deg);
}

.content-page__nav-next {
	font-weight: 600;
}

@media screen and (max-width: 991px) {
	.content-page__nav-next,
	.content-page__nav-prev {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.content-page__nav-next,
	.content-page__nav-prev {
		font-size: 13px;
		max-width: 113px;
		gap: 10px;
		line-height: 1.3;
	}

	.content-page__nav-next {
		text-align: right;
	}
}

.advantages_five_elements {
	display: flex;
}

.advantages_five_elements .advantages__item {
	justify-content: flex-start;
	width: 20%;
}

.advantages_five_elements .advantages__text {
	margin-bottom: 20px;
}

.advantages_five_elements .advantages__info {
	text-align: center;
	font-size: 16px;
}

.advantages__margin-bottom {
	margin-bottom: 50px;
}

@media (max-width: 1280px) {
	.advantages_five_elements {
		flex-wrap: wrap;
		justify-content: center;
	}

	.advantages_five_elements .advantages__info {
		font-size: 15px;
	}

	.advantages_five_elements .advantages__item {
		width: 48%;
	}
}

@media (max-width: 526px) {
	.advantages_five_elements .advantages__item {
		width: 100%;
	}

	.advantages__text {
		font-size: 12px;
	}

	.advantages__margin-bottom {
		margin-bottom: 30px;
	}
}

.two-column-flexbox ul {
	margin-top: 0;
	margin-bottom: 10px;
}

.two-column-flexbox {
	margin-bottom: 30px;
}

@media (min-width: 767px) {
	.two-column-flexbox {
		display: flex;
		gap: 40px;
	}

	.two-column-flexbox ul:first-child {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.two-column-flexbox ul:nth-child(2) {
		margin-left: 0;
	}
}

.offers-popup {
	transition: 0.3s;
}

.offers-popup .btn__primary {
	max-width: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.offers-popup.ready .offers-popup_order {
	display: none;
	transition: 0.3s;
}

.offers-popup .offers-popup_ready {
	display: none;
	transition: 0.3s;
}

.offers-popup.ready .offers-popup_ready {
	display: block;
	transition: 0.3s;
}

/* Стили для таблицы /informatsiya/tablitsa-razmerov/ */
.guests-table,
.climatic_zones-table {
	border-spacing: 0;
}

.guests-table .orange_border_left {
	margin: 0;
}

.guests-table th:not(:first-child) {
	width: 260px;
	text-align: center;
	background-color: #f5f5f5;
	padding: 10px;
}

.guests-table th:first-child {
	width: 400px;
	min-width: 110px;
}

.guests-table tr td {
	padding: 30px 0;
	border-bottom: 1px solid #cccccc;
}

.guests-table tr td:not(:first-child),
.guests-table tr th:not(:first-child) {
	text-align: center;
}

.guests-table tr th:nth-child(even),
.climatic_zones-table tr th:nth-child(even) {
	background-color: #e2e2e2;
}

.guests-table tr td img,
.climatic_zones-table tr td img {
	margin: 0 auto;
	margin-bottom: 10px;
}

.guests-table .grid-table-td {
	display: grid;
	grid-template-rows: 100px 100px 100px 100px;
	justify-items: center;
	align-items: center;
}

.guests-table .grid-table-td--3 {
	display: grid;
	grid-template-rows: 100px 100px 100px;
	justify-items: center;
	align-items: center;
}

@media (max-width: 767px) {
	.guests-table th:not(:first-child) {
		min-width: 160px;
	}

	.guests-table th:first-child {
		width: 30%;
	}

	.guests-table .orange_border_left {
		padding-right: 15px;
	}
}

.size-table tr:nth-child(4) td {
	border-bottom: none;
}

.size-table .orange_border_left {
	padding-left: 20px;
	text-align: left;
	text-transform: uppercase;
}

.guests-table.size-table .height th:not(:first-child) {
	font-weight: 500;
	background: #f5f5f5;
	min-width: 80px;
}

.guests-table.size-table th:first-child {
	min-width: 180px;
	width: 180px;
}

.size-shoes {
	width: 100%;
}

.size-shoes tr th {
	text-align: left;
	width: 400px;
}

.size-headdress tr th {
	width: 250px;
	text-align: left;
}

.size-shoes tr th .orange_border_left,
.size-headdress tr th .orange_border_left {
	margin-bottom: 0;
}

.size-shoes tr th,
.size-shoes tr td,
.size-headdress tr td,
.size-headdress tr th {
	padding: 20px;
}

.size-shoes tr th,
.size-headdress tr th {
	padding-left: 0;
}

.size-shoes tr td,
.size-headdress tr td {
	text-align: center;
}

.size-headdress {
	max-width: 990px;
	margin: 0 auto;
}

html[data-theme="dark"] .guests-table th:not(:first-child),
html[data-theme="dark"] .guests-table.size-table .height th:not(:first-child) {
	background-color: var(--secondary);
}

/* Стили для таблицы /informatsiya/tablitsa-razmerov/ end */

.show-more-values {
	display: none;
}

.show-more-parent {
	width: 100%;
}

@media screen and (max-width: 991px) {
	.header__top--mpc .header-buttons {
		gap: 15px 8px;
	}

	.license-link {
		font-size: 12px;
	}

	.license-link .btn__small {
		font-size: 12px !important;
		padding: 9px 6px;
	}

	.breadcrumbs {
		font-size: 13px;
		gap: 4px 0;
	}

	.task-159500 .breadcrumbs {
		font-size: 14px;
	}

	.breadcrumbs__delimiter svg {
		width: 6px;
	}

	.breadcrumbs__item {
		margin-right: 8px;
	}

	.breadcrumbs__delimiter {
		margin-right: 8px;
	}

	.show-more-parent .overflow-column {
		max-height: 188px;
	}

	.show-more-parent.active .overflow-column {
		max-height: 295px;
	}

	.show-more-values {
		display: inline-block;
		-webkit-appearance: none;
		background: transparent;
		border: 0;
		border-bottom: 1px dashed var(--primary);
		color: var(--primary);
		padding: 0;
		font-size: 15px;
		margin-bottom: 20px;
	}

	.show-more-parent:not(.active) .show-more-item {
		display: none;
	}
}

@media screen and (max-width: 815px) {
	.header__top .license-link {
		display: none;
	}

	.header__top--mpc .header-buttons {
		gap: 15px 15px;
	}
}

.old-price {
	font-size: 20px;
	color: var(--title);
	text-decoration: line-through;
}

.product-item__price {
	align-items: baseline;
	gap: 12px;
	line-height: 1;
	margin: 10px 0;
	flex-wrap: wrap;
}

.new-price {
	font-size: 38px;
	color: var(--primary);
	font-weight: 700;
}

@media (max-width: 1460px) {
	.new-price {
		font-size: 28px;
	}

	.old-price {
		font-size: 17px;
	}
}

@media (max-width: 576px) {
	.new-price {
		font-size: 17px;
	}

	.old-price {
		font-size: 12px;
	}

	.product-item__price {
		margin: 0;
	}
}

@media screen and (max-width: 414px) {
	.product-item__price {
		margin-top: auto;
	}
}

.content .with-icons-list li {
	padding-left: 0;
	position: static;
	list-style: none;
	margin-bottom: 25px;
}

.content .with-icons-list li:before {
	display: none;
}

.content .with-icons-list p {
	margin-bottom: 10px;
}

.with-icons-item {
	display: flex;
	gap: 40px;
}

.with-icons-item__icon {
	width: 97px;
	height: 97px;
	background: #ff7316;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.with-icons-item__text {
	flex-basis: 75%;
}

.with-icons-item__text a {
	color: #000000;
	font-size: 20px;
}

.with-icons-item__like-title {
	font-size: 22px;
}

.messengers-list {
	display: flex;
	gap: 30px;
}

.messengers-item {
	margin-bottom: 0;
}

.messengers-item a {
	display: flex;
	width: 97px;
	height: 97px;
	justify-content: center;
	align-items: center;
	border: 2px solid #ff7316;
	border-radius: 8px;
	box-shadow: 0 32px 37px -29px #00000085;
}

.compare-fixed-block {
	position: fixed;
	top: -400px;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--wrapper-bg);
	box-shadow: 0 35px 25px -29px #00000085;
	padding: 20px 30px;
	transition: 0.4s;
	height: 165px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.compare-fixed-block.active {
	top: 0;
}

.compare-fixed-block .bx_catalog-compare-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.compare-fixed-block a {
	color: var(--primary);
}

.compare-fixed-block .bx_catalog_compare_count {
	display: flex;
	gap: 20px;
	font-size: 15px;
	flex-wrap: wrap;
}

.compare-fixed-block .compare-redirect {
	display: inline-block;
}

.compare-fixed-block .compare-redirect a {
	border-bottom: 1px dashed var(--primary);
	display: inline-block;
	font-weight: 400;
	color: var(--primary);
}

.compare-fixed-block .bx_catalog_compare_form {
	display: none;
}

.compare-fixed-block__close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.compare-fixed-block .compare-redirect a:hover {
	color: var(--text);
	border-color: var(--text);
}

.compare-fixed-block .compare-items {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--title);
}

.compare-fixed-block__title {
	font-size: 20px;
	text-transform: uppercase;
	color: var(--title);
	font-weight: 700;
	margin-bottom: 20px;
}

@media (max-width: 1360px) {
	.medium-num-list li:before {
		width: 42px;
		font-size: 28px;
		height: 42px;
	}

	.medium-num-list li {
		gap: 15px;
		margin: 20px 0;
	}

	.medium-num-list {
		font-size: 14px;
	}
}

@media (max-width: 1199px) {
	.with-icons-item__icon,
	.messengers-item a {
		width: 70px;
		height: 70px;
	}

	.with-icons-item__text a,
	.with-icons-item__like-title {
		font-size: 16px;
	}

	.messengers-item a svg,
	.with-icons-item__icon svg {
		width: 40px;
	}
}

@media (max-width: 767px) {
	.compare-fixed-block {
		padding: 15px 15px;
		height: auto;
		align-items: flex-start;
	}

	.compare-fixed-block__title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.compare-fixed-block .bx_catalog_compare_count {
		font-size: 14px;
	}

	.compare-fixed-block .bx_catalog_compare_count {
		gap: 0;
	}

	.medium-num-list {
		font-size: 12px;
		font-weight: 300;
	}

	.task-159500 .medium-num-list {
		font-size: 14px;
	}

	.medium-num-list li {
		margin: 20px 0;
		align-items: center;
	}

	.medium-num-list li:before {
		width: 31px;
		font-size: 16px;
		height: 31px;
	}

	.with-icons-item__icon,
	.messengers-item a {
		width: 50px;
		height: 50px;
	}

	.with-icons-item__icon svg,
	.messengers-item a svg {
		width: 25px;
	}

	.with-icons-item {
		gap: 25px;
	}

	.content ul .messengers-item a {
		display: flex;
		overflow-x: clip;
	}

	.messengers-list {
		gap: 20px;
	}
}

#toTopBtn {
	position: fixed;
	bottom: 20px;
	right: 35px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: var(--bg);
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
	opacity: 0;
	transition: 0.5s;
	width: 55px;
	height: 55px;
	transform: rotate(270deg);
	box-shadow: 0 0 47px 0 #0000004f;
}

@media (max-width: 767px) {
	.content__picture + .content__text {
		margin-top: 40px;
	}

	.sertificate-info .content-info.d-flex {
		flex-wrap: wrap;
	}
	.sertificate-info .content-info__text,
	.sertificate-info .content-info__img {
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.sertificate-info .content-info__img {
		order: 0;
	}
	.sertificate-info .content-info__text {
		order: 1;
	}
	.sertificate-types {
		justify-content: center;
	}
	.sertificate-info .content-info__text p.uppercase,
	.sertificate-info .content-info__text p.small {
		text-align: center;
		width: 100%;
	}
}

/* Новый блок на странице акций */
.promotion-info {
	border-top: 1px solid #bbbbbb;
	border-bottom: 1px solid #bbbbbb;
	margin: 20px 0;
	margin-bottom: 50px;
}

.promotion-info__wrapper {
	margin: 40px auto 30px auto;
	max-width: 1020px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: baseline;
}

.promotion-info__item {
	display: flex;
	width: 100%;
	gap: 30px;
	font-size: 16px;
	line-height: 24px;
}

.promotion-info__question {
	display: flex;
	gap: 10px;
	font-weight: 700;
	flex-basis: 30%;
}

.promotion-info__answer {
	flex-basis: 70%;
}

.promotion-info__answer ul:first-child {
	margin-top: 0;
}

.promotion-info__size {
	font-size: 20px;
	color: #ffffff;
	padding: 5px 10px;
	border-radius: 4px;
	background: #ff6600;
	font-weight: 700;
	max-width: 59px;
	width: auto;
}

@media (max-width: 767px) {
	.promotion-info__item {
		flex-wrap: wrap;
	}
	.promotion-info__answer {
		flex-basis: auto;
	}
	.promotion-info__question {
		flex-basis: auto;
	}
}

@media (max-width: 500px) {
	.promotion-info {
		margin-bottom: 20px;
	}
	.promotion-info__item {
		font-size: 12px;
	}
	.promotion-info__wrapper {
		gap: 15px;
		margin: 20px 0;
	}
	.promotion-info__item {
		gap: 10px;
	}
	.promotion-info__question svg {
		width: 18px;
	}
	.promotion-info__size {
		font-size: 16px;
		max-width: 43px;
		padding: 5px;
	}
}

.grey-form {
	background: var(--body-bg);
	box-shadow: 0 31px 26px -33px #00000059;
	padding: 44px 80px 32px 80px;
	margin-left: -80px;
	margin-right: -80px;
	margin-bottom: 60px;
}

.grey-form__content {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-right: 35px;
	padding-bottom: 3%;
}

.grey-form__title {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 30px;
}

.grey-form__text {
	font-size: 17px;
}

.grey-form__form {
	width: 60%;
}

.grey-form__form__content {
	gap: 10px 23px;
	justify-content: stretch;
}

.grey-form__form__field {
	color: var(--label-text);
	margin-bottom: 8px;
}

.grey-form__form__field span {
	padding-left: 20px;
}

.grey-form__form__field input,
.grey-form__form__field textarea,
.grey-form__form__field select {
	border: 0;
	border-radius: 8px;
	font-size: 18px;
	padding: 12px 22px;
	margin-top: 5px;
	background: #ffffff;
	font-weight: 300;
	max-height: 86px;
	width: 100%;
	flex-grow: 1;
}

.grey-form__form__field textarea {
	max-height: 230px;
}

.grey-form__form__field-checkbox {
	gap: 10px 35px;
	margin-bottom: 0;
}

.grey-form__column {
	flex-grow: 1;
	max-width: 395px;
}

.grey-form__form .checkbox {
	font-size: 13px;
	color: var(--text);
	max-width: 494px;
}

@media (max-width: 1570px) {
	.grey-form {
		margin-left: -50px;
		margin-right: -50px;
		padding: 44px 50px 32px 50px;
	}
}

@media (max-width: 1230px) {
	.grey-form {
		margin-left: -30px;
		margin-right: -30px;
		padding: 44px 30px 32px 30px;
	}
}

@media (max-width: 1125px) {
	.grey-form {
		flex-direction: column;
	}

	.grey-form__content {
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-right: 0;
		padding-bottom: 30px;
		text-align: center;
	}

	.grey-form__form {
		width: 100%;
	}

	.grey-form__form__content {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	.gallery-button-next.gallery-next,
	.gallery-button-prev.gallery-prev {
		display: none;
	}

	.small-num-list li {
		gap: 12px;
		margin-bottom: 10px;
		line-height: 1.3;
	}

	.grey-form {
		margin-left: -15px;
		margin-right: -15px;
		padding: 44px 50px 32px 50px;
	}

	.grey-form__title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.grey-form__text {
		font-size: 12px;
	}

	.grey-form__form__field input,
	.grey-form__form__field textarea,
	.grey-form__form__field select {
		font-size: 14px;
		padding: 8px 20px;
	}

	.grey-form__form {
		width: 100%;
		max-width: 256px;
		margin: 0 auto;
	}

	.grey-form__form__field-checkbox {
		flex-direction: column-reverse;
		align-items: center;
		gap: 23px;
	}

	.grey-form__form .checkbox {
		font-size: 12px;
		max-width: 100%;
		padding-right: 0;
	}

	.grey-form__form .checkbox input[type="checkbox"]::before {
		width: 15px;
		height: 15px;
	}

	.grey-form__form .checkbox input[type="checkbox"] {
		width: 15px;
		min-width: 15px;
		height: 15px;
		margin-right: 4px;
	}

	.grey-form__form__field span {
		font-size: 12px;
	}
}

.product-item__labels {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 6px;
}

.sale {
	background: var(--primary);
}

.label {
	font-size: 16px;
	color: #ffffff;
	border-radius: 8px;
	padding: 3px 12px;
}

.hit {
	background: var(--violet);
}
.hit.new {
	background: var(--primary);
}
.product_label-block {
	display: flex;
}
.product_label-block div + div {
	margin-left: 10px;
}

.videoblog-detail .youtube-btn,
.videoblog__video .youtube-btn {
	width: 120px;
}
.videoblog__source svg,
.youtube-btn svg {
	border-radius: 5px;
	max-width: 100%;
}
.videoblog__source svg {
	max-height: 20px;
	max-width: 30px;
}
.videoblog__video .youtube-btn {
	top: calc(50% - 70px);
}

@media (max-width: 1200px) {
	.with-icons-list img {
		width: 30px;
	}
}

body .b24-widget-button-wrapper {
	right: 50px !important;
	bottom: 175px !important;
	top: auto;
}

.call-me-widget__fixed-btn {
	position: fixed;
	bottom: 98px;
	right: 35px;
	font-size: 0;
	background: var(--wrapper-bg);
	border-radius: 50%;
	border: 0;
	width: 52px;
	height: 52px;
	box-shadow: 0 0 0 7px #99999942;
	z-index: 2;
	cursor: pointer;
	transition: 0.4s;
}
.call-me-widget__fixed-btn:hover {
	transform: scale(1.05);
}

a.noselect,
span.noselect,
span.noselect a {
	color: inherit !important;
	font-weight: 500 !important;
}

@media (max-width: 580px) {
	.header__login.active {
		max-height: 310px;
	}
}

/**/
.tags {
	gap: 12px;
	margin-bottom: 45px;
}

.tags__item {
	font-size: 18px;
	text-transform: uppercase;
	background: var(--bg);
	padding: 10px 15px;
	border-radius: 8px;
	line-height: 1.4;
}
.small_tags .tags__item,
a.productSHB_item-section {
	font-size: 12px;
	text-transform: uppercase;
	background: #FFF;
	padding: 6px 10px;
	border-radius: 6px;
	line-height: 1.4;
	border: 2px solid var(--primary);
}

.tags__item:hover, 
a.productSHB_item-section {
	background: var(--primary);
	color: #ffffff;
}
a.productSHB_item-section:hover {
	background: #FFF;
	color: var(--primary);	
}
.productSHB_sections {
	display: flex;
	gap: 10px;
	margin: 0 0 40px 0;
	flex-wrap: wrap;
}

.tags__item.active {
	background: var(--primary);
	color: #ffffff;
}
@media (max-width: 991px) {
	.tags {
		overflow: auto;
		display: flex;
		flex: none;
		margin-bottom: 15px;
	}

	.tags__item {
		scroll-snap-align: start;
		flex: none;
		padding: 6px 12px;
		font-size: 16px;
	}
}

/*.catalog-blocks .breadcrumbs li:last-child,*/
/*.catalog-blocks .breadcrumbs li:nth-last-child(2) {*/
/*	display: none;*/
/*}*/

.lw-header-top {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	min-height: 82px;
	background-color: var(--header-top);
	z-index: 41;
}

.lw-header-top__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px 20px;

	color: #ffffff;
}

.lw-header-top__field {
	display: flex;
	align-items: center;
	gap: 6px clamp(12px, 2vw, 20px);
}

.lw-header-top .header__get-sertificate {
	white-space: nowrap;
}

@media (max-width: 1439px) {
	.lw-header-top {
		padding: 8px 0;
	}
	.lw-header-top__container {
		display: grid;
		grid-template-columns: repeat(3, auto);
		gap: 4px clamp(16px, 2.4vw, 32px);
		width: 100%;
	}

	.lw-header-top__field--features {
		grid-column: 2/4;
		justify-content: flex-end;
	}

	.lw-header-top__field--features > *:last-child {
		margin-left: auto;
	}
	/* 
	.lw-header-top__field--features .header__get-sertificate {
		margin: 0 auto;
	}

	.lw-header-top__field--features .license-link {
		margin-left: auto;
	} */

	.lw-header-top__field--action {
		grid-column: 2/4;
	}

	.header__top-menu {
		grid-row: 2/4;
	}

	.lw-header-top .header-buttons {
		margin-left: auto;
	}
}

@media (max-width: 1199px) {
	.lw-header-top__container {
		display: flex;
	}
	.lw-header-top .header__top-menu {
		display: none;
	}
}

@media (max-width: 1139px) {
	.lw-header-top__field--features {
		width: fit-content;
		flex-direction: column;
		/* justify-content: flex-end; */
		align-items: flex-end;
		margin-left: auto;
	}
	/* 
	.lw-header-top__field--features .header__get-sertificate {
		margin: 0;
	}

	.lw-header-top__field--features .license-link {
		margin-left: 0;
	} */
}

@media (max-width: 900px) {
	.lw-header-top .header-buttons .special-btn {
		display: none;
	}
}

@media (max-width: 768px) {
	.lw-header-top__field--features {
		display: none;
	}

	.lw-header-top {
		min-height: initial;
	}
}

.cart-count-badge {
	display: none;
	position: absolute;
	top: -6px;
	right: -6px;
	background-color: var(--primary);
	color: #fff;
	border-radius: 50%;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	padding: 0 3px;
	box-sizing: border-box;
	pointer-events: none;
}

.cart_btn {
	position: relative;
}

@media (max-width: 479px) {
	.lw-header-top .header-buttons .header-buttons__text {
		display: none;
	}

	.cart-count-badge:not(:empty) {
		display: block;
	}
}

.header__second-container {
	padding-top: 20px;
	flex-wrap: nowrap;
}

.header__logo {
	width: 100%;
	max-width: 325px;
}

@media (max-width: 1359px) {
	.header__logo {
		max-width: 240px;
	}
}

.header__address {
	max-width: 310px;
}

.header__phone {
	position: relative;
	margin-right: 10px;
}

.header__callback,
.header__phone--item a {
	white-space: nowrap;
}

.header__phone span {
	position: absolute;
	line-height: 1;
	white-space: nowrap;
}

.header__messengers a {
	display: flex;
}

@media (max-width: 1230px) {
	.header__phone span {
		padding-left: 25px;
	}
}

@media (max-width: 1139px) {
	.header__second-container {
		display: grid;
		grid-template-columns: 240px auto auto auto;
		justify-content: initial;
		gap: 12px 35px;
	}

	.header__address,
	.header__phone,
	.header__logo {
		grid-row: 1/3;
	}

	.header__messengers {
		margin-left: auto;
	}
}

@media (max-width: 959px) {
	.header__second-container {
		display: grid;
		grid-template-columns: 180px auto auto;
		row-gap: 8px;
	}

	.header__address {
		grid-row: 1/2;
		max-width: 100%;
	}

	.header__phone {
		grid-row: 2/3;
	}
}

@media (max-width: 860px) {
	.header__second-container {
		padding-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.header__second-container {
		display: flex;
	}
}

@media (max-width: 534px) {
	.header__second-container {
		padding: 20px;
		gap: 8px 15px;
	}
}

/* #146062 добавление стилей к таблицам */

#lw-seotext-block table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

#lw-seotext-block table th {
    text-align: center;
    font-weight: bold;
    font-family: inherit;
    background: #ff7316;
	border: 0;
    color: #fff;
    vertical-align: middle;
	padding: 16px 15px;
}

#lw-seotext-block table th:first-child {
    border-radius: 5px 0 0 0;
}

#lw-seotext-block table th:last-child {
    border-radius: 0 5px 0 0;
}

#lw-seotext-block table th p,
#lw-seotext-block table td p {
    padding: 0;
	margin: 0;
}

#lw-seotext-block table td {
	border: 1px solid #eeeeee;
}

/* #146067 добавление страницы с инструкцией iOS*/

.instruction__wrapper {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-direction: column;
	box-shadow: 0px 5px 15px 0px #0000001A;
	border-radius: 10px;
	padding: 25px 100px;
}

.instruction__company {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5rem;
	color: #657282;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.instruction__company svg {
	width: 1.6875rem;
	height: 2.005rem;
	margin-right: 0.5rem;
	fill: #657282;
}

.instruction__text {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3125rem;
	margin-bottom: 45px;
}

.instruction__steps {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.instruction__item {
	width: calc(1/3*100% - (1 - 1/3)*30px);
}

.instruction__item-number {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.instruction__item-number span {
	color: #535252;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	padding: 4px;
	border-radius: 40px;
	border: 1px solid #535252;
}

.instruction__item-text {
	text-align: center;
	font-size: 16px;
	margin-bottom: 25px;
}

.instruction__item-text a {
	color: #ff7316;
}

.instruction__item-text .p-icon {
	font-weight: bold;
	position: relative;
	padding-bottom: 50px;
}

.instruction__item-text .p-icon:after {
	content: url('data:image/svg+xml,<svg width="18" height="25" viewBox="0 0 18 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.46094 7.46143H1H0V8.46143V23.9999V24.9999H1H16.5385H17.5385V23.9999V8.46143V7.46143H16.5385H11.0763V8.46143H16.5385V23.9999H1V8.46143H6.46094V7.46143Z" fill="%23F37B09"/><line x1="8.73047" y1="15.7695" x2="8.73047" y2="1.0003" stroke="%23F37B09"/><path d="M12.6926 4.92308L8.76953 1L4.84645 4.92308" stroke="%23F37B09"/></svg>');
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

@media(max-width: 991px) {
	.instruction__wrapper {
		padding: 25px 50px;
	}
}

@media(max-width: 767px) {
	.instruction__item {
		width: 100%;
	}
	
	.instruction__item-text {
		margin-bottom: 0;
	}
	
	.instruction__text {
		font-size: 14px;
	}
}

/* #146067 правка слайдер Вопрос-Ответ */

@media(min-width: 1221px) {
	main .section-faq .swiper:not(.crosslink) {
		justify-content: flex-start;
		z-index: 11;
	}
}

@media(min-width: 1221px) and (max-width: 1500px) {
	main .section-faq .swiper-pagination {
		max-width: calc(100% - 285px);
		margin: 0 15px;
	}
	
	main .section-faq .swiper-pagination:not(.swiper-pagination-bullets-dynamic) {
		gap: 8px 8px;
	}
}

/* #145991 Добавление теней в блоки курсов и услуг */

.course-direction__elements {
	margin: 0 -80px;
	gap: 0;
	padding-bottom: 0;
    margin-bottom: 60px;
}

.course-direction__elements .element-item {
	background: var(--listing-gradient);
	padding: 30px 80px 60px;
}

.course-direction__elements .element-item__imgblock img {
    box-shadow: 0 34px 23px -25px #0000002b;
}

@media (max-width: 1570px) {
    .course-direction__elements {
		margin: 0 -50px;
	}

	.course-direction__elements .element-item {
		padding: 30px 50px 60px;
	}
}

@media (max-width: 1230px) {
    .course-direction__elements {
		margin: 0 -30px;
	}

	.course-direction__elements .element-item {
		padding: 30px 30px 60px;
	}
}

@media screen and (max-width: 767px) {
    .course-direction__elements {
		margin: 0 -15px;
	}

	.course-direction__elements .element-item {
		padding: 15px 15px 30px;
	}
}

@media(min-width: 768px) {
	.d-flex.content .course__left > .section-title {
		margin-top: 0;
	}
}

.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-item__picture img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
}


.section-gallery-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    z-index: 0
}

.section-gallery-wrapper__item {
    flex-grow: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    background-color: #fff;
    background-color: var(--white_text_black_reverse);
    background: 0 0;
    margin-bottom: -4px
}

.section-gallery-wrapper__item img {
    opacity: 0;
    transition: opacity .2s ease-in-out;
    left: 1px;
    right: 1px;
}

.section-gallery-wrapper__item._active img {
    opacity: 1;
}

.section-gallery-wrapper__item-nav {
    display: block;
    position: relative;
    margin: 0 2px 0 0;
    height: 100%
}

.section-gallery-wrapper__item:last-of-type .section-gallery-wrapper__item-nav {
    margin-right: 0
}

.section-gallery-wrapper__item-nav:before {
    content: "";
    display: block;
    height: 5px;
    background-color: #cdcdcd;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
	z-index: 1;
}

.section-gallery-wrapper__item_hidden {
    display: none
}

._active .section-gallery-wrapper__item-nav:before {
    background-color: #dc2f2f;
}

.product-item__picture {
    height: 282px;
}

.only-mobile {
	display: none !important;
}

@media(max-width: 576px) {
	.section-gallery-wrapper__item-nav:before {
		display: none;
	}
	
	body .b24-widget-button-wrapper {
		left: 35px !important;
		right: auto !important;
		bottom: 90px !important;
	}
	
	.one-click__img {
		margin-bottom: 20px;
	}
	
	.one-click__img .swiper-wrapper {
		margin-bottom: 20px;
	}
	
	.popup .f-button.is-close-btn {
		top: 12px !important;
		right: 21px !important;
	}
	
	.only-mobile.product_label-block {
		justify-content: center;
	}
	
	.only-mobile.product_label-block>div {
		width: 50%;
	}
	
	.info-mobile {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 10px;
    }
}

@media(max-width: 767px) {
	.only-mobile {
		display: flex !important;
	}
	
	.review-page__text.only-mobile {
		flex-direction: column;
	}
}

.checkbox.error__form__field {
	flex-wrap: wrap;
}

.checkbox.error__form__field label {
	flex: 1;
}

/* COOKIE */

.accept-cookie {
	display: flex;
	padding: 25px;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 100000;
	background-color: #333333;
	color: #ffffff;

	transform: translateY(0);
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.accept-cookie.hide {
	transform: translateY(100%);
	opacity: 0;
}

.accept-cookie::after {
	content: "";
	display: none;
}

.accept-cookie__btn {
	background-color: var(--primary);
	box-shadow: 0 0 8px var(--primary);
	border: none;
	color: var(--bullet);
	width: auto;
	height: 60px;
	margin: 0;
	padding: 0 42px;
}

.accept-cookie__btn:hover {
	box-shadow: 0 0 16px var(--primary);
}

.reject-cookie__btn {
	background: none;
	border: none;
	padding: 0;
	font-size: 18px;
	color: var(--gray-text);
	cursor: pointer;
	text-decoration: underline;
}

.reject-cookie__btn:hover {
	color: var(--violet);
}

.cookie-banner__text {
	max-width: 900px;
}
.cookie-banner__actions {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
}

@media (max-width: 800px) {
	.accept-cookie {
		display: flex;
		flex-flow: column;
		gap: 20px;
		padding: 20px;
		text-align: center;
		font-size: 12px;
	}

	.b24-widget-button-position-bottom-right .b24-widget-button-popup {
		left: -220px !important;
		bottom: 0 !important;
		width: 190px !important;
	}

	.accept-cookie__btn {
		height: 35px;
		font-size: 12px;
	}

	.reject-cookie__btn {
		font-size: 12px;
	}

	.cookie-banner__actions {
		flex-direction: column;
		width: 70%;
		gap: 12px;
	}
}

/* END COOKIE */

@media(min-width: 577px) {
	.review-page__text.only-mobile {
		display: none !important;
	}
	
	.review-page__text.only-desktop {
		display: block !important;
	}

	.footer__social--item.only-desktop {
		display: block !important;
	}
}

@media(max-width: 576px) {
	.review-page__text.only-mobile {
		display: block !important;
	}
	
	.review-page__text.only-desktop {
		display: none !important;
	}
}

@media (min-width: 768px) {
    body .b24-widget-button-wrapper {
        right: 29px !important;
    }
}

.show__more {
	background: #ff6600;
	color: #fff;
	cursor: pointer;
}
div.front-slider__form:has(.promo-form-main)
{
	border-radius: 12px;
	overflow: hidden;
}
img.center {
	margin-left: auto;
	margin-right: auto;
}

.section-crosslink__mini .crosslink {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.section-crosslink__mini .crosslink__item {
	width: 100%;
	min-height: auto;
	padding: 10px;
	justify-content: center;
}

@media (max-width: 576px) {
	.lw-header-top .header-buttons .theme-btn {
		display: none;
	}
}

.productSHB_item {
	width: 100%;
	max-width: 780px;
	padding: 20px;
	border: 1px solid #ccc;
    border-radius: 10px;
    align-items: center;
	display: grid;
	grid-template-columns: 160px auto;
    grid-template-areas:
        "photo name"
        "photo info";
	gap: 15px;
}
a.productSHB_item-name {
	text-transform: uppercase;
	color: var(--secondary);
	grid-area: name;
}
a.productSHB_item-name:hover {
	color: var(--primary);
}
.productSHB_item-photo {
	grid-area: photo;
}
.productSHB_item-info {
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 10px;
	grid-area: info;
}
.productSHB_item-avail {
	font-size: 0.85em;
    display: flex;
    gap: 5px;
    align-items: center;
	white-space: nowrap;
	font-weight: bold;
}
@media (max-width: 640px) {
	.productSHB_item {
		justify-content: center;
	}
	.productSHB_item-anons,
	.productSHB_item-name {
		text-align: center;
	}
	.productSHB_item-info {
		flex-direction: column;
	}
}
@media (max-width: 480px) {
	.productSHB_item {
		grid-template-areas:
			"name"
			"photo"
			"info";
		grid-template-columns: auto;
	}
	.productSHB_item-photo {
		max-width: 140px;
		margin: 0 auto;
	}
}

.faq__slider .swiper-pagination {
	align-self: center;
}