:root {
	--im-teal: #25b9c0;
	--im-teal-dark: #16a6ad;
	--im-orange: #f37020;
	--im-text: #172033;
	--im-muted: #687583;
	--im-border: #e2edf0;
	--im-bg: #f7fbfc;
	--im-shadow: 0 8px 28px rgba(20, 71, 84, .08);
}

.header,
.header--fix,
.header__topWrap,
.header__main,
.headerMenu__wrap:not(.open):not(.is-mobile-open) {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: auto;
}

@media (min-width: 992px) {
	.headerMenuBackdrop {
		display: none !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	.headerMenu__wrap {
		position: relative !important;
		z-index: 50;
	}

	.headerMenu--sub.open {
		position: absolute;
		z-index: 60;
		background: #fff !important;
		opacity: 1 !important;
		box-shadow: 0 14px 34px rgba(20, 71, 84, .14);
	}
}

.header__circle--menuBtn,
.header__circle--cart,
.asideMenu__toggleBtn,
.quantity__btn {
	border: 0;
	padding: 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.im-eyebrow {
	margin: 0 0 10px;
	color: var(--im-teal);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.im-error-page {
	background: var(--im-bg);
}

.im-error-page__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
	gap: 32px;
	padding-top: 44px;
	padding-bottom: 56px;
}

.im-error-page__content,
.im-error-page__links a {
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
}

.im-error-page__content {
	padding: 34px;
}

.im-error-page h1 {
	margin: 0 0 14px;
	color: var(--im-text);
	font-size: 34px;
	line-height: 1.15;
}

.im-error-page p {
	margin: 0;
	color: var(--im-muted);
	font-size: 16px;
	line-height: 1.6;
}

.im-error-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	margin-top: 24px;
}

.im-error-search input {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--im-border);
	border-radius: 6px;
	padding: 0 16px;
	font: inherit;
}

.im-error-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.im-error-page__phone {
	display: inline-flex;
	margin-top: 18px;
	color: var(--im-teal);
	font-size: 18px;
	font-weight: 700;
}

.im-error-page__links {
	display: grid;
	gap: 14px;
	align-content: start;
}

.im-error-page__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	padding: 18px;
	color: var(--im-text);
	font-weight: 800;
}

.im-error-page__links a::after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--im-teal);
	border-right: 2px solid var(--im-teal);
	transform: rotate(45deg);
	flex: 0 0 auto;
}

[class^="im-"],
[class*=" im-"],
.brand-card,
.brand-hero,
.brand-direction-card,
.product-list-card,
.product-hero,
.product-detail-layout {
	box-sizing: border-box;
	min-width: 0;
}

[class^="im-"] *,
[class*=" im-"] *,
.brand-card *,
.brand-hero *,
.brand-direction-card *,
.product-list-card *,
.product-hero *,
.product-detail-layout * {
	box-sizing: border-box;
}

.im-content-layout,
.brand-layout,
.product-detail-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.im-section-title {
	margin: 0 0 22px;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--im-text);
}

.im-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 22px;
}

.im-section-head .im-section-title {
	margin: 0;
}

.im-section-link {
	color: var(--im-teal);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.im-section-link:hover {
	color: var(--im-teal-dark);
	text-decoration: none;
}

.im-btn,
.product-list-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 6px;
	padding: 0 22px;
	border: 1px solid transparent;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.im-btn:hover,
.product-list-card__button:hover {
	text-decoration: none;
}

.im-btn--primary,
.product-list-card__button {
	background: var(--im-teal);
	color: #fff;
}

.im-btn--primary:hover,
.product-list-card__button:hover {
	background: var(--im-teal-dark);
	color: #fff;
}

.im-btn--ghost {
	border-color: var(--im-teal);
	color: var(--im-teal);
	background: #fff;
}

.im-btn--ghost:hover {
	background: var(--im-teal);
	color: #fff;
}

.catalog-sidebar {
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--im-shadow);
}

.catalog-sidebar__toggle {
	display: none;
	width: 100%;
	min-height: 48px;
	border: 0;
	background: var(--im-teal);
	color: #fff;
	font-weight: 700;
	text-align: left;
	padding: 0 18px;
	cursor: pointer;
}

.catalog-sidebar__parent,
.catalog-sidebar__child {
	display: block;
	color: var(--im-text);
}

.catalog-sidebar__parent {
	padding: 14px 18px;
	border-bottom: 1px solid var(--im-border);
	font-weight: 700;
}

.catalog-sidebar__parent.is-active,
.catalog-sidebar__parent:hover {
	color: var(--im-teal);
	text-decoration: none;
}

.catalog-sidebar__children {
	padding: 8px 18px 14px;
	border-bottom: 1px solid var(--im-border);
}

