/* .breadcrumbs__item:has(a[href="/catalog/"]) {
	display: none;
} */

.item_date {
	white-space: nowrap;
}

.contacts-list__item-title-ico svg {
	width: 30px;
}

.products__item-name {
	font-weight: 700;
}

.horizontal-menu__item.active .horizontal-menu__link:not(.horizontal-menu__item_dropdown .horizontal-menu__link) {
	color: #34b5b2;
	cursor: pointer;
	pointer-events: inherit;
}

.preloader {
	/*фиксированное позиционирование*/
	position: fixed;
	/* координаты положения */
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	/* фоновый цвет элемента */
	/* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
	z-index: 1001;
}

.preloader__row {
	position: relative;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	text-align: center;
	animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
	position: absolute;
	display: inline-block;
	top: 0;
	background-color: #34b5b2;
	border-radius: 100%;
	width: 35px;
	height: 35px;
	animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
	top: auto;
	bottom: 0;
	animation-delay: -1s;
}

@keyframes preloader-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes preloader-bounce {
	0%,
	100% {
		transform: scale(0);
	}

	50% {
		transform: scale(1);
	}
}

.loaded_hiding .preloader {
	transition: 0.3s opacity;
}

.loaded .preloader {
	/*display: none;*/
}

@media (min-width: 1023px) {
	.mobil {
		display: none;
	}
	.desktop {
		display: block;
	}
}
@media (max-width: 1023px) {
	.desktop {
		display: none;
	}
	.mobil {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.top-slider__slide a.btn {
		display: none;
	}
}

section.top-slider {
	max-height: 700px;
}

.tabs__link {
	padding: 15px 27.5px;
	font-size: 20px;
	background-color: #fff;
	color: inherit;
	font-weight: 400;
	line-height: 120%;
}

.tabs__links {
	column-gap: 10px;
}

.tabs__link-wrap--active .tabs__link {
	color: #34b5b2 !important;
}

.about_content .text-flow img {
	padding: clamp(0.625rem, 0.357rem + 0.74vw, 1.25rem);
	background-color: #fff;
	border-radius: 10px;
}

.about_content__gallery {
	--elements: 3;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	--gap: clamp(1.25rem, 0.418rem + 1.73vw, 2.5rem);
	gap: var(--gap);
}

.about_content__gallery .gallery__item {
	position: relative;
	width: calc((100% - (var(--elements) - 1) * var(--gap)) / (var(--elements)));
	aspect-ratio: 16/15;
}

.about_content__gallery .gallery__item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 14, 18, 0)), to(rgba(12, 14, 18, 0.71)));
	background: linear-gradient(180deg, rgba(12, 14, 18, 0) 0, rgba(12, 14, 18, 0.71) 100%);
	z-index: 10;
	opacity: 0;
	transition: opacity 0.4s;
}

.about_content__gallery .gallery__item:hover::before {
	opacity: 1;
}

.about_content__gallery .gallery__item img {
	width: 100%;
	height: 100%;
}

.reviews_content {
}

.inner-page__introtext {
	max-width: 800px;
	margin-bottom: 40px;
}

.reviews_items {
	--elements: 2;
	display: flex;
	flex-wrap: wrap;
	--gap: clamp(1.25rem, 0.418rem + 1.73vw, 2.5rem);
	gap: var(--gap);
}

.reviews_items__item {
	width: calc((100% - (var(--elements) - 1) * var(--gap)) / (var(--elements)));
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	/* height: 100%; */
}

.reviews_items__item--heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	margin-bottom: 30px;
}

.reviews_items__item--heading_author {
	font-size: 18px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 5px;
}

.reviews_items__item--rate {
	display: flex;
	align-items: center;
	gap: 5px;
}

.reviews_items__item-content {
	font-size: 16px;
}

.reviews_items__item-content--title {
	font-weight: 700;
	line-height: 160%;
	margin-bottom: 10px;
}

.reviews_items__item-content--readmore {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	text-decoration-line: underline;
	color: #34b5b2;
	cursor: pointer;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Roboto', 'Ubuntu', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.reviews_items__item-content--review .img-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
}

.reviews_items__item-content--review > * {
	margin: 10px 0px;
}

.reviews_items__item-content.hide-review {
	position: relative;
	overflow: hidden;
	max-height: 220px;
}

.reviews_items__item-content.hide-review.expanded {
	max-height: none !important;
}

.reviews_items__item-content--review_images {
	display: flex;
	gap: 10px 20px;
	flex-wrap: wrap;
	margin: 20px 0;
}

.reviews_items__item-content--review_images div {
	width: 90px;
	height: 60px;
	cursor: pointer;
}

.reviews_items__item-content--review_images img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.pagination {
	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;
	background-color: var(--clr-primary);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0 auto;
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	margin-top: 40px;
	margin-top: 60px;
	margin-bottom: 70px;
}

.pagination__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.pagination__list li:first-child a,
.pagination__list li:last-child a {
	background-color: #fff;
	border-radius: 10px;
}

.pagination__list li a {
	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;
	width: 60px;
	height: 60px;
	border-radius: 10px;
	transition: all 0.4s;
}

.pagination__list li a svg,
.pagination__list li a path {
	transition: all 0.4s;
}

.pagination__list li a:hover {
	color: #34b5b2;
}

.pagination__list li a.active {
	color: #fff;
	background-color: #34b5b2;
}

.pagination__list li:first-child a:hover,
.pagination__list li:last-child a:hover {
	background-color: #34b5b2;
}

.pagination__list li:first-child a:hover svg path,
.pagination__list li:last-child a:hover svg path {
	stroke: #fff;
}

.selector {
	display: block;
	position: relative;
	z-index: 1;
	width: 200px;
}

.selector__label {
	color: #707070;
}

.selector.is-active .selector__label {
	color: #303030;
}
.selector select {
	display: none;
}
.selector_mobile select {
	display: block;
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 1;
}
.selector_mobile .selector__list {
	display: none !important;
}
.selector.is-active .selector__list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.selector__label {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 0;
	cursor: pointer;
	padding: 15px 20px;
	background-color: #fff;
}
.selector__title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.selector__title.is-disabled {
	opacity: 0.7;
}
.selector__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s;
}
.selector__list {
	top: 105%;
	width: 100%;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	z-index: 20;
	background-color: #fff;
	transition: all 0.4s;
	transform: translateY(10px);
	max-height: 285px;
	border: 1px solid #ececec;
}

