:root {
	--white: #fff;
	--bg: #eff4f8;
	--black-100: #1a1a1a;
	--black-80: rgba(26, 26, 26, 0.8);
	--black-65: rgba(26, 26, 26, 0.65);
	--black-50: rgba(26, 26, 26, 0.5);
	--black-30: rgba(26, 26, 26, 0.3);
	--grey: #dae0e8;
	--light-grey: #f2f4f7;
	--link: #1f62b3;
	--blue: #b7d0ed;
	--light-blue: #e1ebf7;
	--shadow: 0px 0px 8px 0px rgba(200, 209, 218, 0.5);
}

body {
	color: var(--black-100);
	font-family: "HelveticaNeueCyr";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
	background-color: var(--bg);
}

.body-wrapper {
	overflow-x: clip;
	position: relative;
}

.container {
	width: 1456px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 40px;
}

.section:not(:last-child) {
	margin-bottom: 32px;
}

.section_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.content h1,
.h1 {
	font-size: 32px;
	font-weight: 500;
	line-height: 120%;
}

.content h2,
.h2 {
	font-size: 25px;
	font-weight: 500;
	line-height: 120%;
}

.content h3,
.large-text {
	font-size: 19px;
	line-height: 120%;
}

.small-text {
	font-size: 14px;
	line-height: 120%;
}

.label-text {
	font-size: 12px;
	line-height: 120%;
}

.semibold {
	font-weight: 500;
}

.bold {
	font-weight: 700;
}

.text-80 {
	color: var(--black-80);
}

.text-65 {
	color: var(--black-65);
}

.text-30 {
	color: var(--black-30);

}

.content {
	line-height: 130%;
}

.content p:not(:last-child) {
	margin-bottom: 16px;
}

.content p:not(:first-child) {
	margin-top: 16px;
}

.content h2 {
	margin-bottom: 16px;
}

.content h2:not(:first-child) {
	margin-top: 28px;
}

.content h3 {
	font-weight: 700;
	margin-bottom: 8px;
}

.content b,
.content strong {
	font-weight: 700;
}

.content video {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--black-30);
}

.content ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-left: 20px;
}

.content ol {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-left: 20px;
}

.content ul>li {
	list-style: disc;
}

.content ol:not(:first-child),
.content ul:not(:first-child) {
	margin-top: 16px;
}