.catalog-sidebar__child {
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.3;
}

.catalog-sidebar__child.is-active,
.catalog-sidebar__child:hover {
	color: var(--im-teal);
	text-decoration: none;
}

.brand-hero,
.im-content-card,
.product-list-card,
.im-cta,
.im-faq__item,
.product-hero {
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
}

.brand-hero {
	display: grid;
	grid-template-columns: minmax(250px, 42%) minmax(0, 1fr);
	margin-bottom: 20px;
	overflow: hidden;
}

.brand-hero__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 32px;
	background: var(--im-bg);
}

.brand-hero__image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 220px;
	object-fit: contain;
}

.brand-hero__content {
	padding: 34px;
}

.brand-hero h1 {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	color: var(--im-text);
}

.brand-hero p {
	color: var(--im-text);
	font-size: 16px;
	line-height: 1.55;
}

.brand-hero__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.brand-directions,
.brand-products,
.im-faq {
	margin-top: 28px;
}

.brand-directions + .brand-products,
.brand-directions + .im-product-list {
	margin-top: 40px;
}

.brand-documents {
	margin-top: 34px;
}

.brand-documents__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.brand-document-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 72px;
	padding: 16px 18px;
	border: 1px solid var(--im-border);
	border-radius: var(--im-radius);
	background: #fff;
	box-shadow: var(--im-shadow);
	color: var(--im-text);
	font-weight: 800;
	text-decoration: none;
}

.brand-document-card:hover {
	border-color: rgba(16, 181, 191, .55);
	color: var(--im-teal);
	text-decoration: none;
}

.brand-document-card__icon {
	position: relative;
	flex: 0 0 34px;
	width: 34px;
	height: 42px;
	border: 2px solid var(--im-teal);
	border-radius: 5px;
}

.brand-document-card__icon:before {
	content: '';
	position: absolute;
	right: -2px;
	top: -2px;
	width: 13px;
	height: 13px;
	border-left: 2px solid var(--im-teal);
	border-bottom: 2px solid var(--im-teal);
	background: #fff;
}

.brand-directions__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.brand-direction-card,
.brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	color: var(--im-text);
	text-align: center;
	box-shadow: var(--im-shadow);
}

.brand-direction-card:hover,
.brand-card:hover {
	color: var(--im-teal);
	text-decoration: none;
	border-color: rgba(37, 185, 192, .45);
}

.brand-direction-card img,
.brand-card img {
	max-width: 100%;
	max-height: 86px;
	object-fit: contain;
	margin-bottom: 12px;
}

.brand-card__fallback {
	font-size: 24px;
	font-weight: 700;
	color: var(--im-teal);
}

.im-brand-archive__hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 24px;
	padding-top: 36px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--im-border);
}

.im-brand-archive__hero h1 {
	margin: 0 0 12px;
	font-size: 40px;
	line-height: 1.15;
	color: var(--im-text);
}

.im-brand-archive__hero p {
	max-width: 720px;
	margin: 0;
	color: var(--im-muted);
	font-size: 17px;
	line-height: 1.6;
}

.im-brand-archive__content {
	margin-top: 32px;
}

.im-brand-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.brand-products__list,
.categoryList {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.product-list-card {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr) 190px;
	gap: 22px;
	align-items: center;
	padding: 18px;
}

.im-product-list {
	display: grid;
	gap: 18px;
}

.im-category-children + .im-product-list,
.im-category-children + .products {
	margin-top: 30px;
}

.im-home-category-grid.im-category-children {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.product-list-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-height: 130px;
	background: var(--im-bg);
	border-radius: 6px;
	overflow: hidden;
}

.product-list-card__image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 130px;
	height: auto;
	object-fit: contain;
}

article.product-list-card > a.product-list-card__image {
	display: flex !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

article.product-list-card > a.product-list-card__image img {
	display: block !important;
	width: auto !important;
	max-width: 100% !important;
	max-height: 130px !important;
	height: auto !important;
	object-fit: contain !important;
}

.product-list-card__title {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.3;
}

.product-list-card__title a {
	color: var(--im-text);
}

.product-list-card__sku,
.product-list-card__text {
	color: var(--im-muted);
	font-size: 14px;
	line-height: 1.45;
}

.product-list-card__actions {
	display: grid;
	align-items: center;
}

.product-hero {
	padding: 0;
	overflow: hidden;
}

.product-hero__inner {
	display: grid;
	grid-template-columns: minmax(280px, 46%) minmax(0, 1fr);
	gap: 0;
}

.product-hero__gallery {
	padding: 28px;
	border-right: 1px solid var(--im-border);
}

.product-hero__main-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	background: var(--im-bg);
	border-radius: 8px;
}