.selector__option {
	cursor: pointer;
	padding: 10px 15px;
	transition: all 0.4s;
}

.selector__option:hover {
	background-color: #ececec;
}

.selector__option.is-selected {
	background-color: #ececec;
}

.selector__option[data-value='hidden'] {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.selector__option.is-disabled {
	display: none;
}

.scroll {
	overflow-y: auto;
}

.scroll::-webkit-scrollbar,
textarea::-webkit-scrollbar {
	width: 6px;
}

.scroll::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
	background-color: #34b5b380;
	border-radius: 0px;
}

.selector.is-active .selector__btn {
	rotate: 180deg;
}

.review_form {
	padding: clamp(1.25rem, 0.795rem + 1.94vw, 3.125rem) clamp(0.938rem, -0.655rem + 6.8vw, 7.5rem);
	background-color: #fff;
}

.form-groups {
	margin-top: 40px;
	margin-bottom: 20px;
	--gap: clamp(1.25rem, 0.418rem + 1.73vw, 2.5rem);
	gap: 20px var(--gap);
	display: flex;
}

.add_review__form .form-group {
	display: flex;
	gap: 5px;
	flex-direction: column;
	align-items: start;
}

.review_form__title {
	font-size: clamp(1.5rem, 1.188rem + 1.33vw, 2.188rem);
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 20px;
}

.review_form__subtitle {
}

.review_form__rating {
	direction: rtl;
	display: flex;
	align-items: center;
	gap: clamp(0.313rem, -0.354rem + 1.08vw, 0.938rem);
}

.review_form__rating input {
	display: none;
}

.review_form__rating label {
	width: 52px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: 1px solid #ececec;
}

.review_form__rating label img {
	opacity: 0.3;
	width: 25px;
}

.review_form__rating input:checked ~ label img {
	opacity: 1;
}

.add_review__form .form-groups .form-group:first-child {
	width: 100%;
	max-width: 440px;
}

.add_review__form .form-groups .form-group:nth-child(2) {
	width: 100%;
	max-width: 560px;
}

.add_review__form .form-groups .form-group:nth-child(3) {
	width: 100%;
	max-width: 320px;
}

.add_review__form .form-group:nth-child(4) {
	width: 100%;
}

.add_review__form .form-group input,
.add_review__form .form-group textarea,
.add_review__form .form-group .selector__label {
	padding: 15px;
	border: 1px solid #ececec;
	width: 100%;
	height: 100%;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Roboto', 'Ubuntu', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.add_review__form .form-group input,
.add_review__form .form-group textarea,
.add_review__form .form-group .selector {
	width: 100%;
	max-height: 52px;
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
}

.add_review__form .form-group textarea {
	height: 130px;
	max-height: unset;
}

.add_review__form .form-group input:focus,
.add_review__form .form-group textarea:focus {
	outline: none;
}

.add_review__form .form-group label {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.add_review__form .form-group input::placeholder,
.add_review__form .form-group textarea::placeholder {
	color: #707070;
}

.add_review__form-btns {
	margin-top: 35px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.add_review__form-btns .btn {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: max-content;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Roboto', 'Ubuntu', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.add_review__form-btns .submit_btn {
	background-color: #303030;
}

.add_review__form-btns .privacy {
	color: var(--, #707070);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.add_review__form-btns .submit_btn:hover {
	background-color: #34b5b2;
}

#file-input {
	display: none;
}

#file-label {
	position: relative;
	cursor: pointer;
	padding-right: 74px;
	border: 1px solid #34b5b2;
	color: #34b5b2;
	background-color: transparent;
}

#file-label:hover {
	color: #fff;
	border-color: #34b5b2;
	background-color: #34b5b2;
}

#file-label:hover::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

#file-label::after {
	content: '';
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z" stroke="%2334B5B2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z" stroke="%2334B5B2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.prod-detail__characteristics-item-value img {
	pointer-events: none;
}

.prod-detail__characteristics-item {
	align-items: center;
}

#file-label.hide-img {
	padding-right: 40px;
}

#file-label.hide-img::after {
	display: none;
}

.container-xs {
	max-width: 63.4%;
	width: 100%;
}

.news__content .container-xs,
.articles__content .container-xs {
	width: 100%;
	max-width: 1040px;
}

.accordion-header {
	color: #303030 !important;
}

.tooltip_text {
	margin: 0 !important;
}

.accordion-header:not(.horizontal-menu__item .accordion-header).active,
.accordion-header:not(.horizontal-menu__item .accordion-header):hover {
	color: #fff !important;
	background-color: #34b5b2;
}

.accordion-header:not(.horizontal-menu__item > .accordion-header).active::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18" viewBox="0 0 14 18" fill="none"><path d="M7 1L7 17M7 17L13 11M7 17L1 11" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
	transform: translateY(-50%) rotate(180deg);
}

.accordion-item,
.accordion-header {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Roboto', 'Ubuntu', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.accordion-item:not(:last-child) {
	margin-bottom: 10px;
}

.accordion-header:not(.horizontal-menu__item > .accordion-header) {
	position: relative;
	background-color: #fff;
	padding: 20px;
	padding-right: 40px;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.accordion-header:not(.horizontal-menu__item > .accordion-header)::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 18px;
	background-size: 14px 18px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18" viewBox="0 0 14 18" fill="none"><path d="M7 1L7 17M7 17L13 11M7 17L1 11" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
	background-position: center;
	transition: all 0.3s;
}

.accordion-header.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.accordion-header:hover::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18" viewBox="0 0 14 18" fill="none"><path d="M7 1L7 17M7 17L13 11M7 17L1 11" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}

.accordion-header.active::after {
	transform: translateY(-50%) rotate(180deg);
}