.content ol:not(:last-child),
.content ul:not(:last-child) {
	margin-bottom: 16px;
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px;
	border-radius: 100px;
	border: 1px solid var(--blue, #b7d0ed);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background: var(--white);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn_fill {
	background: var(--blue, #b7d0ed);
}

.btn_wide {
	width: 100%;
}

.btn:hover {
	background: var(--light-blue, #e1ebf7);
}

.tag-btn {
	--tagColor: var(--light-blue, #e1ebf7);
	--tagBorderColor: var(--blue, #b7d0ed);
	padding: 6px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 100px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid var(--tagBorderColor);
	background: var(--white);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-transform: lowercase;
}

.tag-btn_fill {
	background: var(--tagColor);
	border: 1px solid var(--tagColor);
}

.tag-btn_grey {
	--tagColor: var(--light-grey);
	--tagBorderColor: var(--text-65);
}

a.tag-btn:hover {
	background: var(--tagColor);
}

a.tag-btn_fill:hover {
	background: var(--white);
	border: 1px solid var(--tagBorderColor);
}

.breadcrumbs {
	padding: 8px 24px;
	border-radius: 20px;
	background-color: var(--light-blue);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	width: fit-content;
	margin-top: 9px;
}

.breadcrumbs>span {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}

.breadcrumbs a {
	display: block;
}

.breadcrumbs a::first-letter {
	text-transform: uppercase;
}

.dropdown {
	position: relative;
	z-index: 2;
}

.dropdown__btn {
	background-color: var(--light-blue);
	padding: 12px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	position: relative;
	z-index: 3;
}

.dropdown__caret {
	display: flex;
	transition: all ease 0.5s;
}

.dropdown__body {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all ease 0.5s;
	z-index: 1;
	background-color: var(--light-blue);
	width: 100%;
	height: fit-content;
	padding: 12px 24px;
	border-radius: 8px;

}

.dropdown_active .dropdown__caret {
	transform: rotate(180deg);
}

.dropdown_active .dropdown__body {
	top: 100%;
	opacity: 1;
}

.header {
	padding: 16px 0 23px;
}

.header__logo {
	width: 103px;
	height: 30px;
	display: none;
}

.header__logo img {
	-o-object-fit: contain;
	object-fit: contain;
}

.header__menu-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 13px;
	border-radius: 12px;
	background: var(--grey, #dae0e8);
	width: 44px;
	height: 44px;
	position: relative;
	display: none;
}

.header__menu-btn span {
	border-radius: 5px;
	background-color: var(--black-80);
	width: 12px;
	height: 2px;
	position: relative;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn::before {
	display: block;
	content: "";
	width: 16px;
	height: 2px;
	border-radius: 5px;
	background-color: var(--black-80);
	position: absolute;
	left: 13px;
	top: 50%;
	-webkit-transform: translateY(calc(-50% - 5px));
	transform: translateY(calc(-50% - 5px));
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn::after {
	display: block;
	content: "";
	width: 8px;
	height: 2px;
	border-radius: 5px;
	background-color: var(--black-80);
	position: absolute;
	left: 13px;
	top: 50%;
	-webkit-transform: translateY(calc(-50% + 5px));
	transform: translateY(calc(-50% + 5px));
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

/* .header__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 353px calc(100% - 353px);
	grid-template-columns: 353px calc(100% - 353px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
} */

.header__panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	max-width: 670px;

}

.header__search {
	width: 100%;
}

.header-panel-show .header__menu-btn span {
	width: 0;
	opacity: 0;
}

.header-panel-show .header__menu-btn::before {
	width: 16px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.header-panel-show .header__menu-btn::after {
	width: 16px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header-panel-show .sidebar {
	-webkit-transform: none;
	transform: none;
}

.sidebar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100vh;
	position: sticky;
	top: 0px;
	left: 0;
	padding: 16px 0 40px;
}

.sidebar__logo {
	width: 103px;
	height: 30px;
	margin-bottom: 32px;
}

.sidebar__logo img {
	-o-object-fit: contain;
	object-fit: contain;
}

.sidebar__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
}

.sidebar__bottom a {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.sidebar .nav__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.sidebar .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sidebar .nav__link {
	padding: 8px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.sidebar .nav__link svg path {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.sidebar .nav__link svg path[fill] {
	fill: var(--black-50);
}

.sidebar .nav__link svg path[stroke] {
	stroke: var(--black-50);
}

.sidebar .nav__link_active,
.sidebar .nav__link:hover {
	color: var(--black-100);
}

.sidebar .nav__link_active svg path[fill],
.sidebar .nav__link:hover svg path[fill] {
	fill: var(--black-80);
}

.sidebar .nav__link_active svg path[stroke],
.sidebar .nav__link:hover svg path[stroke] {
	stroke: var(--black-80);
}

.main__wrapper {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 353px calc(100% - 353px);
	grid-template-columns: 353px calc(100% - 353px);
}

.main__content {
	max-width: 670px;
	padding-bottom: 40px;
}

.search-field {
	border-radius: 12px;
	background: var(--grey);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: relative;
	z-index: 10;
}

.search-field__input {
	padding: 14px 24px;
	font-weight: 500;
	background-color: transparent;
	width: 100%;
}

.search-field__input::-webkit-input-placeholder {
	font-weight: 400;
}

.search-field__input:-ms-input-placeholder {
	font-weight: 400;
}

.search-field__input::-ms-input-placeholder {
	font-weight: 400;
}

.search-field__input::placeholder {
	font-weight: 400;
}

.search-field__btn {
	padding: 12px;
	padding-right: 24px;
	background-color: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.search-field__panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	border-radius: 16px;
	background: var(--white);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	padding: 24px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	pointer-events: none;
}

.search-field__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.search-field_focus {
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
}

.search-field_input .search-field__panel {
	opacity: 1;
	pointer-events: all;
}

.search-field .card {
	background: var(--light-grey, #f2f4f7);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.search-field .card__name {
	margin-bottom: 0px;
}

.popular {
	width: 100%;
}

.popular__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 12px;
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	padding: 12px 24px;
	margin-bottom: 9px;
}

.popular__slide {
	height: auto;
}

.popular .card {
	height: 100%;
}

.popular .card__wrapper {
	height: 100%;
}

.popular .card__name {
	margin-bottom: auto;
}

.card {
	border-radius: 12px;
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	padding: 16px 20px;
}

.card__wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card__img {
	border-radius: 8px;
	overflow: hidden;
	height: 100px;
	width: 100%;
	margin: 16px 0 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.card__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.card__controls-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
}

.card__controls-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.card__date {
	margin-bottom: 8px;
}

.card__name {
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.card__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 4px;
}

.card__author {
	margin-bottom: 12px;
	margin-top: 8px;
}


.slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}



.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--blue);
	padding: 4px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-image: url(../img/icons/arrow-left.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	cursor: pointer;
}

.slider-next {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.slider-navigation .swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.slider-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	gap: 4px;
}

.slider-pagination .swiper-pagination-bullet {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 8px;
	height: 8px;
	margin: 0 !important;
	opacity: 1;
	background-color: var(--light-grey);
}

.slider-pagination .swiper-pagination-bullet-active {
	background-color: var(--blue);
}

.category-card {
	border-radius: 16px;
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	padding: 24px;
}

.category-card__name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.category-card__desc {
	margin-top: 12px;
}

.category-card__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	margin-top: 20px;
}

.category-card__item {
	color: var(--link, #1f62b3);
}

.category-card__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.block-title {
	padding: 12px 28px;
	border-radius: 12px;
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	margin-bottom: 16px;
}

.article-card .card__img {
	height: 300px;
}

.article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}

.article__block {
	padding: 24px;
	border-radius: 16px;
	background: var(--white, #fff);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.article-colored-text {
	padding: 16px 20px;
	border-radius: 12px;
	background: var(--light-blue, #e1ebf7);
}

.article-colored-text:not(:last-child) {
	margin-bottom: 24px;
}

.article-colored-text:not(:first-child) {
	margin-top: 24px;
}

.advantages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
}

.advantages__list {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	padding: 0 !important;
}

.advantages__list_plus .advantages__item::before {
	content: "+";
}

.advantages__list_minus .advantages__item::before {
	content: "-";
}

.advantages__item {
	padding-left: 26px;
	position: relative;
	list-style: none !important;
}

.advantages__item::before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	content: "";
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--light-blue);
	color: var(--black-100);
	font-size: 13px;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
}

.product:not(:last-child) {
	margin-bottom: 28px;
}

.product:not(:first-child) {
	margin-top: 28px;
}

.product__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
}

.product__slider {
	width: 100%;
	height: 315px;
	border-radius: 16px;
	border: 1px solid var(--grey, #dae0e8);
	overflow: hidden;
}

.product__slide img {
	object-fit: contain;
	background-color: var(--white);
}

.product__gallery {
	width: 280px;
	max-width: 50%;
}

.product__controls {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 8px;
	padding: 0 12px;
}

.product__body {
	width: 100%;
}

.product__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.product__title {
	margin-bottom: 4px;
}

.product__characteristics {
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.product__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 1;
}

.product__row::after {
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	border-bottom: dashed 1px var(--black-65);
	position: absolute;
	bottom: 5px;
	z-index: 1;
}

.product__row span {
	background-color: var(--white);
	margin-top: auto;
}

.product__key {
	position: relative;
	z-index: 2;
	min-width: 100px;
}

.product__value {
	text-align: right;
	position: relative;
	z-index: 2;
}

.article-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	overflow: hidden;
}

.article-img:not(:last-child) {
	margin-bottom: 16px;
}

.article-img:not(:first-child) {
	margin-top: 16px;
}

.article-table {
	width: 100%;
	border-radius: 16px;
	overflow-x: auto;
	border-radius: 16px;
	background-color: var(--white);
	box-shadow: var(--shadow);
}

.article-table::-webkit-scrollbar {
	height: 4px;
	width: 100%;
}

.article-table::-webkit-scrollbar-thumb {
	height: 4px;
	border-radius: 10px;
	background: var(--blue, #b7d0ed);
}

.article-table_has-scroll {
	padding-bottom: 22px;
}

.tablepress {
	border: 1px solid var(--white);
	border-radius: 16px;
	overflow: hidden;
	margin: 0px;
	--text-color: var(--black-80);
	--head-text-color: var(--text-color);
	--head-bg-color: var(--light-blue, #e1ebf7);
	--odd-text-color: var(--text-color);
	--odd-bg-color: #fff;
	--even-text-color: var(--text-color);
	--even-bg-color: #fff;
	--hover-text-color: var(--black-100);
	--hover-bg-color: var(--bg);
	--border-color: var(--light-grey, #f2f4f7);
	--padding: 12px 16px;
}

.tablepress td {
	border: 1px solid var(--border-color);
	text-align: center;
	vertical-align: middle;
	font-size: 14px;
	line-height: 120%;
}

.tablepress td[colspan] {
	font-size: inherit;
	font-weight: 500;
	color: var(--black-100);
	background: var(--light-grey, #f2f4f7);
}

.tablepress th {
	text-align: center;
	border: 1px solid var(--white);
	font-weight: 400;
}

.tablepress caption {
	display: none;
}

.anchor-list {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 250px;
	background-color: var(--light-blue);
	border-radius: 8px;
	overflow: hidden;
	padding: 12px 16px;
}

.anchor-list .dropdown__body {
	position: static;
	top: unset;
	left: unset;
	opacity: 1;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	background: none;
}

.anchor-list .dropdown__btn {
	padding: 0;
	background: none;
}

.anchor-list.dropdown_active .dropdown__body {
	max-height: 240px;
	margin-top: 20px;
}

.anchor-list__wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
}


.anchor-list .dropdown__body {
	overflow-y: auto;
}

.anchor-list .dropdown__body::-webkit-scrollbar {
	width: 4px;
}

.anchor-list .dropdown__body::-webkit-scrollbar-thumb {
	background-color: var(--blue);
	border-radius: 10px;
}

.anchor-list__link {
	color: #1F62B380;
	transition: all ease 0.5s;
}

.anchor-list__link_active {
	color: #1F62B3CC;
}

/* min */
@media screen and (min-width: 570px) {

	.card_horizontal {
		padding: 24px;
	}

	.card_horizontal .card__wrapper {
		padding-left: 232px;
		min-height: 258px;
	}

	.card_horizontal .card__date {
		margin-bottom: 12px;
	}

	.card_horizontal .card__name {
		margin-bottom: 12px;
	}

	.card_horizontal .card__img {
		border-radius: 12px;
		position: absolute;
		top: 0;
		left: 0;
		width: 204px;
		height: 100%;
		margin: 0;
	}

	.card_horizontal .card__desc {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		margin-bottom: auto;
	}

	.card_horizontal .card__tags {
		margin-top: 12px;
	}

	.card_horizontal .card__author {
		margin: 0;
		margin-top: 8px;
	}
}

/* max */
@media screen and (max-width: 1200px) {
	.header__wrapper {
		-ms-grid-columns: 270px calc(100% - 270px);
		grid-template-columns: 270px calc(100% - 270px);
	}

	.main__wrapper {
		-ms-grid-columns: 270px calc(100% - 270px);
		grid-template-columns: 270px calc(100% - 270px);
	}
}

@media screen and (max-width: 1024px) {
	.header__wrapper {
		-ms-grid-columns: 170px calc(100% - 170px);
		grid-template-columns: 170px calc(100% - 170px);
	}

	.main__wrapper {
		-ms-grid-columns: 170px calc(100% - 170px);
		grid-template-columns: 170px calc(100% - 170px);
	}
}

@media screen and (max-width: 768px) {
	.body-wrapper {
		padding-bottom: 75px;
		overflow: hidden;
	}

	.header {
		padding: 16px 0;
	}

	.header__panel {
		position: fixed;
		z-index: 11;
		bottom: 0;
		left: 0;
		width: 100%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		background-color: var(--bg);
		padding: 15px 40px;
		max-width: none;
	}

	.header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header__logo {
		display: flex;
		width: 144px;
		height: 42px;
	}

	.main__wrapper {
		display: block;
	}

	.sidebar {
		position: fixed;
		z-index: 10;
		top: unset;
		bottom: 74px;
		left: 0;
		width: 100%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		min-height: 0;
		background-color: var(--bg);
		padding: 24px 40px 10px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	.sidebar__bottom {
		margin: 0;
	}

	.sidebar__logo {
		display: none;
	}

	.popular__slider {
		overflow: visible;
		overflow-y: clip;
	}

	.popular__navigation {
		display: none;
	}

	.search-field__panel {
		top: unset;
		bottom: calc(100% + 8px);
		width: calc(100vw - 80px);
	}

	.anchor-list {
		bottom: 74px;
		width: 100%;
		background-color: var(--bg);
		right: 0;
		padding: 14px 24px 0px;
	}
}

@media screen and (max-width: 640px) {
	.product__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 16px;
	}

	.product__gallery {
		width: 100%;
		max-width: 100%;
	}

	.product__slider {
		height: 325px;
	}
}

@media screen and (max-width: 570px) {
	.section:not(:last-child) {
		margin-bottom: 24px;
	}

	.container {
		padding: 0 20px;
	}

	.advantages {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}

	.header__panel {
		padding: 15px 20px;
	}

	.anchor-list {
		padding: 14px 20px 0px;
	}

	.search-field__panel {
		width: calc(100vw - 40px);
	}
}


/* wpulike custom style */
.wpulike {
	display: flex;
	padding: 0;
}

.wpulike-default button.wp_ulike_btn {
	background: none !important;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	padding: 0;
	display: flex;
}

.wpulike-default .wp_ulike_put_image:after {
	width: 100%;
	height: 100%;
}