.product-hero__main-image img {
	max-width: 100%;
	max-height: 340px;
	object-fit: contain;
}

.product-hero__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 16px;
}

.product-hero__thumbs a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
	border: 1px solid var(--im-border);
	border-radius: 6px;
	background: #fff;
}

.product-hero__thumbs img {
	max-width: 100%;
	max-height: 62px;
	object-fit: contain;
}

.product-hero__summary {
	padding: 32px;
}

.product-hero__title {
	margin: 0 0 18px;
	font-size: 28px;
	line-height: 1.25;
	color: var(--im-text);
}

.product-hero__meta {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
	color: var(--im-text);
}

.product-hero__meta a {
	color: var(--im-teal);
}

.product-hero__status {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 14px;
	background: rgba(243, 112, 32, .12);
	color: var(--im-orange);
	font-weight: 700;
}

.product-hero__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.product-hero__note {
	margin: 22px 0 0;
	color: var(--im-muted);
}

.product-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 30px;
}

.product-info-grid .im-content-card:nth-child(1) {
	grid-row: span 2;
}

.im-content-card h2 {
	margin: 0 0 16px;
	font-size: 22px;
	color: var(--im-text);
}

.im-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.im-table th,
.im-table td {
	border: 1px solid var(--im-border);
	padding: 12px;
	vertical-align: top;
}

.im-table th {
	background: var(--im-bg);
	color: var(--im-text);
}

.im-steps {
	margin: 0;
	padding-left: 22px;
}

.im-steps li + li {
	margin-top: 12px;
}

.im-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.im-mini-grid div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding: 14px;
	background: var(--im-bg);
	border-radius: 6px;
	color: var(--im-text);
	font-weight: 700;
}

.im-mini-grid span {
	display: block;
	color: var(--im-muted);
	font-weight: 400;
	line-height: 1.45;
}

.product-tabs {
	margin-top: 30px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
	overflow: hidden;
	font-family: inherit;
}

.product-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--im-border);
	overflow: visible;
}

.product-tabs__tab {
	flex: 1 1 180px;
	min-height: 58px;
	border: 0;
	border-right: 1px solid var(--im-border);
	border-bottom: 1px solid var(--im-border);
	background: #fff;
	padding: 0 18px;
	color: var(--im-text);
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
}

.product-tabs__tab.is-active {
	color: #fff;
	background: var(--im-teal);
}

.product-tabs__panel:not(.is-active) {
	display: none;
}

.product-tabs__body {
	padding: 28px;
	color: var(--im-text);
	font-size: 16px;
	line-height: 1.65;
}

.product-tabs__body h2 {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
}

.product-tabs__body ul,
.product-tabs__body ol {
	margin-top: 12px;
	margin-bottom: 18px;
	padding-left: 24px;
}

.product-tabs__body li {
	padding-left: 4px;
	line-height: 1.55;
}

.product-tabs__body li + li {
	margin-top: 6px;
}

.product-tabs__accordion {
	display: none;
	width: 100%;
	min-height: 54px;
	border: 0;
	border-bottom: 1px solid var(--im-border);
	background: #fff;
	padding: 0 18px;
	text-align: left;
	color: var(--im-text);
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}

.product-related-block {
	margin-top: 32px;
}

.product-related-block__list {
	margin-top: 14px;
}

.im-empty-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 14px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
}

.im-empty-state p {
	margin: 0;
	color: var(--im-muted);
}

.feedbackForm {
	display: none;
	width: min(520px, calc(100vw - 32px));
	max-width: 100%;
	padding: 28px;
	background: #fff;
	border-radius: 8px;
}

.feedbackForm form,
.feedbackForm p,
.feedbackForm label {
	width: 100%;
	max-width: 100%;
}

.feedbackForm input,
.feedbackForm textarea,
.feedbackForm select {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	border: 1px solid var(--im-border);
	border-radius: 6px;
	padding: 10px 12px;
}

.feedbackForm textarea {
	min-height: 110px;
	resize: vertical;
}

.feedbackForm input[type="checkbox"],
.feedbackForm input[type="radio"],
.feedbackForm input[type="hidden"] {
	width: auto;
	min-height: 0;
	padding: 0;
}

.feedbackForm input[type="submit"],
.feedbackForm button[type="submit"] {
	min-height: 46px;
	border: 0;
	background: var(--im-teal);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.feedbackForm .wpcf7-not-valid-tip,
.feedbackForm .wpcf7-response-output {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
}

.subscribe__wrap {
	margin-top: 48px;
}

.im-footer {
	width: 100%;
	max-width: none;
	margin-top: 48px;
	padding: 34px 0 28px;
	background: #f7fbfc;
	border-top: 1px solid var(--im-border);
}

.im-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.25fr) minmax(170px, .8fr) minmax(220px, 1fr) minmax(240px, 1fr);
	gap: 28px;
	align-items: start;
}