.accordion-header:not(.horizontal-menu__item .accordion-header):hover {
	background-color: #34b5b2;
	box-shadow: 0 10px 30px 0 rgba(52, 181, 178, 0.25);
	color: #fff;
}

.accordion-content {
	background-color: #fff;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.accordion-content .text-flow {
	padding: 30px 40px;
}

.news_items {
}

.news_items__item,
.articles_items__item {
	display: flex;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.news_items__item:not(:last-child),
.articles_items__item:not(:last-child) {
	margin-bottom: 40px;
}

.news_item__slider,
.articles_item__slider {
	height: 100%;
}

.news_item__slider.swiper.def-arrows .swiper-button-prev,
.news_item__slider.swiper.def-arrows .swiper-button-next,
.articles_item__slider.swiper.def-arrows .swiper-button-prev,
.articles_item__slider.swiper.def-arrows .swiper-button-next {
	width: 50px;
	height: 50px;
}

.news_item__slider.swiper .swiper__nav,
.articles_item__slider.swiper .swiper__nav {
	bottom: 10px;
	right: 10px;
}

.news__content .pagination,
.articles__content .pagination {
	margin-bottom: 0 !important;
}

.news_item__slider.swiper.def-pagination .swiper-pagination,
.articles_item__slider.swiper.def-pagination .swiper-pagination {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.news_item__slider-img,
.articles_item__slider-img {
	width: 100%;
	height: 100%;
}

.news_item__slider-img img,
.articles_item__slider-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/0.65;
}

.news_items__item--text,
.articles_items__item--text {
	padding: 30px;
	width: calc(100% - 39.5%);
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: self-start;
}

.news_items__item--text .item_heading,
.articles_items__item--text .item_heading {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.news_items__item--text .item_heading .item_title,
.articles_items__item--text .item_heading .item_title {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
}

.news_items__item--text .item_heading .item_date,
.articles_items__item--text .item_heading .item_date {
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
}

.news_items__item--text .item_link,
.articles_items__item--text .item_link {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	color: #34b5b2;
	padding-right: 3px;
}

.swiper.news_item__slider.def-arrows .swiper-button-prev.swiper-button-disabled::before,
.swiper.news_item__slider.def-arrows .swiper-button-next.swiper-button-disabled::before,
.swiper.articles_item__slider.def-arrows .swiper-button-prev.swiper-button-disabled::before,
.swiper.articles_item__slider.def-arrows .swiper-button-next.swiper-button-disabled::before {
	border-radius: 15px;
}

.news_items__item--text .item_content,
.articles_items__item--text .item_content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
}

.articles_items__item--text .item_content {
	-webkit-line-clamp: 3;
}

.news_items__item--media,
.articles_items__item--media {
	width: 39.5%;
	border-radius: 10px;
	overflow: hidden;
	/* max-height: 295px; */
}

.our_plans__container {
	padding: 35px;
	background-color: #fff;
	border-radius: 10px;
}

.our_plans__items_item:not(:last-child) {
	margin-bottom: 40px;
}

.our_plans__media {
	border: 1px solid #eaeeef;
}

.our_plans__media {
	display: flex;
	position: relative;
}

.our_plans__media_item {
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.our_plans__media_item:hover {
	color: #34b5b2;
}

.our_plans__media--title {
	font-weight: 700;
	font-size: 25px;
	line-height: 140%;
	margin: 17px auto;
	margin-top: 12px;
	text-align: center;
	width: max-content;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.our_plans__media_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16/10.5;
	border-bottom: 1px solid #eaeeef;
	padding: 5px;
}

.our_plans__media_item img:first-child {
	border-right: 1px solid #eaeeef;
}

.our_plans__icon {
	display: flex;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
}

.our_plans__confirmation {
	text-align: center;
	margin: 15px 0;
}

.our_plans__confirmation div,
.our_plans__confirmation .link {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
}

.our_plans__confirmation .link {
	color: #303030;
}

.our_plans__confirmation .link:hover {
	color: #34b5b2;
}

.our_plans__confirmation div.confirmed {
	color: #34b5b2;
}

.our_plans__table .table {
	display: flex;
}

.our_plans__table .table .item {
	flex: 1;
	border: 1px solid #eaeeef;
}

.our_plans__table .table .item:first-child {
	border-right: none;
}

.our_plans__table .table .item li {
	padding: 10px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
	/* white-space: nowrap; */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.our_plans__table .table .item li span {
	padding-left: 5px;
}

.our_plans__table .table .item li.available span {
	white-space: nowrap;
	color: #34b5b2;
}

.our_plans__table .table .item li.unavailable span {
	white-space: nowrap;
	color: #d70000;
}

.our_plans__table .table .item li:not(:last-child) {
	border-bottom: 1px solid #eaeeef;
}

.our_plans__connection {
	text-align: center;
}

.our_plans__connection .text {
	margin: 20px 0;
}

.our_plans__connection .text > * {
	margin-bottom: 10px;
}

.our_plans__connection .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.our_plans__connection .btns .btn {
	padding: 15px 40px;
}

.puppies-list__gallery {
	flex-wrap: nowrap;
	gap: unset;
}
@media (min-width: 1230px) {
.puppies-list > * {
  flex: 0 0 calc(25% - var(--gap) * 3/4);
  /* или */
  width: calc(25% - var(--gap) * 3/4);
}}
@media (max-width: 1229px) {
.puppies-list > * {
  flex: 0 0 calc(50% - var(--gap) * 2/4);
  /* или */
  width: calc(50% - var(--gap) * 2/4);
}}
@media (max-width: 741px) {
.puppies-list > * {
  flex: 0 0 calc(100% - var(--gap) * 1/4);
  /* или */
  width: calc(100% - var(--gap) * 1/4);
}}
.puppies-list {
	--elements: 4;
	display: flex;
	flex-wrap: wrap;
	--gap: clamp(1.25rem, -0.824rem + 2.77vw, 2.5rem);
	gap: var(--gap);
}

.puppies-list .puppies-list__item {
	width: calc((100% - (var(--elements) - 1) * var(--gap)) / (var(--elements)));
	background-color: #fff;
	padding: 15px;
	margin: 0 !important;
}

.puppies-list__gallery-item img {
	aspect-ratio: 1/1.15;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.puppies-list__preview {
    /* aspect-ratio: 16 / 12.75; */
	aspect-ratio: 1;
}

.puppies-list__preview > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.puppies-list__item .swiper__nav {
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	bottom: 15px;
	justify-content: center;
}

.puppies-list__item-status,
.puppies-list__item-gender {
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
}

.puppies-list__item-name {
	display: block;
	font-weight: 800;
	font-size: 20px;
	line-height: 120%;
	text-decoration: none;
	margin-bottom: 10px;
	margin-top: 20px;
}

.puppies-list__item-title {
	min-width: unset !important;
	margin: 0 !important;
}

.puppies-list__item-second.swiper.def-pagination .swiper-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.puppies-list__item-second.swiper.def-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-transition: background-color 0.5s, width 0.5s;
	transition: background-color 0.5s, width 0.5s;
}

.puppies-list__item-second.swiper.def-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
	background-color: #fff;
}

.puppies-list__item-second.swiper.def-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-transition: background-color 0.5s, width 0.5s;
	transition: background-color 0.5s, width 0.5s;
}

.puppies-list__item-first {
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-bottom: 0;
}

.puppies-list__item-status,
.puppies-list__item-gender {
	margin-left: 0;
}

.tabs__link {
	box-shadow: 0 4px 5px 0 rgba(52, 181, 178, 0.08);
}

.prod-detail__inner.container-update {
	max-width: calc((1400px) + var(--container-horizontal-padding) * 2);
}

.puppies-list .puppies-list__item {
	/* display: flex; */
	flex-direction: column;
}

.puppies-list__item-second {
	width: 100%;
}

.container-update .prod-detail__first {
	padding: 0;
	background-color: transparent;
}

.container-update .prod-detail__f-first {
	width: 54.5%;
	max-width: 477px;
	height: 569px;
}

.container-update .prod-detail__slider {
	height: 100%;
}

.container-update .prod-detail__first {
	justify-content: start;
}

.container-update .prod-detail__f-second {
	width: 100%;
	padding: 30px 40px;
	margin-left: 30px;
	background-color: #fff;
}

.horizontal-menu__item.dropdown {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: clamp(0.938rem, 0.625rem + 0.42vw, 1.125rem) !important;
}

.horizontal-menu__item {
	font-size: clamp(0.938rem, 0.625rem + 0.42vw, 1.125rem) !important;
}

.horizontal-menu__item.dropdown .horizontal-menu__item_dropdown {
	width: 200px;
	position: absolute;
	transform: translateX(-50%) translateY(10px);
	left: 50%;
	opacity: 0;
	visibility: hidden;
	top: calc(90%);
	z-index: 2;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 20px 30px 0 rgba(52, 181, 178, 0.2);
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.horizontal-menu__item.dropdown > .horizontal-menu__link {
	position: relative;
	padding-right: 20px;
}

.horizontal-menu__item.dropdown > .horizontal-menu__link::after {
	content: '';
	position: absolute;
	right: 0;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
	background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" fill="none" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M8.125 1.75L5 4.875L1.875 1.75" stroke="%23303030" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	transition: all 0.3s;
}

.horizontal-menu__item .horizontal-menu__link {
	display: flex;
	align-items: center;
	gap: 5px;
	padding-bottom: 10.5px;
	padding-top: 10.5px;
}

/* * {
	outline: 1px solid;
} */

.horizontal-menu__item.dropdown .horizontal-menu__link:hover ~ .horizontal-menu__item_dropdown,
.horizontal-menu__item.dropdown .horizontal-menu__item_dropdown:hover {
	transform: translateX(-50%) translateY(0px);
	opacity: 1;
	visibility: visible;
}

.horizontal-menu__link:hover::after {
	transform: rotate(180deg);
	background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" fill="none" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M8.125 1.75L5 4.875L1.875 1.75" stroke="%2334B5B2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.horizontal-menu__item_dropdown .horizontal-menu__link {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	padding: 0;
}

.horizontal-menu__item_dropdown li:not(:last-child) a {
	padding-bottom: 10px;
}

.reviews_items__item-content--review {
	display: flex;
	flex-direction: column;
}

.reviews_items__item-content.hide-review.expanded .reviews_items__item-content--review_images {
	order: 1;
}

.prod-detail__characteristics-item-value {
	position: relative;
	/* display: flex; */
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.prod-detail__characteristics-item-value img {
	min-width: 16px;
	aspect-ratio: 1;
	margin-bottom: -3px;
}

.prod-detail__characteristics-item-value .tooltip {
	position: absolute;
	right: 0%;
	bottom: calc(100% + 5px);
	opacity: 0;
	transform: translateY(5px);
	visibility: hidden;
	background-color: #fff;
	z-index: 5;
	box-shadow: 0 0 15px 0 rgba(30, 154, 151, 0.2);
	padding: 15px;
	padding-top: 25px;
	transition: all 0.3s;
	font-size: 14px;
	line-height: 125%;
}

.prod-detail__characteristics-item-value .tooltip li:not(:last-child) {
	margin-bottom: 5px;
}

.prod-detail__characteristics-item-value .tooltip li {
	text-align: left;
}

@media (min-width: 767px) {
	.prod-detail__characteristics-item-value:hover .tooltip,
	.prod-detail__characteristics-item-value:focus .tooltip {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.tags__tag.reserved {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #fff;
	padding: 5px 15px;
	color: #303030;
}

.reviews_items__item--heading_city {
	font-size: 16px;
}

.menu_accordion__item {
	background-color: #333;
	color: #eee;
	cursor: pointer;
	padding: 1rem;
	width: 100%;
	border: 1px solid #222;
	text-align: left;
	outline: none;
	font-size: 1rem;
	transition: all 0.4s ease-out;
	box-shadow: 0px 0px 34px -8px rgba(0, 0, 0, 0.75);
	width: 20px;
}

.menu_accordion__content {
	padding: 0 1rem;
	background-color: #222;
	color: #aaa;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordion-content ul {
	list-style-type: circle;
	margin: 1rem 0;
	padding: 0.2rem;
}

.accordion-content ul li {
	padding: 0.2rem 0;
}

.text-flow_slider .swiper-slide img {
	aspect-ratio: 1/0.78;
	object-fit: cover;
}

.text-flow_slider {
	padding: 25px;
	margin: -25px;
}

.text-flow_slider .swiper__nav {
	display: flex;
	width: 100%;
	justify-content: space-between;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	bottom: unset;
	right: unset;
	height: unset;
}

@media (min-width: 1024px) {
	.tabs__content-wrapper,
	.prod-detail__second {
		margin-top: 20px;
	}
}

.prod-detail__second {
	margin-top: 20px;
}

@media (min-width: 1234px) {
	.prod-detail__slider-img {
		height: 100%;
		width: 100%;
	}
}

@media (max-width: 1233px) {
	.container-update .prod-detail__f-second {
		margin: 0 !important;
	}
	.container-update .prod-detail__f-first {
		width: 100%;
		max-width: unset;
		max-height: unset;
		height: auto;
	}
}

@media (max-width: 1400px) {
	/* .news__content .container-xs {
		max-width: 100%;
	} */
}

@media (max-width: 1235px) {
	.container-xs {
		max-width: 100%;
	}
}

@media (max-width: 991.98px) {
	.reviews_content .form-groups {
		flex-wrap: wrap;
	}
	.add_review__form .form-groups .form-group {
		width: auto !important;
		max-width: unset !important;
		flex: 1 48%;
	}
	.review_form__rating {
		gap: 20px;
	}
	.puppies-list {
		--elements: 3;
	}
}

@media (max-width: 767.98px) {
	.reviews_items {
		--elements: 1;
	}
	.pagination {
		margin-top: clamp(2.188rem, 0.693rem + 6.38vw, 3.75rem);
		margin-bottom: clamp(2.5rem, 0.706rem + 7.65vw, 4.375rem);
	}
	.accordion-header {
		font-size: clamp(0.938rem, 0.758rem + 0.77vw, 1.125rem);
	}
	.accordion-content .text-flow {
		padding: clamp(0.625rem, -0.571rem + 5.1vw, 1.875rem) clamp(1.25rem, 0.054rem + 5.1vw, 2.5rem);
	}
	.our_plans__container {
		padding: clamp(0.938rem, -0.258rem + 5.1vw, 2.188rem);
	}
	.our_plans__media--title {
		font-size: clamp(0.875rem, 0.277rem + 2.55vw, 1.5rem);
	}
	.puppies-list {
		--elements: 2;
	}
}

.text-flow ul:not(.examples) li,
.text-flow ol li {
	list-style: none;
}

@media (max-width: 575.98px) {
	.prod-detail__characteristics-item-value img {
		pointer-events: unset;
	}
	.tabs__link {
		font-size: 16px;
	}
	.reviews_items__item--heading {
		margin-bottom: 20px;
	}
	.reviews_items__item-content--title {
		margin-bottom: 0;
	}
	.reviews_items__item-content--readmore {
		font-size: 14px;
		margin-top: 10px;
	}
	.reviews_items__item-content--review_images {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.reviews_items__item-content--review_images {
		gap: 10px;
	}
	.review_form {
		text-align: center;
	}
	.reviews_content .form-groups {
		margin-top: 30px;
	}
	.review_form__title {
		margin-bottom: 10px;
	}
	.add_review__form-btns {
		flex-direction: column;
	}
	.add_review__form-btns .btn {
		width: 100%;
		justify-content: center;
	}
	.reviews_items__item {
		padding: 20px;
	}
	.reviews_items__item-content {
		font-size: clamp(0.875rem, 0.642rem + 1vw, 1rem);
	}
	.inner-page__introtext {
		margin-bottom: 30px;
	}
	.pagination__list li a {
		width: clamp(3.125rem, 1.959rem + 4.98vw, 3.75rem);
		height: clamp(3.125rem, 1.959rem + 4.98vw, 3.75rem);
	}
	.inner-page__first {
		margin-bottom: 30px;
	}
	.news_items__item,
	.articles_items__item {
		flex-direction: column;
		max-height: unset;
	}
	.news_items__item--text .item_content,
	.articles_items__item--text .item_content {
		font-size: clamp(0.875rem, 0.642rem + 1vw, 1rem);
	}
	.news_items__item--media,
	.articles_items__item--media {
		width: 100%;
	}
	.news_items__item--text,
	.articles_items__item--text {
		width: 100%;
		padding: 20px;
	}
	.news_items__item:not(:last-child),
	.articles_items__item:not(:last-child) {
		margin-bottom: 20px;
	}
	.news_items__item--text .item_heading,
	.articles_items__item--text .item_heading {
		margin-bottom: clamp(0.938rem, 0.354rem + 2.49vw, 1.25rem);
	}
	.our_plans__media--title {
		margin-top: 7.5px;
		margin-bottom: 12px;
	}
	.our_plans__icon {
		bottom: 15px;
		width: 15px;
		height: 15px;
	}
	.our_plans__container {
		margin: 0 -16px;
	}
	.our_plans__media_item img {
		aspect-ratio: 16/11.5;
	}
	.our_plans__connection .btns {
		flex-wrap: wrap;
	}
	.our_plans__confirmation .accent,
	.our_plans__confirmation .link {
		font-size: clamp(0.875rem, 0.642rem + 1vw, 1rem);
	}
	.our_plans__items_item:not(:last-child) {
		margin-bottom: 20px;
	}
	.puppies-list {
		--elements: 1;
	}
	.prod-detail__characteristics-item-value {
		position: static;
	}
	.prod-detail__characteristics-item-value .tooltip {
		position: fixed;
		top: 50%;
		left: 50%;
		bottom: unset;
		right: unset;
		transform: translate(-50%, -50%) !important;
		opacity: 0;
		transform: translateY(5px);
		visibility: hidden;
		background-color: #fff;
		z-index: 11;
		padding: 15px;
		transition: all 0.3s;
		font-size: 14px;
		line-height: 125%;
		width: 90%;
		padding-top: 30px;
		border: none;
	}
	.prod-detail__characteristics-item-value .tooltip .tooltip_content {
		/* position: relative; */
	}
	.prod-detail__characteristics-item-value .tooltip .tooltip_content .toopltip_close {
		display: block !important;
	}
	.prod-detail__characteristics-item-value .tooltip.active {
		opacity: 1;
		visibility: visible;
	}
}

.prod-detail__characteristics-item-value .tooltip .tooltip_content .toopltip_close {
	position: absolute;
	right: 15px;
	top: 15px;
	display: none;
	margin: 0;
}

.prod-detail__characteristics-item-value .tooltip .tooltip_content .toopltip_close svg {
	width: 15px;
	height: 15px;
}

.prod-detail__characteristics-item-value .tooltip .tooltip_content .toopltip_close svg path {
	stroke: #a6a6a6;
}

span.overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(52, 181, 179, 0.3);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

span.overlay.active {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 420.98px) {
	.review_form__rating {
		width: 100%;
		gap: 10px;
	}
	.review_form__rating label {
		width: auto;
		flex: 1;
	}
	.our_plans__table .table .item li {
		font-size: 12px;
	}
}

@media (min-width: 1024px) {
	.tags {
		padding: 5px;
	}
	.tags__tag {
		padding: 5px 10px;
		font-size: 12px;
	}
}

/* * {
	outline: 1px solid;
} */

.horizontal-menu__item_dropdown .horizontal-menu__link {
	font-size: 16px;
}

.inner-page__second .tabs .filters {
	top: -50px;
}

/* табы "Щенки" */
.filters {
	display: flex;
	justify-content: end;
	padding: 20px 0;
	margin-top: -65px;
}

@media (max-width: 768px) {
	.filters {
		display: flex;
		justify-content: start;
		padding: 20px 0;
		margin-top: -20px;
	}
}

.inner-page__second .tabs__links {
	display: none;
}

.text-flow ul:not(.examples) li::before {
	top: 13px !important;
}

.page-footer .horizontal-menu {
	gap: 20px !important;
}

.horizontal-menu__item .horizontal-menu__link {
	padding: 0;
}

.page-footer .horizontal-menu__item.active .horizontal-menu__link {
	color: #fff !important;
	font-weight: 700;
}

@media (min-width: 1704px) {
	.horizontal-menu {
		gap: 0 50px;
	}
}

@media (min-width: 1234px) {
	.horizontal-menu {
		gap: 0 25px;
	}
}

@media (min-width: 1234px) {
	.page-header__inner .logo {
		margin-right: 30px;
	}
}

@media (min-width: 1600px) {
	.page-header__inner .logo {
		margin-right: 50px;
	}
	.horizontal-menu__item {
		font-size: 16px;
	}
}

.page-footer .horizontal-menu {
	gap: 35px !important;
}

.hidden-menu--center .hidden-menu__first .dropdown__trigger {
	display: none;
}

.hidden-menu--center .hidden-menu__first .burger {
	position: absolute;
	right: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.hidden-menu__second .horizontal-menu__item {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-direction: column;
}

.hidden-menu__inner {
	padding: 35px 35px 18px;
}
.hidden-menu {
	width: 275px;
}
.hidden-menu__second .horizontal-menu__item .horizontal-menu__link {
	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
}
.hidden-menu__second .horizontal-menu__item:not(:last-child) {
	margin-bottom: 15px;
}

.hidden-menu__second .horizontal-menu__item .accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.hidden-menu__second .horizontal-menu__item .accordion-header .arrow-right {
	position: relative;
}

.hidden-menu__second .horizontal-menu__item .accordion-header .arrow-right::before {
	content: '';
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.125 3.75L5 6.875L1.875 3.75' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 10px;
	height: 10px;
	transition: all 0.3s ease-in-out;
}

.hidden-menu__second .horizontal-menu__item .accordion-header.active .arrow-right::before {
	rotate: 180deg;
}

.hidden-menu__second .horizontal-menu__item .accordion-header.active .horizontal-menu__link {
	color: #34b5b2;
}

.hidden-menu__second .horizontal-menu__item .accordion-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	padding-left: 15px;
}

.hidden-menu__second .horizontal-menu__item .accordion-content li:first-child {
	padding-top: 10px;
}

.hidden-menu__second .horizontal-menu__item .accordion-content li:not(:last-child) {
	margin-bottom: 10px;
}

.hidden-menu__second .horizontal-menu__item .accordion-content a {
	display: block;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
}

.black-bg {
	z-index: 3;
}

.hidden-menu__third .btn {
	width: 100%;
}

.horizontal-menu__item.dropdown .horizontal-menu__link {
}

.prod-detail__f-first .prod-detail__slider .prod-detail__slider-img {
	aspect-ratio: unset;
}

@media (max-width: 1023px) {
	.page-footer__second-inner .social {
		margin: 0;
	}
	.page-footer__second-inner {
		gap: 15px;
	}
	.footer_links {
		justify-content: center;
	}
}

.footer_links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 50px;
}

.footer_links .footer_link {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
}

.footer_links .footer_link:hover {
	text-decoration: underline;
}

.swiper-height {
	height: 100%;
}

.breadcrumbs {
	margin-bottom: 5px;
}

.prod-detail__characteristics {
	margin-top: 30px;
}

.prod-detail__txt {
	align-items: start;
	padding: 20px 30px;
	margin-top: 10px;
	margin-bottom: 30px;
	background-color: #fff;

	display: flex;
	gap: 30px clamp(2.813rem, -2.902rem + 8.93vw, 7.813rem);

	/* display: none; */
}

.prod-detail__txt-descr {
	max-width: 58%;
}

@media (min-width: 1704px) {
	.prod-detail__txt {
		padding-right: 72px;
	}
}

@media (max-width: 1704px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 1024px) {
	.prod-detail__txt {
		flex-wrap: wrap;
	}
	.prod-detail__txt-descr {
		max-width: 100%;
	}
}

.prod-detail__txt-links {
	
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

@media (min-width: 767px) {
	.prod-detail__txt-links {
		position: sticky;
		top: 100px;
	}
}

.prod-detail__txt-links > .prod-detail__link {
	position: relative;
	padding: 10px 20px;
	background: rgba(52, 181, 178, 0.1);
	border-radius: 100px;
	display: flex;
	align-items: center;
	gap: 5px;

	transition: all 0.3s;
}

.prod-detail__txt-links > .prod-detail__link > span {
	font-weight: 700;
	font-size: 14px;
	line-height: 18.2px;
	max-width: 450px;
}

.prod-detail__txt-links > .prod-detail__link:hover {
	background: rgba(52, 181, 178, 0.2);
}

.prod-detail__txt-links > .prod-detail__link img {
	min-width: 24px;
	margin-right: 5px;
}

.prod-detail__txt-descr {
	font-size: 16px;
	line-height: 160%;
}

.prod-detail__txt-descr > a {
	color: #34b5b2;
}

.tab_item__video ~ .gallery.gallery--masonry {
	margin-top: clamp(1.875rem, 0.804rem + 2.98vw, 4.375rem);
}

.prod-detail__slider-img {
	height: 100%;
}

.gallery.gallery--video.swiper-wrapper {
	flex-wrap: nowrap;
	gap: 0 !important;
}

.tab_item__video {
	position: relative;
}

.tab_item__video .gallery__item {
	overflow-x: hidden;
}

.tab_item__video .swiper-button {
	position: absolute;
	z-index: 15;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	cursor: pointer;
	background-color: #fff;

	display: none;
}

.tab_item__video .swiper-button-disabled {
	display: none;
}

.tab_item__video .swiper-button.swiper-button-prev {
	left: -35px;
}

.tab_item__video .swiper-button.swiper-button-next {
	right: -35px;
}

.swiper.def-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-transition: background-color 0.5s, width 0.5s;
	transition: background-color 0.5s, width 0.5s;
}

.swiper.def-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
	background-color: #fff;
}

.swiper.def-pagination .swiper-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.prod-detail__desc {
	display: none;
}

/* .gallery.column-gallery {
	position: relative;
	display: inherit;
	column-count: 4;
	column-gap: 5px;
}

.gallery.column-gallery .gallery__item {
	width: 100% !important;
	break-inside: avoid;
	margin-bottom: 5px;
	aspect-ratio: unset;
} */

@media (max-width: 991px) {
	.gallery.column-gallery {
		column-count: 3;
	}
}

@media (max-width: 576px) {
	.gallery.column-gallery {
		column-count: 2;
		column-gap: 3px;
	}
	.gallery.column-gallery .gallery__item {
		margin-bottom: 3px;
	}
}

.pageup {
	position: fixed;
	bottom: 75px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #34b5b2;
	color: #fff;
	padding: 10px;
	border-radius: 50%;
	cursor: pointer;

	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);

	transition: all 0.5s;
	z-index: 20;
}

.pageup.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.pageup .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	rotate: 90deg;
}

.pageup .icon > svg {
	width: 20px;
	height: 20px;
}

.footer_links ~ .social {
	display: none;
}

@media (max-width: 991px) {
}

@media (max-width: 576px) {
	.swiper.def-pagination .swiper-pagination-bullet {
		width: 5px;
		height: 5px;
	}
	.swiper.def-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		width: 15px;
	}
	.swiper.def-pagination .swiper-pagination {
		gap: 5px;
		bottom:15px;
	}
	.swiper.def-arrows .swiper-button-prev svg,
	.swiper.def-arrows .swiper-button-next svg {
		width: 10px;
		height: 10px;
	}
	.prod-detail__txt-links > a {
		width: 100%;
		justify-content: center;
		font-size: 10px;
		padding: 10px;
	}
	.prod-detail__txt,
	.prod-detail__first {
		padding: 30px 10px;
	}
	.prod-detail__first {
		padding-top: 0;
	}
	.prod-detail__first {
		margin: 0 -26px;
	}
	.container-update .prod-detail__first {
		margin: 0 -15px;
	}
	.prod-detail__buttons {
		gap: 3px;
	}
	.prod-detail__buttons a:first-child {
		width: 100%;
		font-size: 12px;
	}
	.prod-detail__buttons > *:not(:first-child) {
		flex: 1 150px;
		font-size: 12px;
	}
	.prod-detail__characteristics {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}
	.h576 {
		display: none;
	}
	.prod-detail__characteristics-item {
		padding: 5px 10px;
		background: #f4f6f6;
		border: none;
		justify-content: space-between;
		border-radius: 8px;
		color: inherit;
	}
	.prod-detail__characteristics-item-value {
		width: auto;
		font-weight: 500;
		font-size: 14px;
		text-align: right;
	}
	.prod-detail__characteristics-item-name {
		color: #707070;
		font-size: 11px;
		width: auto;
	}
	.prod-detail__characteristics {
		margin-top: 20px;
	}
	.prod-detail__f-second {
		display: flex;
		flex-direction: column;
		padding: 15px 10px;
		margin: 0;
		border-radius: 10px 10px 0 0;
		background-color: #fff;
		margin-top: -65px;
		z-index: 2;
	}
	.prod-detail__title {
		order: -1;
		margin-bottom: 5px;
	}
	.breadcrumbs {
		font-size: 10px;
	}
	.breadcrumbs__item {
		display: inline-flex;
		align-items: center;
	}

	.prod-detail__slider:not(.container-update .prod-detail__slider) {
		margin: 0 -10px;
		height: 335px;
	}
	.container-update .prod-detail__f-second {
		padding: 15px;
	}
	.prod-detail__slider .swiper__nav {
		right: 20px;
		bottom: 30px;
	}
	.page__inner:has(.prod-detail__first) {
		overflow-x: hidden;
	}
	.swiper.def-arrows .swiper-button-prev,
	.swiper.def-arrows .swiper-button-next {
		width: 40px;
		height: 40px;
		border-radius: 8px;
		overflow: hidden;
	}
	.breadcrumbs__item:not(:last-child):after {
		margin-left: 5px;
		margin-top: 2px;
		border-top: 3px solid transparent;
		border-left: 5px solid #34b5b2;
		border-bottom: 3px solid transparent;
	}
	.breadcrumbs__item {
		margin-right: 5px;
	}
	.prod-detail__txt {
		gap: 15px;
		margin: 10px -15px 30px -15px;
	}
	.prod-detail__txt-descr {
		font-size: 14px;
	}
	.container-update .prod-detail__f-second {
		margin-top: -75px !important;
		margin-left: 0 !important;
	}
	.container-update .prod-detail__buttons > * {
		flex: 1 150px;
		font-size: 12px;
	}
	.prod-detail__buttons > * {
		height: 45px;
	}
	.prod-detail__txt-links > .prod-detail__link.prod-detail__link--payment {
		display: none;
	}
	.tabs__content-wrapper {
		margin: 20px -15px;
	}
	.tab_item__video ~ .gallery.gallery--masonry {
		margin-top: 15px;
	}
	.prod-detail__txt-links > .prod-detail__link > span {
		font-size: 12px;
		line-height: 15px;
	}
	.inner-page:has(.prod-detail) {
		padding-top: 0;
	}
	.container {
		padding: 0 15px;
	}
	.page-header {
		z-index: 10;
	}
	.pageup {
		width: 35px;
		height: 35px;
	}
	.pageup .icon > svg {
		width: 15px;
		height: 15px;
	}
}

@media (max-width: 375px) {
	.prod-detail__characteristics-item-name {
		white-space: nowrap;
	}
}

#iframe_video {
	align-items: center;
	justify-content: center;
	background-color: #000000d1;
}