.im-footer h2,
.im-footer__legal strong {
	display: block;
	margin: 0 0 12px;
	color: var(--im-text);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
}

.im-footer p,
.im-footer span,
.im-footer a {
	font-size: 14px;
	line-height: 1.5;
}

.im-footer a {
	color: var(--im-text);
}

.im-footer__brand p {
	margin: 14px 0 0;
	color: var(--im-muted);
}

.im-footer__oferta {
	font-size: 12px;
}

.im-footer__nav,
.im-footer__contacts,
.im-footer__legal {
	display: grid;
	gap: 8px;
}

.im-footer__phone {
	font-weight: 700;
}

.im-footer__social {
	margin-top: 8px;
}

.im-footer__search .searchBlock,
.im-footer__search .searchBlock__input {
	width: 100%;
	max-width: 100%;
}

.im-footer__legal {
	margin-top: 18px;
	color: var(--im-muted);
}

.im-category-toolbar {
	display: grid;
	grid-template-columns: max-content max-content max-content;
	align-items: center;
	justify-content: start;
	gap: 14px;
	margin-bottom: 22px;
}

.im-category-toolbar .woocommerce-ordering {
	float: none;
	width: auto;
	min-width: 314px;
	margin: 0;
}

.im-category-toolbar .categoryFilter {
	display: flex;
	align-items: center;
	min-height: 46px;
	height: 46px;
	padding-top: 0;
	padding-bottom: 0;
}

.im-category-toolbar .woocommerce-ordering select {
	width: 100%;
	min-height: 46px;
}

.im-category-toolbar .im-btn {
	min-width: 156px;
	height: 46px;
	margin: 0;
	white-space: nowrap;
}

.im-category-toolbar > * {
	align-self: stretch;
}

.im-pagination {
	margin: 30px 0 8px;
}

.im-pagination ul,
.im-pagination .page-numbers {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.im-pagination li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.im-pagination a,
.im-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--im-border);
	border-radius: 6px;
	background: #fff;
	color: var(--im-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.im-pagination a:hover,
.im-pagination .current {
	border-color: var(--im-teal);
	background: var(--im-teal);
	color: #fff;
	text-decoration: none;
}

.im-pagination .dots {
	min-width: 24px;
	border-color: transparent;
	background: transparent;
	color: var(--im-muted);
}

.im-catalog-support,
.im-catalog-text {
	margin-top: 30px;
}

.im-catalog-text {
	padding: 24px;
	border: 1px solid var(--im-border);
	border-radius: var(--im-radius);
	background: #fff;
	box-shadow: var(--im-shadow);
	color: var(--im-muted);
	font-size: 15px;
	line-height: 1.7;
}

.im-catalog-text h2,
.im-catalog-text h3 {
	margin: 0 0 12px;
	color: var(--im-text);
	line-height: 1.25;
}

.im-catalog-text p {
	margin: 0 0 12px;
}

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

.active-filter {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	height: 46px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--im-bg);
	color: var(--im-text);
	white-space: nowrap;
}

.active-filter a {
	color: var(--im-teal);
	font-weight: 700;
}

.im-brand-filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: -4px 0 24px;
	padding: 14px;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--im-shadow);
}

.im-brand-filter__label {
	margin-right: 4px;
	color: var(--im-muted);
	font-size: 14px;
	font-weight: 700;
}

.im-brand-filter__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 12px;
	border: 1px solid var(--im-border);
	border-radius: 6px;
	background: var(--im-bg);
	color: var(--im-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.im-brand-filter__item:hover,
.im-brand-filter__item.is-active {
	border-color: var(--im-teal);
	background: var(--im-teal);
	color: #fff;
	text-decoration: none;
}

.im-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 20px 0 28px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
}

.im-benefits__item {
	display: flex;
	gap: 14px;
	padding: 18px 22px;
	border-right: 1px solid var(--im-border);
}

.im-benefits__item:last-child {
	border-right: 0;
}

.im-benefits__icon {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 2px solid rgba(21, 181, 190, 0.28);
	border-radius: 50%;
	background: linear-gradient(180deg, #ffffff 0%, #effdfe 100%);
	color: var(--im-teal);
	box-shadow: inset 0 0 0 5px rgba(21, 181, 190, 0.08);
	flex: 0 0 auto;
}

.im-benefits__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.im-benefits__icon--2 {
	color: #1a75bb;
	border-color: rgba(26, 117, 187, 0.25);
	box-shadow: inset 0 0 0 5px rgba(26, 117, 187, 0.07);
}

.im-benefits__icon--3 {
	color: #f36b2a;
	border-color: rgba(243, 107, 42, 0.26);
	box-shadow: inset 0 0 0 5px rgba(243, 107, 42, 0.08);
}

.im-benefits__title {
	font-weight: 700;
	color: var(--im-text);
}

.im-benefits__text {
	font-size: 13px;
	color: var(--im-muted);
}

.im-content-card {
	padding: 24px;
	margin-top: 28px;
}

.im-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
}

.im-faq__question {
	width: 100%;
	min-height: 56px;
	padding: 14px 56px 14px 20px;
	border: 0;
	background: transparent;
	text-align: left;
	font-weight: 700;
	line-height: 1.35;
	color: var(--im-text);
	cursor: pointer;
	position: relative;
}

.im-faq__question:after {
	content: '+';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--im-teal);
	font-size: 22px;
}

.im-faq__answer {
	display: none;
	padding: 0 56px 20px 20px;
	line-height: 1.55;
	color: var(--im-muted);
}

.im-faq__item.is-open .im-faq__answer {
	display: block;
}

.im-faq__item.is-open .im-faq__question:after {
	content: '-';
}

.im-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 24px;
	margin-top: 30px;
}

.im-cta h2 {
	margin: 0 0 8px;
	font-size: 22px;
	color: var(--im-text);
}

.im-cta p {
	margin: 0;
	color: var(--im-muted);
}

.im-home {
	background: #fff;
}

.im-home-hero {
	min-height: 340px;
	margin-top: 18px;
	border-radius: 8px;
	background-position: center right;
	background-size: cover;
	border: 1px solid var(--im-border);
	overflow: hidden;
	box-shadow: var(--im-shadow);
}

.im-home-hero__content {
	max-width: 650px;
	padding: 58px 44px;
}

.im-home-hero h1 {
	margin: 0 0 26px;
	font-size: 36px;
	line-height: 1.22;
	color: var(--im-text);
}

.im-home-hero__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	color: var(--im-text);
}

.im-home-hero__benefits li {
	position: relative;
	padding-left: 24px;
}

.im-home-hero__benefits li:before {
	content: '';
	position: absolute;
	left: 0;
	top: .35em;
	width: 14px;
	height: 14px;
	border: 2px solid var(--im-teal);
	border-radius: 50%;
}

.im-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.im-home-section {
	margin-top: 28px;
}