#iframe_video .modal-content {
	background-color: black;
	padding: 0 13%;
	height: 85%;
	width: 100%;
	max-width: 50%;
}

@media (max-width: 1366px) {
	#iframe_video .modal-content {
		max-width: 80%;
	}
}

@media (max-width: 576px) {
	#iframe_video .modal-content {
		max-width: 90%;
		height: 50%;
		padding: 0;
	}
}

#iframe_video .modal-content iframe {
	width: 100%;
	height: 100%;
}

.masonry-layout {
	position: relative;
	grid-template-columns: repeat(4, 1fr);
	display: grid;
	gap: 5px;
	margin-top: 10px;
}

.masonry-layout.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.masonry-layout.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.masonry-layout.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.masonry-layout.columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.masonry-layout > div {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.masonry-gallery__item {
	cursor: pointer;
	position: relative;
	flex: 1;
	opacity: 0;
	transform: scale(0.85);
	transition: all 0.5s;
}

@media (max-width: 576px) {
	.masonry-gallery__item {
		opacity: 1;
		transform: none;
	}
}
 
.masonry-gallery__item:hover .gallery__item-info {
	opacity: 1;
	visibility: visible;
}

.masonry-gallery__item.visible {
	opacity: 1;
	transform: scale(1);
}


.masonry-layout > div > img,
.masonry-layout > div > div {
	margin-bottom: 0;
}

.horizontal-menu__item.dropdown .horizontal-menu__link.active {
	color: #34b5b2;
}

.horizontal-menu__item.dropdown > .horizontal-menu__link.active::after {
	background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" fill="none" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M8.125 1.75L5 4.875L1.875 1.75" stroke="%2334b5b2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

span.horizontal-menu__link,
span.horizontal-menu__link:hover {
	cursor: default;
}
/* .masonry-layout .gallery__item {
	opacity: 0;
	transform: scale(0.85);
	transition: all 0.5s ease-out;
  }
  
  .masonry-layout .gallery__item.visible {
	opacity: 1;
	transform: scale(1);
  }
   */

@media (max-width: 576px) {
	.masonry-layout {
		gap: 2px;
	}
	.masonry-layout > div {
		gap: 2px;
	}
}

.prod-detail__slider-img img {
	max-height: 550px;
}

.news_items__item--text .item_content h4 {
	margin: 0;
}

.news_items__item--text .item_content .examples {
	display: none;
}

.prod-detail__characteristics-item-value .link {
	white-space: nowrap;
}

@media (min-width: 1024px) {
    .prod-detail__characteristics {
        max-width: 750px;
    }
}


@media (max-width: 576px) {
	.masonry-init {
		display: flex;
		flex-wrap: wrap;
		gap: 3px;

		margin-top: 30px;
	}
	
	.masonry-init .masonry-gallery__item {
		flex: calc(50% - 3px);
	}
}

@media (max-width: 350px) {
	.prod-detail__characteristics-item {
		flex-direction: column;
		align-items: start;
	}
	.prod-detail__characteristics-item-value {
		text-align: left;
	}
}

.prod-detail__txt:has(.txt-descr-button) {
	padding-bottom: 50px;
}

.prod-detail__txt {
	position: relative;
}

  
.prod-detail__txt-descr.collapsed {
	overflow: hidden;
}
  
.prod-detail__txt-descr:not(.collapsed) ~ .txt-descr-button svg {
	transform: rotate(180deg);
}

.txt-descr-button {
	font-family: "Manrope",-apple-system,BlinkMacSystemFont,"Roboto","Ubuntu","Droid Sans","Helvetica Neue","Arial",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	position: absolute;
	left: 30px;
	bottom: 20px;
	cursor: pointer;
	color: #303030;

	display: flex;
	align-items: center;
	gap: 5px;
	background-color: transparent;
	border: none;
	outline: none;

	font-weight: 700;
	font-size: 14px;
	line-height: 160%;
}

.txt-descr-button svg  {
	transition: transform .3s;
}

@media (max-width: 576px) {
	.txt-descr-button {
		position: static;
	}
	.prod-detail__txt-descr.collapsed {
		position: relative;
	}
	.prod-detail__txt-descr.collapsed::before {
		content: "";
        position: absolute;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
        height: 25px;
        width: 100%;
	}
	.prod-detail__characteristics-item-name {
		white-space: nowrap;
	}

}

.text-flow .light_bg {
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
}

.text-flow:has(.light_bg) *:first-child {
	margin-top: 0;
}

.text-flow .light_bg .text-flow_slider {
	padding-bottom: 0;
}

/* .text-flow .light_bg */