.im-home-brands {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.im-home-category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.im-home-category-grid--medical {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.im-home-category-grid--bio {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.im-home-category-grid--bio .im-category-card {
	justify-items: center;
	text-align: center;
}

.im-home-category-grid--bio .im-category-card__title {
	max-width: 280px;
}

.im-category-card {
	display: grid;
	grid-template-rows: 124px auto;
	align-content: start;
	gap: 14px;
	min-height: 176px;
	min-width: 0;
	padding: 20px 52px 20px 20px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
	color: var(--im-text);
	font-weight: 700;
	position: relative;
	overflow: hidden;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.im-category-card:after {
	content: '';
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--im-teal);
	border-right: 2px solid var(--im-teal);
	transform: rotate(45deg);
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -6px;
}

.im-category-card:hover {
	color: var(--im-teal);
	text-decoration: none;
	border-color: rgba(37, 185, 192, .45);
	transform: translateY(-1px);
}

.im-category-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 124px;
	background: #fff;
}

.im-category-card__media:empty {
	display: none;
}

.im-category-card__media img {
	display: block;
	max-width: 190px;
	width: auto;
	height: 116px;
	object-fit: contain;
}

.im-category-card__title {
	display: block;
	min-width: 0;
	padding-right: 2px;
	font-size: 16px;
	line-height: 1.45;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.im-category-card__count {
	display: block;
	margin-top: 6px;
	color: var(--im-muted);
	font-size: 13px;
	font-weight: 500;
}

.im-category-card--wide {
	grid-template-rows: none;
	grid-template-columns: 140px minmax(0, 1fr);
	align-items: center;
	min-height: 128px;
	padding-right: 58px;
}

.im-category-card--wide .im-category-card__media {
	height: 98px;
}

.im-category-card--wide .im-category-card__media img {
	max-width: 136px;
	height: 96px;
}

.im-category-card--taxonomy {
	grid-template-rows: auto auto;
	min-height: 112px;
	justify-content: stretch;
}

.im-category-card--no-image {
	grid-template-rows: auto;
	align-content: center;
}

.im-category-card--wide.im-category-card--no-image {
	grid-template-columns: minmax(0, 1fr);
}

.im-home-category-grid--medical .im-category-card--wide {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 130px minmax(46px, auto);
	align-items: start;
	justify-items: center;
	height: 236px;
	min-height: 236px;
	padding: 22px 52px 22px 22px;
	text-align: center;
}

.im-home-category-grid--medical .im-category-card--wide .im-category-card__media {
	width: 100%;
	height: 130px;
}

.im-home-category-grid--medical .im-category-card--wide .im-category-card__media img {
	max-width: 210px;
	height: 126px;
}

.im-home-category-grid--medical .im-category-card--wide .im-category-card__title {
	max-width: 260px;
}

.im-home-category-grid--medical .im-category-card--wide.im-category-card--no-image {
	grid-template-rows: auto;
	align-content: center;
}

.im-home-news {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.im-home-news__item {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 18px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	box-shadow: var(--im-shadow);
}

.im-home-news__item img {
	width: 140px;
	height: 120px;
	object-fit: contain;
	background: var(--im-bg);
	border-radius: 6px;
}

.im-home-news__image {
	display: block;
	width: 140px;
	height: 120px;
	border-radius: 6px;
	background: var(--im-bg);
	overflow: hidden;
}

.im-home-news__image:hover {
	text-decoration: none;
}

.im-home-news__image img {
	width: 100%;
	height: 100%;
}

.im-home-news__item time,
.im-home-news__more {
	color: var(--im-teal);
	font-weight: 700;
}

.im-home-news__item h3 {
	margin: 8px 0;
	font-size: 17px;
	line-height: 1.3;
}

.im-home-news__item h3 a {
	color: var(--im-text);
}

.im-home-news__item p {
	margin: 0 0 12px;
	color: var(--im-muted);
	font-size: 14px;
}

.im-search-page {
	padding-bottom: 64px;
	background: var(--im-bg);
}

.im-search-hero {
	padding: 28px 0 30px;
	background: #fff;
	border-bottom: 1px solid var(--im-border);
}

.im-search-hero h1 {
	margin: 18px 0 18px;
	font-size: 34px;
	line-height: 1.15;
}

.im-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	max-width: 760px;
}

.im-search-form input {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	background: #fff;
	color: var(--im-text);
}

.im-search-form button {
	height: 52px;
	padding: 0 28px;
	border: 1px solid var(--im-teal);
	border-radius: 8px;
	background: var(--im-teal);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.im-search-page__summary {
	margin: 14px 0 0;
	color: var(--im-muted);
}

.im-search-page__grid {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 24px;
	padding-top: 28px;
}

.im-search-page__side {
	display: grid;
	gap: 16px;
	align-content: start;
}

.im-term-list {
	display: grid;
	gap: 8px;
}

.im-term-list a {
	display: block;
	padding: 10px 12px;
	border: 1px solid var(--im-border);
	border-radius: 8px;
	background: #fff;
	color: var(--im-text);
	font-weight: 700;
}

.im-term-list a:hover {
	border-color: var(--im-teal);
	color: var(--im-teal);
	text-decoration: none;
}

@media (max-width: 1199px) {
	.brand-directions__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.im-home-brands,
	.im-brand-grid,
	.im-home-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.im-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.im-category-toolbar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.im-category-toolbar .woocommerce-ordering {
		grid-column: 1 / -1;
		min-width: 0;
	}

	.im-category-toolbar .im-btn {
		width: 100%;
		min-width: 0;
	}

	html,
	body {
		overflow-x: hidden;
	}

	body.im-mobile-menu-open {
		overflow: hidden;
	}

	.headerMenu__wrap,
	.slider-menu {
		overflow: hidden;
	}

	.header {
		position: relative !important;
		z-index: 1000;
		background: #fff;
	}

	.headerMenu__wrap {
		display: none !important;
		position: absolute !important;
		top: 100%;
		left: 0 !important;
		right: 0;
		z-index: 2000;
		width: 100%;
		max-height: calc(100vh - 120px);
		overflow-y: auto !important;
		overflow-x: hidden !important;
		background: #fff;
		box-shadow: 0 18px 38px rgba(20, 71, 84, .14);
		-webkit-overflow-scrolling: touch;
	}

	.im-content-layout,
	.brand-layout,
	.product-detail-layout {
		display: block;
	}

	.im-search-page__grid {
		grid-template-columns: 1fr;
	}

	.catalog-sidebar {
		margin-bottom: 22px;
	}

	.catalog-sidebar__toggle {
		display: block !important;
	}

	.catalog-sidebar__panel {
		display: none !important;
	}

	.catalog-sidebar.is-open .catalog-sidebar__panel {
		display: block !important;
	}

	.brand-hero {
		grid-template-columns: 1fr;
	}

	.brand-directions__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-list-card {
		grid-template-columns: 140px minmax(0, 1fr);
	}

	.product-list-card__actions {
		grid-column: 1 / -1;
		justify-self: start;
		min-width: 190px;
	}

	.im-home-news,
	.im-home-category-grid--medical,
	.im-home-category-grid--bio,
	.im-footer__grid,
	.product-hero__inner,
	.product-info-grid,
	.im-error-page__hero {
		grid-template-columns: 1fr;
	}

	.product-hero__gallery {
		border-right: 0;
		border-bottom: 1px solid var(--im-border);
	}

	.product-tabs__nav {
		display: none;
	}

	.product-tabs__panel:not(.is-active) {
		display: block;
	}

	.product-tabs__accordion {
		display: block;
	}

	.product-tabs__accordion.is-active {
		color: var(--im-teal);
	}

	.product-tabs__body {
		display: none;
		padding: 22px;
	}

	.product-tabs__panel.is-active .product-tabs__body {
		display: block;
	}

	.im-home-brands,
	.im-brand-grid,
	.im-home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.container,
	.container-fluid {
		max-width: 100%;
	}

	.subscribe__wrap {
		margin-top: 32px;
	}

	.header__main {
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		align-items: start;
		gap: 16px 10px;
		width: 100%;
		max-width: 100%;
	}

	.header__logoWrap {
		grid-column: 1 / 2;
		grid-row: 1;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-self: start;
		width: auto;
		max-width: 174px;
	}

	.header__logo {
		display: block;
		max-width: 168px;
		height: auto;
	}

	.header__logoTitle {
		position: static;
		display: block;
		width: 100%;
		margin-top: 0;
		text-align: center;
		white-space: nowrap;
	}

	.header__info {
		display: block;
		grid-column: 2 / 4;
		grid-row: 1;
		align-self: start;
		justify-self: end;
		width: 176px;
		max-width: 176px;
		margin: 0;
		text-align: right;
		line-height: 1.15;
	}

	.header__infoPhone {
		display: block;
		font-size: 15px;
		line-height: 1.1;
		white-space: nowrap;
	}

	.header__infoTime,
	.header__infoMail {
		font-size: 13px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.header__circle--menuBtn {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
	}

	.searchBlock--header {
		grid-column: 2;
		grid-row: 2;
		width: 100%;
		min-width: 0;
		margin: 0;
	}

	.header__circle--adress {
		grid-column: 3;
		grid-row: 2;
		margin: 0;
	}

	.headerMenu__wrap.open,
	.headerMenu__wrap.is-mobile-open {
		display: block !important;
		position: relative !important;
		left: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		max-height: none !important;
		background: #fff !important;
		z-index: 80 !important;
		overflow: visible !important;
		transform: translateX(0) !important;
	}

	.header__main .searchBlock--header {
		max-width: none;
	}

	.header__main .searchBlock__input {
		width: 100%;
	}

	.headerMenu__wrap .slider-menu,
	.headerMenu__wrap .slider-menu nav {
		height: auto !important;
		max-width: 100% !important;
		overflow: visible !important;
	}

	.headerMenu__wrap .slider-menu nav {
		left: 0 !important;
	}

	.headerMenu__wrap .slider-menu ul {
		position: static !important;
		left: auto !important;
		width: 100% !important;
		max-width: 100% !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.headerMenu__wrap.is-accordion-menu-ready .headerMenu {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.headerMenu__wrap li {
		list-style: none;
	}

	.headerMenu__wrap .slider-menu ul ul,
	.headerMenu__wrap .headerMenu ul,
	.headerMenu__wrap.is-accordion-menu-ready .headerMenu ul {
		display: none !important;
		padding-left: 18px;
	}

	.headerMenu__wrap li:not(.is-submenu-open) > ul,
	.headerMenu__wrap.is-accordion-menu-ready li:not(.is-submenu-open) > ul {
		display: none !important;
	}

	.headerMenu__wrap .slider-menu li.is-submenu-open > ul,
	.headerMenu__wrap .headerMenu li.is-submenu-open > ul,
	.headerMenu__wrap.is-accordion-menu-ready li.is-submenu-open > ul {
		display: block !important;
	}

	.headerMenu__wrap li.is-submenu-open > ul ul,
	.headerMenu__wrap.is-accordion-menu-ready li.is-submenu-open > ul ul {
		display: none !important;
	}

	.headerMenu__wrap li.is-submenu-open > ul li.is-submenu-open > ul,
	.headerMenu__wrap.is-accordion-menu-ready li.is-submenu-open > ul li.is-submenu-open > ul {
		display: block !important;
	}

	.headerMenu__wrap .slider-menu-back,
	.headerMenu__wrap.is-accordion-menu-ready .slider-menu-back {
		display: none !important;
	}

	.headerMenu__wrap li > a,
	.headerMenu__wrap li > span {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.headerMenu__wrap li.has-mobile-submenu > a:after,
	.headerMenu__wrap li.has-mobile-submenu > span:after {
		content: '+';
		flex: 0 0 auto;
		color: var(--im-teal);
		font-weight: 700;
	}

	.headerMenu__wrap li.has-mobile-submenu.is-submenu-open > a:after,
	.headerMenu__wrap li.has-mobile-submenu.is-submenu-open > span:after {
		content: '-';
	}

	.im-category-toolbar {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.im-category-toolbar .woocommerce-ordering {
		grid-column: auto;
		min-width: 0;
	}

	.im-search-hero h1 {
		font-size: 28px;
	}

	.im-search-form {
		grid-template-columns: 1fr;
	}

	.im-search-form button {
		width: 100%;
	}

	.im-section-head,
	.im-brand-archive__hero {
		display: block;
	}

	.im-section-link,
	.im-brand-archive__hero .im-btn {
		margin-top: 14px;
	}

	.im-section-head .im-section-link {
		display: inline-block;
		max-width: 100%;
		white-space: normal;
		line-height: 1.35;
	}

	.im-brand-archive__hero h1 {
		font-size: 30px;
	}

	.im-brand-archive__hero h1,
	.brand-hero h1,
	.product-hero__title,
	.im-search-hero h1,
	.woocommerce-products-header__title,
	.page-title,
	.category-title,
	.main h1 {
		max-width: 100%;
		white-space: normal !important;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.brand-hero__content {
		padding: 22px;
		max-width: 100%;
	}

	.brand-hero__actions,
	.im-benefits,
	.im-faq__grid,
	.product-list-card,
	.im-empty-state,
	.im-cta {
		display: block;
		max-width: 100%;
	}

	.brand-directions__grid {
		grid-template-columns: 1fr;
	}

	.brand-documents__list {
		grid-template-columns: 1fr;
	}

	.im-benefits__item {
		border-right: 0;
		border-bottom: 1px solid var(--im-border);
	}

	.im-benefits__item {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr);
		align-items: start;
		gap: 14px;
		padding: 18px 20px;
	}

	.im-benefits__item:last-child {
		border-bottom: 0;
	}

	.im-benefits__title,
	.im-benefits__text {
		overflow-wrap: anywhere;
	}

	.product-list-card > * + *,
	.brand-hero__actions > * + * {
		margin-top: 14px;
	}

	.im-home-hero__content {
		padding: 34px 22px;
	}

	.im-home-hero h1 {
		font-size: 28px;
	}

	.im-home-hero__benefits,
	.im-home-hero__actions,
	.im-home-news__item,
	.im-error-search,
	.im-error-page__actions {
		display: block;
	}

	.im-home-hero__actions > * + * {
		margin-top: 10px;
	}

	.im-home-brands,
	.im-brand-grid,
	.im-home-category-grid {
		grid-template-columns: 1fr;
	}

	.im-home-news__item img {
		width: 100%;
		margin-bottom: 14px;
	}

	.im-home-news__image {
		width: 100%;
		height: auto;
		margin-bottom: 14px;
	}

	.im-home-news__image img {
		margin-bottom: 0;
	}

	.im-category-card,
	.im-category-card--wide {
		grid-template-rows: none;
		grid-template-columns: 96px minmax(0, 1fr);
		align-items: center;
		min-height: 108px;
		padding: 16px 42px 16px 14px;
	}

	.im-category-card--taxonomy,
	.im-category-card--no-image,
	.im-category-card--wide.im-category-card--no-image {
		grid-template-columns: minmax(0, 1fr);
		align-content: center;
		align-items: start;
	}

	.im-category-card--taxonomy .im-category-card__count,
	.im-category-card--no-image .im-category-card__count {
		margin-top: 8px;
	}

	.im-category-card__media,
	.im-category-card--wide .im-category-card__media {
		height: 72px;
	}

	.im-category-card__media img {
		height: 66px;
	}

	.im-btn,
	.product-list-card__button,
	.im-footer__search .searchBlock,
	.im-error-search button {
		width: 100%;
	}

	.im-error-page__content {
		padding: 24px;
	}

	.im-error-page h1 {
		font-size: 28px;
	}

	.im-error-search > * + *,
	.im-error-page__actions > * + * {
		margin-top: 12px;
	}

	.product-list-card__image {
		aspect-ratio: 4 / 3;
		min-height: 180px;
		max-width: 100%;
	}

	.product-list-card__image img {
		width: auto !important;
		max-width: 100% !important;
		max-height: 180px !important;
		height: auto !important;
	}
}
