@charset "UTF-8";

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

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

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Inter", sans-serif;
  --functional-black-txt-80: #33355c;
  --primary-black: #000233;
  --primary-white: #fff;
  --functional-black-txt-60: #666785;
  --functional-black-surface-40: #999aad;
  --primary-blue: #2e3092;
  --primary-pink: #ec028c;
  --functional-black-surface-20: #ccccd6;
  --functional-black-surface-10: #e6e6eb;
  --functional-blue-txt-80: #6466aa;
  --functional-blue-txt-60: #8b8cbf;
  --functional-blue-surface-40: #b1b3d5;
  --functional-blue-surface-20: #d8d9ea;
  --functional-blue-surface-10: #ececf5;
  --functional-pink-txt-80: #f13397;
  --functional-pink-txt-60: #f466b1;
  --functional-pink-surface-40: #f899cb;
  --functional-pink-surface-20: #fbcce5;
  --functional-pink-surface-10: #fee6f2;
  --functional-red-txt-80: #f13336;
  --functional-red-txt-60: #f46668;
  --functional-red-surface-40: #f8999b;
  --functional-red-surface-20: #fbcccd;
  --functional-red-surface-10: #fee6e6;
  --functional-orange-surface-40: #fdd5b8;
  --functional-orange-surface-20: #feeadc;
  --functional-orange-surface-10: #fff5ee;
  --functional-black-txt-100: #000233;
  --functional-blue-txt-100: #3d4095;
  --functional-pink-txt-100: #ed007d;
  --functional-red-txt-100: #d70b0f;
  --functional-orange-txt-100: #fb964e;
  --functional-orange-txt-80: #fcab71;
  --functional-orange-txt-60: #fdc095;
  --functional-yellow-txt-100: #fbd34e;
  --functional-yellow-txt-80: #fcdc71;
  --functional-yellow-txt-60: #fde595;
  --functional-yellow-surface-40: #fdedb8;
  --functional-yellow-surface-20: #fef6dc;
  --functional-yellow-surface-10: #fffbee;
  --functional-turquoise-txt-100: #40e0d0;
  --functional-turquoise-txt-80: #66e6d9;
  --functional-turquoise-txt-60: #8cece3;
  --functional-turquoise-surface-40: #b3f3ec;
  --functional-turquoise-surface-20: #d9f9f6;
  --functional-turquoise-surface-10: #ecfcfb;
  --functional-green-txt-100: #00c553;
  --functional-green-txt-80: #09d074;
  --functional-green-txt-60: #5fdc96;
  --functional-green-surface-40: #97e7b7;
  --functional-green-surface-20: #ccf3dc;
  --functional-green-surface-10: #e5f9ed;
  --functional-purple-txt-100: #6e4c9f;
  --functional-purple-txt-80: #8964aa;
  --functional-purple-txt-60: #a78bbf;
  --functional-purple-surface-40: #c4b1d5;
  --functional-purple-surface-20: #e2d8ea;
  --functional-purple-surface-10: #f1ecf5;
  --functional-blue-surface-2: #fbfbfd;
  --functional-blue-surface-5: #f4f4f9;
}

.product-info__btn,
.header__download-button,
.catalog__download-button,
.basket-list__button,
.basket-stub__download-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 6px;
  padding: 0.65rem 1.3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-blue-surface-10);
  font-weight: 700;
  color: var(--primary-blue);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-info__btn:hover,
.header__download-button:hover,
.catalog__download-button:hover,
.basket-list__button:hover,
.basket-stub__download-button:hover {
  background: var(--functional-blue-surface-20);
}

@-webkit-keyframes loader {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes loader {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 1.85rem 3.2rem;
  background: var(--primary-blue);
  font-weight: 700;
  color: var(--primary-white);
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid transparent;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn:hover {
  background: var(--functional-blue-txt-80);
}

.btn_tr-blue {
  border-color: var(--primary-blue);
  background: none;
  color: var(--primary-blue);
}

.btn_tr-blue:hover {
  background: var(--functional-blue-surface-10);
}

.btn_blue {
  background: var(--functional-blue-surface-10);
  color: var(--primary-blue);
}

.btn_blue:hover {
  color: var(--primary-white);
}

.btn:disabled {
  background: var(--functional-black-surface-10);
  color: var(--functional-black-surface-40);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.2);
  box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.2);
  border-radius: 100%;
}

.slick-arrow.slick-prev {
  left: -20px;
}

.slick-arrow.slick-next {
  right: -20px;
}

.slick-arrow.slick-disabled {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.slick-arrow.slick-disabled rect {
  fill: var(--functional-blue-surface-5);
}

.slick-arrow.slick-disabled path {
  fill: var(--functional-blue-surface-40);
}

.slick-dots {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
}

.slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--functional-blue-surface-20);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.slick-dots .slick-active button {
  background: var(--functional-black-txt-100);
}

.favorite {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  color: var(--functional-blue-txt-60);
  line-height: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.favorite:hover {
  color: var(--functional-blue-surface-40);
}

.favorite:has(.favorite__hidden:checked) {
  color: var(--primary-pink);
}

.favorite__icon {
  display: block;
}

.favorite__icon path {
  fill: none;
  stroke: currentColor;
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.favorite__hidden {
  display: none;
}

.favorite__hidden:checked + .favorite__icon path {
  fill: currentColor;
  stroke: currentColor;
}

.checkbox {
  display: block;
}

.checkbox__hidden {
  display: none;
}

.checkbox__hidden:checked + .checkbox__txt:after {
  opacity: 1;
}

.checkbox__hidden:checked + .checkbox__txt:before {
  border-color: var(--primary-blue);
}

.checkbox__txt {
  padding-left: 26px;
  position: relative;
  display: block;
  font-size: 0.875em;
  cursor: pointer;
}

.checkbox__txt:before {
  content: "";
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.checkbox__txt:after {
  content: "";
  border-radius: 2px;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  position: absolute;
  top: 2px;
  left: 3px;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.checkbox a {
  font-weight: 500;
  color: var(--primary-blue);
}

.radio__hidden {
  display: none;
}

.radio__hidden:checked + .radio__txt:after {
  opacity: 1;
}

.radio__hidden:checked + .radio__txt:before {
  border-color: var(--primary-blue);
}

.radio__txt {
  padding-left: 26px;
  position: relative;
  display: block;
  font-size: 0.875em;
  cursor: pointer;
}

.radio__txt:before {
  content: "";
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 100px;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.radio__txt:after {
  content: "";
  border-radius: 100px;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  position: absolute;
  top: 2px;
  left: 3px;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

html {
  font-size: 10px;
}

body.is-mobile-menu-open,
body.is-mobile-search-open {
  overflow: hidden;
}

body {
  font: 400 16px var(--font-family);
  color: var(--primary-black);
}

.inner {
  max-width: 1496px;
  width: 100%;
  padding-inline: 4rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-slide {
  height: auto;
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.social-block__link svg,
.social-block__link img {
  vertical-align: middle;
}

.breadcrumb {
  margin: 2rem 0 1rem;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}

.breadcrumb__item {
  margin-bottom: 0;
}

.breadcrumb__item:last-of-type,
.breadcrumb__item:nth-of-type(2) {
  display: block;
}

.breadcrumb__link {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 6px;
  padding: 0.6rem 2.4rem 0.6rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--functional-black-txt-60);
  font-size: 0.875em;
  display: block;
  position: relative;
}

.breadcrumb__link:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill='%23666785' d='M.247.246a.833.833 0 0 1 1.184 0l4.166 4.167a.833.833 0 0 1 0 1.183L1.431 9.764a.833.833 0 0 1-1.184 0 .833.833 0 0 1 0-1.183l3.584-3.575L.247 1.43a.833.833 0 0 1 0-1.184'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 6px;
  height: 10px;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumb__active {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--functional-black-txt-60);
  font-size: 0.875em;
  display: block;
  position: relative;
}

.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;
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 10px;
  padding-inline: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pagination__item {
  width: 46px;
  height: 46px;
  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-bottom: 3px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pagination__item.is-active {
  border-bottom-color: var(--functional-black-txt-100);
}

.shared-open {
  position: relative;
}

.shared-popup {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.shared-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}

.shared-popup__close rect,
.shared-popup__close path {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.shared-popup__close:hover rect {
  fill: var(--functional-blue-surface-20);
}

.shared-popup__close:hover rect path {
  fill: var(--primary-blue);
}

.shared-popup__list {
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  background: var(--functional-blue-surface-5);
  border-radius: 20px;
  padding: 2.4rem;
  width: 240px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 12;
}

.shared-popup__list:before {
  color: var(--functional-black-txt-100);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}

.shared-popup__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.8rem;
  font-weight: 400;
}

.shared-popup__link:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.shared-popup__link:hover {
  color: var(--primary-blue);
}

.select-time {
  position: relative;
  cursor: pointer;
}

.select-time[open] .select-time__val::after {
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.select-time__val {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 12px;
  padding: 1rem 3rem 1rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.select-time__val:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%23000233' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E") no-repeat 0 0/contain;
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 10px;
  height: 6px;
}

.select-time__list {
  padding-block: 0.4rem;
  border-radius: 10px;
  background: var(--primary-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 100px;
  overflow: auto;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  z-index: 2;
  width: 100%;
}

.select-time__item {
  padding: 0.4rem 0.8rem;
  display: block;
}

.select-time__hidden {
  display: none;
}

.select-time__hidden:checked + .select-time__txt:after {
  opacity: 1;
}

.select-time__hidden:checked + .select-time__txt:before {
  border-color: var(--primary-blue);
}

.select-time__txt {
  padding-left: 20px;
  position: relative;
  display: block;
  font-size: 0.875em;
  cursor: pointer;
}

.select-time__txt:before {
  content: "";
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.select-time__txt:after {
  content: "";
  border-radius: 2px;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  position: absolute;
  top: 2px;
  left: 3px;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 17px);
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  background: var(--functional-blue-surface-5);
  border-radius: 20px;
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9;
  width: 300px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.tooltip:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='32' fill='none' viewBox='0 0 17 32'%3E%3Cpath fill='%23f4f4f9' d='M0 16 17 0v32z'/%3E%3C/svg%3E");
  content: "";
  width: 17px;
  height: 32px;
  left: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.tooltip__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.tooltip__title {
  font-weight: 700;
  margin-bottom: 2rem;
}

.tooltip__txt {
  font-size: 0.875em;
}

.tooltip__txt p {
  margin-bottom: 2rem;
}

.tooltip__txt p:last-of-type {
  margin-bottom: 0;
}

.loader {
  --block-size: 400px;
  --loader-size: calc(var(--block-size) / 3);
  --light-color: rgba(255, 255, 255, 0.3);
  --dot-size: 16px;
  --dot-size-half: calc(var(--dot-size) / 2);
  --dot-size-half-neg: calc(var(--dot-size-half) * -1);
  --loader-size: calc(var(--block-size) / 3);
  --loader-size-half: calc(var(--loader-size) / 2);
  --anim-duration: 1.2s;
  --anim-duration-fast: calc(var(--anim-duration) * 0.6);
  aspect-ratio: 1/1;
  border: 2px solid var(--light-color);
  border-radius: 50%;
  -webkit-animation: loader calc(var(--anim-duration) * 3) linear infinite;
  animation: loader calc(var(--anim-duration) * 3) linear infinite;
  position: relative;
  display: grid;
  place-items: center;
  color: white;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  width: var(--dot-size);
  aspect-ratio: 1/1;
  background: currentColor;
  border-radius: 50%;
  top: var(--dot-size-half-neg);
  left: calc(50% - var(--dot-size-half));
  -webkit-animation: loader var(--anim-duration) cubic-bezier(0.27, 0.08, 0.26, 0.7) infinite;
  animation: loader var(--anim-duration) cubic-bezier(0.27, 0.08, 0.26, 0.7) infinite;
  -webkit-transform-origin: center calc(var(--loader-size-half) + var(--dot-size-half) - 1px);
  -ms-transform-origin: center calc(var(--loader-size-half) + var(--dot-size-half) - 1px);
  transform-origin: center calc(var(--loader-size-half) + var(--dot-size-half) - 1px);
}

.loader::after {
  -webkit-animation-delay: calc(var(--anim-duration-fast) / -4);
  animation-delay: calc(var(--anim-duration-fast) / -4);
}

.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99999;
  background: linear-gradient(122.18deg, #59419a 2.82%, #734fa0 127.46%);
  display: none;
}

.loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 222px;
  height: 222px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  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;
}

.loader {
  width: 137px;
  height: 137px;
}

.field {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1em;
  padding: 2rem 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 1.8rem;
}

.field::-webkit-input-placeholder {
  color: var(--functional-black-surface-40);
}

.field::-moz-placeholder {
  color: var(--functional-black-surface-40);
}

.field:-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.field::-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.field::placeholder {
  color: var(--functional-black-surface-40);
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-ExtraBold.woff2") format("woff2"), url("../font/inter/Inter-ExtraBold.woff") format("woff"), url("../font/inter/Inter-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-MediumItalic.woff2") format("woff2"), url("../font/inter/Inter-MediumItalic.woff") format("woff"), url("../font/inter/Inter-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Regular.woff2") format("woff2"), url("../font/inter/Inter-Regular.woff") format("woff"), url("../font/inter/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-ExtraLightItalic.woff2") format("woff2"), url("../font/inter/Inter-ExtraLightItalic.woff") format("woff"), url("../font/inter/Inter-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-LightItalic.woff2") format("woff2"), url("../font/inter/Inter-LightItalic.woff") format("woff"), url("../font/inter/Inter-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Light.woff2") format("woff2"), url("../font/inter/Inter-Light.woff") format("woff"), url("../font/inter/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Medium.woff2") format("woff2"), url("../font/inter/Inter-Medium.woff") format("woff"), url("../font/inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Italic.woff2") format("woff2"), url("../font/inter/Inter-Italic.woff") format("woff"), url("../font/inter/Inter-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Bold.woff2") format("woff2"), url("../font/inter/Inter-Bold.woff") format("woff"), url("../font/inter/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-BlackItalic.woff2") format("woff2"), url("../font/inter/Inter-BlackItalic.woff") format("woff"), url("../font/inter/Inter-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Thin.woff2") format("woff2"), url("../font/inter/Inter-Thin.woff") format("woff"), url("../font/inter/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-ExtraBoldItalic.woff2") format("woff2"), url("../font/inter/Inter-ExtraBoldItalic.woff") format("woff"), url("../font/inter/Inter-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-SemiBoldItalic.woff2") format("woff2"), url("../font/inter/Inter-SemiBoldItalic.woff") format("woff"), url("../font/inter/Inter-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-BoldItalic.woff2") format("woff2"), url("../font/inter/Inter-BoldItalic.woff") format("woff"), url("../font/inter/Inter-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-ExtraLight.woff2") format("woff2"), url("../font/inter/Inter-ExtraLight.woff") format("woff"), url("../font/inter/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-SemiBold.woff2") format("woff2"), url("../font/inter/Inter-SemiBold.woff") format("woff"), url("../font/inter/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-ThinItalic.woff2") format("woff2"), url("../font/inter/Inter-ThinItalic.woff") format("woff"), url("../font/inter/Inter-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../font/inter/Inter-Black.woff2") format("woff2"), url("../font/inter/Inter-Black.woff") format("woff"), url("../font/inter/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../font/roboto/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Thin.woff2") format("woff2"), url("../font/roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Black.woff2") format("woff2"), url("../font/roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../font/roboto/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Italic.woff2") format("woff2"), url("../font/roboto/Roboto-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../font/roboto/Roboto-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Regular.woff2") format("woff2"), url("../font/roboto/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Bold.woff2") format("woff2"), url("../font/roboto/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../font/roboto/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Light.woff2") format("woff2"), url("../font/roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../font/roboto/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/roboto/Roboto-Medium.woff2") format("woff2"), url("../font/roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  height: 100%;
}

img,
fieldset,
a img {
  border: none;
}

input[type=submit],
button {
  font: 1em var(--font-family);
  cursor: pointer;
  background: none;
  border: 0;
}

input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  font-family: var(--font-family);
  resize: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-family);
}

input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
a:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

li {
  margin-bottom: 10px;
}

summary::marker {
  content: none;
}

summary::-webkit-details-marker {
  display: none;
}

.clearfix::before {
  content: " ";
  display: table;
}

.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

h1,
.display-1 {
  color: inherit;
  font-size: 2em;
  font-weight: 700;
}

h2,
.display-2 {
  color: inherit;
  font-size: 1.5em;
  font-weight: 700;
}

h3,
.display-3 {
  color: inherit;
  font-size: 1.25em;
  font-weight: 700;
}

h4,
.display-4 {
  color: inherit;
  font-size: 1.125em;
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.banner-catalog-nav {
  margin: 2.2rem 0 4rem;
  position: relative;
}

.banner-catalog-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
  background: var(--functional-blue-surface-40);
  border-radius: 10px;
  padding: 0.2rem 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.8rem;
}

.banner-catalog-nav__item {
  margin-bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.banner-catalog-nav__link {
  font-size: 18px;
  color: var(--primary-blue);
  padding: 1.1rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: inline-block;
}

.banner-catalog-nav__link.active {
  color: var(--primary-white);
  font-weight: 700;
  background: var(--functional-blue-txt-100);
}

.banner-catalog-nav__link:hover {
  color: var(--primary-white);
}

.banner-catalog-nav__slider {
  overflow: visible;
}

.banner-catalog-nav__slider .slick-list {
  overflow: hidden;
}

.banner-catalog-nav__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-catalog-nav__slider .slick-slide {
  height: auto;
  margin-right: 1.2rem;
}

.banner-catalog-nav__slider .slick-slide > div {
  height: 100%;
}

.banner-catalog-nav__slide {
  min-height: 68px;
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.6rem 0.6rem 0.8rem;
  border-radius: 18px;
  background: var(--functional-blue-surface-10);
  color: var(--functional-black-txt-100);
  font-weight: 400;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.banner-catalog-nav__slide.active,
.banner-catalog-nav__slide:hover {
  background: var(--functional-blue-surface-20);
}

.banner-catalog-nav__pic-wrap {
  width: 58px;
  min-width: 58px;
  height: 58px;
  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;
  border-radius: 14px;
  background: var(--primary-white);
  overflow: hidden;
}

.banner-catalog-nav__pic {
  max-width: 58px;
  max-height: 58px;
  -o-object-fit: contain;
  object-fit: contain;
}

.banner-catalog-nav__name {
  max-width: 150px;
  line-height: 1.2;
  font-size: 0.75em;
}

.banner-catalog-nav .slick-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: var(--primary-white);
  -webkit-box-shadow: 0 8px 24px rgba(0, 2, 51, 0.08);
  box-shadow: 0 8px 24px rgba(0, 2, 51, 0.08);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  font-size: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}

.banner-catalog-nav .slick-arrow:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 2, 51, 0.16);
  box-shadow: 0 8px 24px rgba(0, 2, 51, 0.16);
}

.banner-catalog-nav .slick-arrow:before {
  display: none;
}

.banner-catalog-nav .slick-arrow svg {
  display: block;
  width: 46px;
  height: 46px;
}

.banner-catalog-nav .slick-prev {
  left: -2.3rem;
}

.banner-catalog-nav .slick-next {
  right: -2.3rem;
}

.basket {
  margin: 6rem 0;
}

.basket__header {
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}

.basket__count {
  font-size: 1.5em;
  color: var(--functional-black-surface-40);
}

.basket__body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.2rem;
}

.basket__back {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill='%238b8cbf' d='M5.597 9.763a.833.833 0 0 1-1.184 0L.246 5.596a.833.833 0 0 1 0-1.183L4.413.246a.833.833 0 0 1 1.183 0 .833.833 0 0 1 0 1.184L2.013 5.005 5.597 8.58a.833.833 0 0 1 0 1.183'/%3E%3C/svg%3E") no-repeat 8px center;
  padding: 0.6rem 0.8rem 0.6rem 2.4rem;
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 6px;
  font-size: 0.875em;
  color: var(--functional-blue-txt-60);
  display: inline-block;
  margin-bottom: 2.4rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket__back:hover {
  border-color: var(--primary-blue);
}

.basket__title_big {
  font-size: 3em;
}

.basket-stub {
  display: grid;
  grid-template-columns: 430px 495px;
  gap: 9rem;
}

.basket-stub__txt {
  font-size: 1.125em;
  line-height: 160%;
  color: var(--functional-black-txt-100);
}

.basket-stub__txt a {
  font-weight: 600;
}

.basket-stub__txt a svg {
  margin-right: 0.5rem;
}

.basket-stub__txt a svg * {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket-stub__txt a:hover {
  color: var(--functional-black-txt-60);
}

.basket-stub__txt a:hover rect,
.basket-stub__txt a:hover path,
.basket-stub__txt a:hover circle {
  stroke: var(--functional-black-txt-60);
}

.basket-stub__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 2rem;
  max-width: 288px;
  margin-top: 2.5rem;
}

.basket-stub__download-button {
  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: 1.6rem;
}

.basket-stub__btn {
  padding: 1.45rem;
}

.basket-stub__consultation {
  border-radius: 20px;
  padding: 2.4rem 3.2rem;
  background: var(--functional-blue-surface-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.basket-stub__consultation:after {
  background: url(../img/product-info.png) no-repeat center/contain;
  content: "";
  width: 176px;
  height: 160px;
  position: absolute;
  right: 3.5rem;
  bottom: 0;
}

.basket-stub__title {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: 1.3rem;
}

.basket-stub__tooltip {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  cursor: pointer;
}

.basket-stub__text {
  line-height: 140%;
  color: var(--functional-black-txt-100);
  max-width: 260px;
  margin-bottom: 1.8rem;
}

.basket-list__all .checkbox__txt {
  font-size: 1em;
}

.basket-list__all .checkbox__txt:before {
  width: 20px;
  height: 20px;
}

.basket-list__all .checkbox__txt:after {
  width: 12px;
  height: 12px;
  top: 3px;
  left: 4px;
}

.basket-list__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.basket-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0.8rem;
}

.basket-list__btn {
  border-radius: 6px;
  background: var(--functional-blue-surface-10);
  width: 32px;
  height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.basket-list__group {
  margin-bottom: 1.6rem;
  border-radius: 20px;
  background: var(--functional-blue-surface-10);
  padding-bottom: 0.2rem;
}

.basket-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.basket-list__icon-block {
  border-radius: 8px;
  background: var(--primary-white);
  width: 38px;
  height: 38px;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.basket-list__icon {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.basket-list__caption {
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  font-weight: 700;
}

.basket-list__sign {
  font-size: 0.875em;
  margin-top: 0.8rem;
  color: var(--functional-black-txt-60);
}

.basket-product {
  padding: 1.6rem;
  margin: 0 2px;
  background: var(--primary-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.basket-product__row {
  display: grid;
  grid-template-columns: 148px 1fr 180px;
  gap: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.basket-product:first-of-type {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.basket-product:last-of-type {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.basket-product__left {
  border-radius: 20px;
  width: 100%;
  height: 148px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.basket-product__pic {
  max-width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  vertical-align: middle;
}

.basket-product__check {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: var(--primary-white);
  border-radius: 0 0 4px 0;
  z-index: 2;
  cursor: pointer;
}

.basket-product__hidden {
  display: none;
}

.basket-product__hidden:checked + .basket-product__check-box:after {
  opacity: 1;
}

.basket-product__hidden:checked + .basket-product__check-box:before {
  border-color: var(--primary-blue);
}

.basket-product__check-box {
  position: relative;
}

.basket-product__check-box:before {
  content: "";
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket-product__check-box:after {
  content: "";
  border-radius: 2px;
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  position: absolute;
  top: 3px;
  left: 4px;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket-product__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.basket-product__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  z-index: 2;
}

.basket-product__tag {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
  background: var(--functional-blue-surface-20);
}

.basket-product__tag[href] {
  background: url("data:image/svg+xml,%3Csvg width='10' height='20' viewBox='0 0 10 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.32538 5.24162C2.40285 5.16351 2.49501 5.10151 2.59656 5.05921C2.69811 5.0169 2.80703 4.99512 2.91704 4.99512C3.02705 4.99512 3.13597 5.0169 3.23752 5.05921C3.33907 5.10151 3.43124 5.16351 3.50871 5.24162L7.67538 9.40828C7.75348 9.48575 7.81548 9.57792 7.85779 9.67947C7.90009 9.78102 7.92188 9.88994 7.92188 9.99995C7.92188 10.11 7.90009 10.2189 7.85779 10.3204C7.81548 10.422 7.75348 10.5141 7.67538 10.5916L3.50871 14.7583C3.43124 14.8364 3.33907 14.8984 3.23752 14.9407C3.13597 14.983 3.02705 15.0048 2.91704 15.0048C2.80703 15.0048 2.69811 14.983 2.59656 14.9407C2.49501 14.8984 2.40285 14.8364 2.32538 14.7583C2.24727 14.6808 2.18527 14.5886 2.14297 14.4871C2.10066 14.3855 2.07888 14.2766 2.07888 14.1666C2.07888 14.0566 2.10066 13.9477 2.14297 13.8461C2.18527 13.7446 2.24727 13.6524 2.32538 13.5749L5.90871 9.99995L2.32538 6.42495C2.24727 6.34748 2.18527 6.25531 2.14297 6.15376C2.10066 6.05221 2.07888 5.94329 2.07888 5.83328C2.07888 5.72327 2.10066 5.61435 2.14297 5.5128C2.18527 5.41125 2.24727 5.31908 2.32538 5.24162Z' fill='%23000233'/%3E%3C/svg%3E%0A") no-repeat 94% center var(--functional-blue-surface-10);
  padding: 0.4rem 2.4rem 0.4rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket-product__tag[href]:hover {
  background: url("data:image/svg+xml,%3Csvg width='10' height='20' viewBox='0 0 10 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.32538 5.24162C2.40285 5.16351 2.49501 5.10151 2.59656 5.05921C2.69811 5.0169 2.80703 4.99512 2.91704 4.99512C3.02705 4.99512 3.13597 5.0169 3.23752 5.05921C3.33907 5.10151 3.43124 5.16351 3.50871 5.24162L7.67538 9.40828C7.75348 9.48575 7.81548 9.57792 7.85779 9.67947C7.90009 9.78102 7.92188 9.88994 7.92188 9.99995C7.92188 10.11 7.90009 10.2189 7.85779 10.3204C7.81548 10.422 7.75348 10.5141 7.67538 10.5916L3.50871 14.7583C3.43124 14.8364 3.33907 14.8984 3.23752 14.9407C3.13597 14.983 3.02705 15.0048 2.91704 15.0048C2.80703 15.0048 2.69811 14.983 2.59656 14.9407C2.49501 14.8984 2.40285 14.8364 2.32538 14.7583C2.24727 14.6808 2.18527 14.5886 2.14297 14.4871C2.10066 14.3855 2.07888 14.2766 2.07888 14.1666C2.07888 14.0566 2.10066 13.9477 2.14297 13.8461C2.18527 13.7446 2.24727 13.6524 2.32538 13.5749L5.90871 9.99995L2.32538 6.42495C2.24727 6.34748 2.18527 6.25531 2.14297 6.15376C2.10066 6.05221 2.07888 5.94329 2.07888 5.83328C2.07888 5.72327 2.10066 5.61435 2.14297 5.5128C2.18527 5.41125 2.24727 5.31908 2.32538 5.24162Z' fill='%23000233'/%3E%3C/svg%3E%0A") no-repeat 94% center var(--functional-blue-surface-20);
}

.basket-product__title {
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.125em;
  font-weight: 700;
}

.basket-product__title:hover {
  color: var(--functional-black-surface-40);
}

.basket-product__price-block {
  text-align: right;
  margin-top: 1.6rem;
}

.basket-product__current-price {
  font-weight: 700;
  font-size: 1.125em;
  color: var(--functional-black-txt-100);
  margin-bottom: 0.8rem;
}

.basket-product__old-price {
  color: var(--functional-black-surface-60);
  font-size: 1em;
}

.basket-product .basket-full {
  font-weight: 700;
  font-size: 18px;
}

.basket-product .basket-prepay {
  margin-top: 0.4rem;
  font-weight: 700;
  color: var(--functional-black-txt-100);
  font-size: 16px;
}

.basket-product .basket-prepay-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6rem;
  font-weight: 400;
  border-radius: 24px;
  padding: 0.4rem 0.8rem;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
  font-size: 14px;
}

.basket-product__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.basket-product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}

.basket-product__btn {
  border-radius: 6px;
  background: var(--functional-blue-surface-10);
  width: 32px;
  height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.basket-product__btn:hover {
  background: var(--functional-blue-surface-20);
}

.basket-product__sign {
  text-align: right;
  font-size: 0.875em;
  margin-top: 1.6rem;
  display: inline-block;
}

.basket-product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 148px);
  gap: 2.4rem;
}

.basket-product__count {
  margin-bottom: 1.6rem;
  font-size: 0.875em;
  color: var(--functional-black-txt-60);
}

.basket-making__container {
  border-radius: 20px;
  background: var(--functional-blue-surface-5);
  margin-bottom: 2.4rem;
}

.basket-making__header {
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid var(--functional-blue-surface-20);
}

.basket-making__btn {
  width: 100%;
}

.basket-making__sign {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23b1b3d5' rx='12'/%3E%3Cpath fill='%23000233' d='m12.64 6.125-.187 8.023h-1.61l-.195-8.023zm-2.046 10.484a1 1 0 0 1 .281-.718q.289-.297.797-.297.5 0 .789.297.29.288.289.718a.98.98 0 0 1-.29.711q-.288.29-.788.29-.508 0-.797-.29a1 1 0 0 1-.281-.71'/%3E%3C/svg%3E") no-repeat left top;
  color: var(--functional-black-txt-60);
  line-height: 1.4;
  padding-left: 4rem;
  margin-top: 1.4rem;
}

.basket-making__info {
  color: var(--functional-black-txt-60);
  line-height: 1.4;
  display: none;
  margin-top: 1.4rem;
}

.basket-making__footer {
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.basket-making__caption {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23b1b3d5' rx='12'/%3E%3Cpath fill='%23000233' d='m12.64 6.125-.187 8.023h-1.61l-.195-8.023zm-2.046 10.484a1 1 0 0 1 .281-.718q.289-.297.797-.297.5 0 .789.297.29.288.289.718a.98.98 0 0 1-.29.711q-.288.29-.788.29-.508 0-.797-.29a1 1 0 0 1-.281-.71'/%3E%3C/svg%3E") no-repeat left center;
  padding-left: 4rem;
  text-transform: uppercase;
  padding-block: 0.4rem;
  font-weight: 700;
  font-size: 0.875em;
  margin-bottom: 0.8rem;
}

.basket-making__txt {
  line-height: 140%;
  color: var(--functional-black-txt-60);
  font-size: 0.75em;
}

.basket-making__txt a {
  font-weight: 500;
  color: var(--functional-blue-txt-100);
}

.basket-making__consultation {
  border-radius: 20px;
  padding: 2.4rem 3.2rem;
  background: var(--functional-blue-surface-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.basket-making__consultation:after {
  background: url(../img/product-info.png) no-repeat bottom/150px;
  content: "";
  width: 176px;
  height: 160px;
  position: absolute;
  right: 1rem;
  bottom: 0;
}

.basket-making__title {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: 1.3rem;
  max-width: 256px;
}

.basket-making__tooltip {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  cursor: pointer;
}

.basket-making__body {
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.basket-making__body.view {
  display: block;
}

.basket-making__holder {
  color: var(--functional-black-txt-100);
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.basket-making__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
}

.basket-making__price {
  font-weight: 700;
}

.basket-making__price_sale {
  color: var(--functional-green-txt-100);
}

.basket-making__total {
  padding-top: 2.4rem;
  text-align: right;
  font-weight: 700;
  color: var(--functional-black-txt-100);
  border-top: 1px solid var(--functional-blue-surface-20);
}

.basket-order__box {
  border: 2px solid var(--functional-blue-surface-20);
  border-radius: 20px;
  margin-bottom: 2.4rem;
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.basket-order__title {
  font-size: 1.125em;
  font-weight: 700;
  color: var(--functional-black-txt-100);
  margin-bottom: 1.6rem;
}

.basket-order__txt {
  color: var(--functional-black-txt-100);
}

.order-address__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.order-address__btn {
  color: var(--functional-blue-txt-100);
  padding: 1.3rem 1.6rem;
  line-height: 1;
  font-weight: 700;
  font-size: 0.875em;
  background: var(--functional-blue-surface-10);
  border-radius: 6px;
}

.order-address__btn.active {
  background: var(--primary-blue);
  color: var(--primary-white);
}

.order-address__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.order-address__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 1.4rem;
}

.order-address__addr {
  color: var(--functional-black-txt-100);
  font-weight: 700;
  max-width: 230px;
}

.order-address__txt {
  color: var(--functional-black-txt-60);
}

.order-address__tel {
  color: var(--functional-black-txt-100);
  margin-bottom: 0.5rem;
  display: block;
}

.order-address__map iframe {
  border-radius: 6px;
}

.order-address__road {
  display: none;
  width: 100%;
}

.order-address__title {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: 1.3rem;
}

.order-address__edit {
  width: 100%;
  margin-top: 2rem;
}

.order-buyer__line {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.4rem;
  position: relative;
  margin-bottom: 2.4rem;
}

.order-buyer__name {
  color: var(--functional-black-txt-100);
}

.order-buyer__txt {
  color: var(--functional-black-txt-100);
  margin-bottom: 1rem;
}

.order-buyer__edit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.order-buyer__add {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid var(--functional-blue-surface-20);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--functional-black-txt-100);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.order-buyer__add:hover {
  border-color: var(--primary-blue);
}

.basket-success {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 11rem;
}

.basket-success__print {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23000233' d='M16 5.25c0-.934-.18-1.446-.453-1.737C15.283 3.232 14.784 3 13.75 3h-3.5c-1.034 0-1.534.232-1.797.513C8.18 3.803 8 4.316 8 5.25V6.5h8zm1.5 2a.75.75 0 0 1-.75.75h-9.5a.75.75 0 0 1-.75-.75v-2c0-1.066.195-2.054.86-2.763.674-.719 1.674-.987 2.89-.987h3.5c1.216 0 2.217.268 2.89.987.665.71.86 1.697.86 2.763zM15.25 16h-6.5v3.25c0 .884.22 1.41.53 1.72s.836.53 1.72.53h2c.884 0 1.41-.22 1.72-.53s.53-.836.53-1.72zm1.5 3.25c0 1.116-.28 2.09-.97 2.78S14.116 23 13 23h-2c-1.116 0-2.09-.28-2.78-.97s-.97-1.664-.97-2.78v-4A.75.75 0 0 1 8 14.5h8a.75.75 0 0 1 .75.75z'/%3E%3Cpath fill='%23000233' d='M16 14.5a.75.75 0 0 1 .75.75v2.25H18c.884 0 1.41-.22 1.72-.53s.53-.836.53-1.72v-5c0-.884-.22-1.41-.53-1.72S18.884 8 18 8H6c-.884 0-1.41.22-1.72.53s-.53.836-.53 1.72v5c0 .884.22 1.41.53 1.72s.836.53 1.72.53h1.25v-2.25A.75.75 0 0 1 8 14.5zm5.75.75c0 1.116-.28 2.09-.97 2.78S19.116 19 18 19h-2a.75.75 0 0 1-.75-.75V16h-6.5v2.25A.75.75 0 0 1 8 19H6c-1.116 0-2.09-.28-2.78-.97s-.97-1.664-.97-2.78v-5c0-1.116.28-2.09.97-2.78S4.884 6.5 6 6.5h12c1.116 0 2.09.28 2.78.97s.97 1.664.97 2.78z'/%3E%3Cpath fill='%23000233' d='M17 14.5a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5zM10 10.5a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5z'/%3E%3C/svg%3E") no-repeat left center;
  padding: 0.4rem 0 0.4rem 3rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.basket-success__txt {
  line-height: 160%;
  color: var(--functional-black-txt-100);
  max-width: 427px;
  margin-bottom: 2.4rem;
  font-size: 1.5em;
}

.basket-success__pic {
  position: relative;
  top: -60px;
}

.callback {
  margin: 4.8rem 0;
  padding-top: 7rem;
}

.callback__wrapper {
  background: linear-gradient(179deg, #59419a 0%, #734fa0 100%);
  border-radius: 20px;
  padding: 6rem 8.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.callback__box {
  max-width: 706px;
  color: var(--primary-white);
  width: 80%;
}

.callback__title {
  margin-bottom: 2.4rem;
}

.callback__txt {
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.callback__btn {
  margin-top: 2.4rem;
  background: var(--primary-pink);
}

.callback__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}

.callback__field {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.callback__field_area {
  height: 92px;
}

.callback__check a {
  color: var(--primary-pink);
}

.callback__pic {
  width: 60%;
  max-width: 565px;
  position: absolute;
  top: -7rem;
  right: 7rem;
}

.shop_cat_anons {
  font-size: 0.875em;
  margin-top: 10px;
  margin-bottom: 10px;
}

.catalog {
  margin: 3rem 0;
}

.catalog__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}

.catalog__sort-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--functional-blue-surface-10);
  padding: 0.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}

.catalog__sort-btn {
  font-size: 0.875em;
  color: var(--functional-black-txt-60);
  padding: 1rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}

.catalog__sort-btn.active {
  background: var(--functional-blue-txt-100);
  color: var(--primary-white);
}

.catalog__banner {
  margin: 2.6rem 0 2rem;
}

.catalog__filter {
  position: relative;
  z-index: 99;
}

.catalog__download-button {
  display: none;
}

.catalog-filter {
  position: relative;
  height: 44px;
}

.catalog-filter__categories {
  display: none;
}

.catalog-filter__box {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 10px;
  background: var(--primary-white);
  margin-bottom: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.catalog-filter__box:hover {
  z-index: 10;
}

.catalog-filter__box:nth-of-type(2) {
  top: calc(100% + 8px);
}

.catalog-filter__box:nth-of-type(3) {
  top: calc(200% + 16px);
}

.catalog-filter__box:nth-of-type(4) {
  top: calc(300% + 24px);
}

.catalog-filter__box.hidden {
  display: none;
}

.catalog-filter__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 2.4rem;
}

.catalog-filter__nav-item {
  padding-block: 1.4rem 1.1rem;
  color: var(--functional-black-txt-60);
  font-size: 0.75em;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}

.catalog-filter__nav-item:hover,
.catalog-filter__nav-item[data-expanded=true] {
  color: var(--functional-black-txt-100);
  border-bottom-color: var(--functional-black-txt-100);
}

.catalog-filter__nav-item[data-target=more] {
  padding-right: 1.6rem;
  position: relative;
  cursor: pointer;
}

.catalog-filter__nav-item[data-target=more]:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%23000233' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E") no-repeat center/contain;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
}

.catalog-filter__category {
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding-block: 2.8rem;
  margin: 0 2.4rem;
  display: none;
  border-top: 1px solid var(--functional-black-surface-20);
}

.catalog-filter__category[data-expanded=true] {
  display: grid;
}

.catalog-filter__item {
  font-weight: 700;
  color: var(--functional-black-txt-60);
  display: block;
  margin-bottom: 2.8rem;
}

.catalog-filter__item:hover {
  color: var(--functional-blue-txt-100);
}

.catalog-filter__subitems {
  margin-top: -2rem;
}

.catalog-filter__list {
  margin-bottom: 2.8rem;
}

.catalog-filter__subitem {
  font-size: 0.875em;
  color: var(--functional-black-txt-60);
  display: block;
  margin-bottom: 0.8rem;
}

.catalog-filter__subitem:hover {
  color: var(--functional-blue-txt-100);
}

.catalog-filter__list:not(.is-expanded) .catalog-filter__subitem:nth-child(n+4) {
  display: none;
}

.catalog-filter__subitems:not(:has(.catalog-filter__subitem:nth-child(4))) + .catalog-filter__more {
  display: none;
}

.catalog-filter__list.is-expanded .catalog-filter__more:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.catalog-filter__more {
  font-weight: 700;
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  padding-right: 1.6rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.catalog-filter__more:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%23000233' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E") no-repeat center/contain;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
}

.catalog-filter__more:hover {
  color: var(--functional-blue-txt-100);
}

.catalog-filter__more:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%233d4095' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E");
}

.catalog-banner {
  position: relative;
  background: var(--functional-blue-surface-10);
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 10px;
  padding-inline: 1rem;
}

.catalog-banner__wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  color: #545454;
}

.catalog-banner__wrap_mini {
  max-width: 1000px;
}

.catalog-banner__title {
  padding-top: 3.4rem;
  font-size: 2em;
  margin-bottom: 1rem;
}

.catalog-banner__title_mini {
  padding-top: 2rem;
}

.catalog-banner__subtitle {
  font-size: 1.5em;
}

.catalog-banner__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  cursor: pointer;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem 2.4rem;
}

.category-grid__category {
  display: block;
  text-align: center;
}

.category-grid__image {
  border-radius: 20px;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}

.category-grid__label {
  margin-top: 2.4rem;
  text-align: center;
  display: block;
}

.popular-list {
  margin: 5rem 0;
}

.popular-list__title {
  margin-bottom: 5rem;
}

.popular-list__category {
  border-radius: 20px;
  background: var(--functional-blue-surface-5);
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: 1fr 100px;
  gap: 1.6rem 3rem;
}

.popular-list__caption {
  display: block;
  grid-column: 1/3;
}

.popular-list__item {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.875em;
}

.popular-list .slick-slide {
  margin: 0 10px;
}

.desc-catalog {
  margin: 5rem 0;
}

.desc-catalog__wrapper {
  display: grid;
  grid-template-columns: 338px minmax(700px, 0.65fr);
  gap: 2rem;
}

.consultation-block__wrapper {
  background: var(--functional-blue-surface-10);
  border-radius: 10px;
  padding: 4.8rem 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr) 280px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.consultation-block__text,
.consultation-block__title {
  max-width: 405px;
}

.consultation-block__title {
  color: var(--functional-blue-txt-100);
}

.consultation-block__text {
  font-size: 1.125em;
  line-height: 160%;
}

.consultation-block__phone {
  font-size: 2em;
  font-weight: 700;
  color: var(--functional-blue-txt-100);
}

.consultation-block__button {
  width: 100%;
  margin-top: 2.4rem;
  max-width: 350px;
}

.catalog-wrapper {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 2rem;
}

.catalog-wrapper__banner {
  margin: 2.2rem 0;
}

.catalog-wrapper__view {
  display: block;
}

.filter-container__download {
  width: 100%;
  margin-bottom: 0.8rem;
}

.filter-container__wrapper {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 10px;
  padding: 2.4rem 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.filter-container__reset {
  font-weight: 500;
  color: var(--functional-blue-txt-100);
  font-size: 0.875em;
}

.filter-container__category-filter {
  margin: 2.4rem 0;
  font-size: 0.875em;
  padding-left: 2.2rem;
}

.filter-container__caption {
  position: relative;
  margin-bottom: 1rem;
  display: block;
}

.filter-container__caption:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23b1b3d5' d='M11.16 13.705a1 1 0 0 1-1.418 0L4.75 8.708a1 1 0 0 1 0-1.418l4.992-4.995a1 1 0 0 1 1.418 0 1 1 0 0 1 0 1.418L6.867 8l4.293 4.286a1 1 0 0 1 0 1.418'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -22px;
  top: 0;
}

.filter-container__items .filter-container__items {
  padding-left: 1.2rem;
}

.filter-container__items .filter-container__items > .filter-container__item {
  display: block;
}

.filter-container__item {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  z-index: 1;
  display: none;
}

.filter-container__item:nth-of-type(-n+5) {
  display: block;
}

.filter-container__item[data-level="3"],
.filter-container__item_level-3 {
  margin-left: 1.2rem;
}

.filter-container__item {
  display: block;
}

.filter-container__item[data-level="4"],
.filter-container__item_level-4 {
  margin-left: 2.4rem;
}

.filter-container__item {
  display: block;
}

.filter-container__item[data-level="5"],
.filter-container__item_level-5 {
  margin-left: 3.6rem;
}

.filter-container__item {
  display: block;
}

.filter-container__item[data-level="6"],
.filter-container__item_level-6 {
  margin-left: 4.8rem;
}

.filter-container__item {
  display: block;
}

.filter-container__item.active:after {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 12px);
  position: absolute;
  z-index: -1;
  background: var(--functional-blue-surface-10);
  border-radius: 6px;
  top: -6px;
  left: -6px;
}

.filter-container__more {
  font-weight: 500;
}

.filter-container__box {
  margin: 2.4rem 0;
}

.filter-container__title {
  font-weight: 700;
  font-size: 0.875em;
}

.filter-container__range {
  background: var(--functional-blue-surface-20);
  height: 2px;
  position: relative;
  width: calc(100% - 7px);
}

.filter-container__price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.filter-container__field {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1em;
}

.filter-container .ui-slider-horizontal .ui-slider-range {
  background: var(--functional-black-txt-80);
  top: 0;
  height: 100%;
  position: absolute;
}

.filter-container .ui-slider-horizontal .ui-slider-handle {
  background: var(--functional-black-txt-80);
  top: -7px;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  display: block;
  position: absolute;
}

.filter-container__label {
  display: block;
  margin-top: 1rem;
}

.filter-container__hidden {
  display: none;
}

.filter-container__hidden:checked + .filter-container__toggle {
  background: var(--primary-blue);
}

.filter-container__hidden:checked + .filter-container__toggle:before {
  left: calc(100% - 26px);
}

.filter-container__hidden:checked + .filter-container__check-discount:before {
  background: var(--primary-blue);
}

.filter-container__toggle-row {
  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;
}

.filter-container__toggle {
  width: 44px;
  height: 28px;
  border-radius: 100px;
  background: var(--functional-blue-surface-20);
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.filter-container__toggle:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: var(--primary-white);
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: block;
}

.filter-container__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
  position: relative;
}

.filter-container__labels:before {
  content: "";
  width: calc(100% - 14px);
  height: 1px;
  background: var(--functional-blue-surface-20);
  position: absolute;
  top: 16px;
  left: 7px;
  display: block;
}

.filter-container__check-discount {
  padding-top: 20px;
  position: relative;
  display: block;
  font-size: 0.75em;
  text-align: center;
  min-width: 22px;
  cursor: pointer;
}

.filter-container__check-discount:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: var(--functional-blue-surface-20);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.filter-container__more-filter {
  width: 100%;
  text-align: center;
  border-radius: 6px;
  padding: 1.2rem 1.6rem;
  background: var(--functional-blue-surface-10);
  font-weight: 700;
  font-size: 0.875em;
  color: var(--functional-blue-txt-100);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 2.4rem 0;
  display: block;
}

.filter-container__price-box {
  margin-top: 1rem;
}

.sort-container {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 10px;
}

.sort-container__top {
  padding: 0.4rem 1.6rem 1.8rem;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  display: none;
}

.sort-container__top.open {
  height: auto;
}

.sort-container__receipts {
  position: relative;
}

.sort-container__label {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 34px;
  margin: 1rem 1.2rem 0 0;
}

.sort-container__hidden {
  display: none;
}

.sort-container__hidden:checked + .sort-container__check-text {
  text-transform: lowercase;
}

.sort-container__hidden:checked + .sort-container__check-text::before {
  text-transform: capitalize;
  content: "Выбран";
}

.sort-container__check-text {
  background: var(--functional-blue-surface-10);
  border-radius: 100px;
  height: 34px;
  padding-inline: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sort-container__check-text:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' fill='none' viewBox='0 0 23 23'%3E%3Crect width='23' height='23' fill='%23fff' rx='11.5'/%3E%3Cpath fill='%232e3092' d='m12.557 11.5 3.221-3.215a.752.752 0 0 0-1.064-1.065L11.5 10.443 8.286 7.22a.752.752 0 1 0-1.064 1.065l3.222 3.214-3.222 3.215a.75.75 0 0 0 .243 1.228.75.75 0 0 0 .82-.164l3.215-3.222 3.214 3.222a.75.75 0 0 0 1.064 0 .75.75 0 0 0 0-1.064z'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 24px;
  height: 24px;
}

.sort-container__check-text:hover {
  background: var(--primary-blue);
  color: var(--primary-white);
}

.sort-container__more {
  float: right;
  font-weight: 700;
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  padding-right: 1.6rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-top: 17px;
}

.sort-container__more.active:after {
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.sort-container__more:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%23000233' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E") no-repeat center/contain;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
}

.sort-container__more:hover {
  color: var(--functional-blue-txt-100);
}

.sort-container__more:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%233d4095' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E");
}

.sort-container__bottom {
  padding: 1.9rem 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sort-container__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

.sort-container__title {
  font-size: 0.875em;
  color: var(--functional-blue-txt-60);
}

.sort-container__box {
  position: relative;
}

.sort-container__box[open] .sort-container__val:after {
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.sort-container__val {
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  padding-right: 1.6rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.sort-container__val:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill='%23000233' d='M9.763.247a.833.833 0 0 1 0 1.183L5.597 5.597a.833.833 0 0 1-1.184 0L.247 1.43a.833.833 0 0 1 0-1.183.833.833 0 0 1 1.183 0L5.005 3.83 8.58.247a.833.833 0 0 1 1.183 0'/%3E%3C/svg%3E") no-repeat center/contain;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sort-container__button {
  display: block;
  margin-top: 1rem;
}

.sort-container__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.sort-container__list {
  position: absolute;
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 2, 51, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 2, 51, 0.25);
  background: var(--primary-white);
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  padding: 1.4rem 1.8rem 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 288px;
}

.sort-container__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.sort-container__change path {
  fill: var(--functional-blue-surface-40);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sort-container__change.active path {
  fill: var(--functional-black-txt-100);
}

.catalog-list {
  display: grid;
  gap: 5rem 2rem;
  grid-template-columns: repeat(auto-fill, 262px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5rem 0;
}

.catalog-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog-list__header {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 20px;
  width: 100%;
  height: 262px;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.catalog-list__pic {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}

.catalog-list__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  top: 220px;
  left: 1rem;
  z-index: 2;
}

.catalog-list__tag {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
}

.catalog-list__tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.catalog-list__tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.catalog-list__tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.catalog-list__state {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.catalog-list__state_hit {
  background: var(--functional-yellow-surface-20);
}

.catalog-list__state_sale {
  background: var(--functional-orange-surface-20);
}

.catalog-list__state_new {
  background: var(--functional-green-surface-20);
}

.catalog-list__middle {
  margin-top: 4rem;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.catalog-list__caption {
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-list__bottom {
  display: none;
}

.catalog-list__sign {
  font-size: 0.875em;
}

.catalog-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

.catalog-list__right {
  display: block;
}

.catalog-list__price-block {
  margin-top: 3.2rem;
  display: block;
}

.catalog-list__current-price {
  font-weight: 700;
  font-size: 0.875em;
}

.catalog-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 0.8rem;
}

.catalog-list__old-price {
  color: var(--functional-black-surface-40);
  font-size: 1.125em;
}

.catalog-list__discount {
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.8rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.catalog-list__favor {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.catalog-list__control {
  display: block;
}

.catalog-list__buy {
  display: none;
}

.catalog-list__slider {
  width: 100%;
}

.catalog-list__slider .slick-slide {
  height: 100%;
}

.catalog-list__slider .slick-slide div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.catalog-list__slider .slick-dots {
  bottom: -45px;
}

.catalog-list .catalog-full {
  font-weight: 700;
  font-size: 18px;
}

.catalog-list .catalog-prepay {
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 14px;
}

.catalog-list .catalog-prepay-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6rem;
  font-weight: 400;
  border-radius: 24px;
  padding: 0.4rem 0.8rem;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
  font-size: 12px;
}

.catalog-list_line {
  display: block;
  margin: 5rem 0;
}

.catalog-list_line .catalog-list__item {
  display: grid;
  grid-template-columns: 262px 1fr 190px;
  gap: 6rem;
  padding: 4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.catalog-list_line .catalog-list__header {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 20px;
  width: 100%;
  height: 262px;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.catalog-list_line .catalog-list__middle {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog-list_line .catalog-list__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: static;
  margin-top: 1.6rem;
  z-index: 2;
}

.catalog-list_line .catalog-list__caption {
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.125em;
  font-weight: 700;
}

.catalog-list_line .catalog-list__price-block {
  text-align: right;
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.catalog-list_line .catalog-list__current-price {
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 0.8rem;
}

.catalog-list_line .catalog-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.catalog-list_line .catalog-list__old-price {
  color: var(--functional-black-surface-40);
  font-size: 1.125em;
}

.catalog-list_line .catalog-list__discount {
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.4rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.catalog-list_line .catalog-list__favor {
  position: static;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  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: var(--functional-blue-surface-10);
}

.catalog-list_line .catalog-list__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.catalog-list_line .catalog-list__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}

.catalog-list_line .catalog-list__buy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.more-filter {
  position: fixed;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 12;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  display: none;
}

.compilation {
  margin: 7rem 0;
}

.compilation__title {
  margin-bottom: 5rem;
}

.compilation__list {
  display: grid;
  gap: 3.4rem 2.4rem;
  grid-template-columns: repeat(auto-fill, 216px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.compilation__header {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 20px;
  width: 100%;
  height: 216px;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.compilation__pic {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}

.compilation__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

.compilation__tag {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
}

.compilation__tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.compilation__tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.compilation__tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.compilation__footer {
  margin-top: 2.4rem;
  display: block;
  min-height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.compilation__caption {
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compilation__price-block {
  margin-top: 3.2rem;
  display: block;
}

.compilation__current-price {
  font-weight: 700;
  font-size: 1.5em;
}

.compilation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 0.8rem;
}

.compilation__old-price {
  color: var(--functional-black-surface-40);
  font-size: 1.125em;
}

.compilation__discount {
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.8rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  padding-block: 2rem;
  background: var(--primary-blue);
  border-radius: 20px 20px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 -6px 36px 0 rgba(0, 2, 51, 0.25);
  box-shadow: 0 -6px 36px 0 rgba(0, 2, 51, 0.25);
}

.cookie[hidden] {
  display: none;
}

.cookie__inner {
  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;
  gap: 2.4rem;
}

.cookie__close {
  display: none;
}

.cookie__text {
  margin: 0;
  max-width: 78rem;
  color: var(--primary-white);
  font-size: 1.125em;
  line-height: 1.45;
}

.cookie__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cookie__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 14.8rem;
  padding: 1.2rem 2.4rem;
  border: 0;
  border-radius: 12px;
  background: var(--primary-white);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.2;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

.cookie__btn:hover {
  background: var(--functional-blue-surface-10);
}

.cookie__btn:active {
  background: var(--functional-blue-surface-20);
}

.footer {
  margin-top: 5rem;
  padding-bottom: 5rem;
}

.footer__container {
  background: var(--functional-blue-surface-5);
  border-radius: 20px;
  padding: 2.4rem 6.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 284px) 213px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}

.footer__menu-item {
  margin-bottom: 1.4rem;
}

.footer__menu-item:last-of-type {
  margin-bottom: 0;
}

.footer__menu-link {
  color: var(--functional-black-txt-60);
  font-weight: 500;
}

.footer__contact-item {
  margin-bottom: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}

.footer__contact-item:last-of-type {
  margin-bottom: 0;
}

.footer__contact-link {
  font-weight: 700;
  position: relative;
}

.footer__contact-link[data-sign] {
  padding-bottom: 2rem;
}

.footer__contact-link[data-sign]:after {
  content: attr(data-sign);
  font-size: 0.75em;
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  font-weight: 400;
}

.footer__contact-text {
  line-height: 1.4;
}

.footer__column_last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.footer__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 0.8rem;
  font-size: 0.875em;
}

.footer__bottom {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 253px 1fr;
  font-size: 0.75em;
  color: var(--functional-black-surface-40);
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}

.footer__legal {
  line-height: 140%;
}

.footer__legal a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--primary-blue);
}

.footer__build {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer .social-block {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav__item {
  color: var(--functional-black-txt-60);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.6rem;
  text-align: center;
  position: relative;
  min-height: 40px;
}

.mobile-bottom-nav__item[data-count]:after {
  content: attr(data-count);
  position: absolute;
  top: -0.2rem;
  right: 1.5rem;
  min-width: 17px;
  height: 15px;
  border-radius: 34px;
  background: var(--primary-pink);
  color: var(--primary-white);
  font-size: 0.625em;
  line-height: 16px;
  padding-inline: 0.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
}

.mobile-bottom-nav__item_active {
  color: var(--primary-blue);
}

.mobile-bottom-nav__item_active .mobile-bottom-nav__text {
  color: var(--primary-blue);
  font-weight: 700;
}

.mobile-bottom-nav__icon {
  line-height: 0;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.mobile-bottom-nav__text {
  font-size: 0.875em;
  line-height: 1;
  white-space: nowrap;
  color: var(--functional-black-txt-100);
}

.header {
  position: relative;
  z-index: 99999;
}

.header__top-line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 0.6rem;
}

.header__top-line:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--functional-blue-surface-2);
  z-index: -1;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  font-size: 0.75em;
}

.header__phone {
  font-weight: 700;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header__phone:hover {
  color: var(--primary-blue);
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 2rem;
  position: relative;
  z-index: 2;
}

.header__catalog-button {
  border-radius: 12px;
  background: var(--primary-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.7rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  color: var(--primary-white);
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header__catalog-button:hover {
  background: var(--functional-blue-txt-80);
}

.header__user-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(76px, 1fr));
}

.header__bottom-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__btn {
  text-align: center;
  color: var(--functional-black-txt-60);
  font-size: 0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  cursor: pointer;
  position: relative;
}

.header__btn[data-count]:after {
  content: attr(data-count);
  position: absolute;
  top: -0.2rem;
  right: 1.5rem;
  min-width: 17px;
  height: 17px;
  border-radius: 34px;
  background: var(--primary-pink);
  color: var(--primary-white);
  font-size: 0.875em;
  line-height: 17px;
  padding-inline: 0.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
}

.header__btn path {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header__btn:hover {
  color: var(--functional-black-txt-100);
}

.header__btn:hover path {
  fill: var(--functional-black-txt-100);
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.header__item {
  margin-bottom: 0;
}

.header__link {
  color: var(--functional-black-txt-60);
  font-weight: 500;
  font-size: 0.875em;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header__link:hover {
  color: var(--functional-black-txt-100);
}

.header__btn-mobile-search,
.header__btn-mobile-nav {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.header__btn-mobile-close {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.header__btn-mobile-close {
  display: none;
}

.header__mobile {
  display: none;
}

.header.is-open .header__mobile-panel {
  padding: 0 1.5rem 3.2rem;
}

.header.is-open .header__mobile-catalog-button {
  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;
  gap: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.6rem;
  border-radius: 12px;
  background: var(--primary-blue);
  color: var(--primary-white);
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 2.4rem;
}

.header.is-open .header__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--functional-black-surface-20);
}

.header.is-open .header__mobile-item {
  margin: 0;
  border-bottom: 1px solid var(--functional-black-surface-20);
}

.header.is-open .header__mobile-link {
  display: block;
  padding: 1.6rem 0;
  color: var(--functional-black-txt-60);
  font-weight: 500;
  font-size: 1em;
  line-height: 1.35;
}

.header.is-open .header__mobile-contacts {
  margin-top: 2.4rem;
}

.header.is-open .header__mobile-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.header.is-open .header__mobile-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 12px;
  background: var(--functional-blue-surface-5);
  color: var(--functional-black-txt-100);
}

.header.is-open .header__mobile-phone-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2rem;
  flex: 0 0 2rem;
  line-height: 0;
}

.header.is-open .header__mobile-phone-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.header.is-open .header__mobile-phone-number {
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.3;
  color: var(--functional-blue-txt-100);
}

.header.is-open .header__mobile-phone-sign {
  color: var(--functional-black-txt-60);
  font-size: 0.5625em;
  line-height: 1.3;
}

.header.is-open .header__mobile-messengers {
  margin-top: 2.4rem;
}

.header.is-open .header__mobile-social .social-block {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.header.is-open .header__mobile-social .social-block svg,
.header.is-open .header__mobile-social .social-block img {
  width: 40px;
  height: 40px;
}

.header.is-open .header__mobile-messenger-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}

.header.is-open .header__mobile-messenger-label {
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  white-space: nowrap;
}

.header.is-open .header__mobile-messenger-phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: var(--functional-blue-surface-5);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1em;
  white-space: nowrap;
}

.banner {
  margin: 3rem 0 4.8rem;
}

.banner__hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.banner__nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 2, 51, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.banner__nav {
  width: clamp(29rem, 30%, 36rem);
  background: var(--primary-white);
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 1001;
}

.banner__nav:has(.banner__nav-item:hover) {
  border-radius: 20px 0 0 20px;
}

.banner__nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0 1rem 1.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.banner__nav-item {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill='%23666785' d='M.247.246a.833.833 0 0 1 1.184 0l4.166 4.167a.833.833 0 0 1 0 1.183L1.431 9.764a.833.833 0 0 1-1.184 0 .833.833 0 0 1 0-1.183l3.584-3.575L.247 1.43a.833.833 0 0 1 0-1.184'/%3E%3C/svg%3E") no-repeat 95% center;
  margin-bottom: 0.4rem;
  padding-right: 1.4rem;
}

.banner__nav-item:hover {
  font-weight: 700;
  color: var(--primary-blue);
}

.banner__nav-item:hover .banner__nav-trigger {
  font-weight: 700;
  color: var(--primary-blue);
}

.banner__nav-item:last-of-type {
  margin-bottom: 0;
}

.banner__nav-trigger {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1.125em;
  color: var(--functional-black-txt-100);
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.banner__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.banner__mega-inner {
  background: var(--primary-white);
  border: 1px solid var(--functional-black-surface-10);
  border-radius: 0 16px 16px 0;
  border-left: 0;
  padding: 2rem 2rem 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 8px 12px 40px rgba(0, 2, 51, 0.1);
  box-shadow: 8px 12px 40px rgba(0, 2, 51, 0.1);
  height: 100%;
  min-height: 100%;
  position: absolute;
}

.banner__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.2rem;
}

.banner__mega-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--functional-black-txt-100);
  border-radius: 12px;
  padding: 0.6rem 0.4rem 1rem;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.25;
}

.banner__mega-card:hover {
  background: var(--functional-purple-surface-10);
}

.banner__mega-pic-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 216px;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  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;
  overflow: hidden;
}

.banner__mega-pic {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.banner__mega-caption {
  display: block;
  -ms-hyphens: auto;
  hyphens: auto;
}

.banner__slider {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.banner__slide {
  position: relative;
}

.banner__content {
  position: absolute;
  top: 4.5rem;
  left: 4rem;
  max-width: 515px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.banner__title {
  text-transform: uppercase;
  color: var(--functional-black-txt-100);
  margin-bottom: 1.2rem;
}

.banner__txt {
  color: var(--functional-black-txt-80);
  max-width: 480px;
}

.banner__control {
  display: grid;
  margin-top: 3.8rem;
  gap: 1.8rem;
  max-width: 256px;
}

.banner__control_column {
  grid-template-rows: repeat(2, 1fr);
}

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

.banner__pic {
  max-width: 100%;
  height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
  border-radius: 20px;
  width: 100%;
}

.banner .slick-arrow {
  top: auto;
  bottom: 0px;
  right: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 72px;
}

.banner .slick-arrow.slick-prev {
  left: auto;
  right: 94px;
}

.banner .slick-arrow.slick-next {
  right: 14px;
}

.popular-categories {
  margin: 6.8rem 0;
}

.popular-categories__title {
  margin-bottom: 3.6rem;
}

.popular-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.popular-categories__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background: var(--functional-blue-surface-10);
  border-radius: 20px;
  padding: 0.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.popular-categories__link:hover {
  color: var(--functional-blue-surface-20);
  background: var(--functional-blue-surface-20);
}

.popular-categories__icon-wrapper {
  border-radius: 20px;
  width: 108px;
  height: 108px;
  background: var(--primary-white);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.popular-categories__icon {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.popular-categories__text {
  font-size: 1.125em;
  color: var(--functional-black-txt-100);
}

.popular-categories__button {
  width: 100%;
  height: 100%;
  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;
  font-size: 1.5em;
}

.dealing {
  margin: 10.8rem 0 6.8rem;
}

.dealing__header {
  margin-bottom: 3.6rem;
  position: relative;
}

.dealing__tooltip {
  position: absolute;
  left: 30%;
  top: 0;
}

.dealing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.dealing__item {
  border: 2px solid var(--functional-purple-txt-100);
  border-radius: 20px;
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.dealing__pic {
  margin: 2.5rem 0;
}

.dealing__caption {
  margin-bottom: 2.4rem;
}

.dealing__description p {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
}

.dealing__description p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.cabinet-package {
  margin: 6.8rem 0;
}

.cabinet-package__header {
  margin-bottom: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cabinet-package__card {
  border-radius: 20px;
  padding: 2rem;
  background: var(--functional-blue-surface-5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.cabinet-package__card:hover .cabinet-package__arrow {
  background: var(--functional-blue-txt-80);
}

.cabinet-package__card:active .cabinet-package__arrow {
  background: var(--primary-black);
}

.cabinet-package__caption {
  margin-bottom: 1.6rem;
  display: block;
}

.cabinet-package__image {
  width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("/icon/image-mask.svg");
  mask-image: url("/icon/image-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.cabinet-package__arrow {
  width: clamp(56px, 20%, 76px);
  height: clamp(56px, 40%, 76px);
  background: var(--primary-blue);
  border-radius: 14px;
  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;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.cabinet-package .slick-slide {
  margin: 0 12px;
}

.cabinet-package .slick-arrow.slick-disabled {
  display: none;
}

.bidding {
  margin: 6.8rem 0;
}

.bidding__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.bidding__left {
  background: url(../img/bidding-1.webp) no-repeat bottom right var(--functional-blue-surface-10);
  border-radius: 20px;
  padding: 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bidding__title {
  color: var(--functional-black-txt-100);
  max-width: 300px;
  margin-bottom: 2.4rem;
}

.bidding__txt {
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
  max-width: 300px;
}

.bidding__right {
  background: url(../img/bidding-2.webp) no-repeat bottom right var(--functional-blue-surface-10);
  border-radius: 20px;
  padding: 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
}

.sertif {
  margin: 6.8rem 0;
}

.sertif__title {
  margin-bottom: 3.6rem;
}

.sertif__pic {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.sertif .slick-slide {
  margin-right: 24px;
  height: 300px;
}

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

.partners {
  margin: 6.8rem 0;
}

.partners__title {
  margin-bottom: 3.6rem;
}

.partners__slide {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 26px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 280px;
  width: 100%;
}

.partners__pic {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners .slick-slide {
  margin: 0 12px;
  width: 280px;
}

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

.callback-banner {
  margin: 6.8rem 0;
}

.callback-banner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5.4rem;
  padding-inline: 7rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-top: 16rem;
}

.callback-banner__box:after {
  content: "";
  width: 100%;
  height: 157px;
  background: var(--functional-blue-surface-10);
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.callback-banner__pic {
  margin-top: -80px;
  margin-right: 50px;
}

.callback-banner__tooltip {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.news {
  margin: 8.8rem 0 6.8rem;
}

.news__header {
  margin-bottom: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.news__card {
  border-radius: 20px;
  padding: 2rem;
  background: var(--functional-blue-surface-5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.news__card:hover .news__arrow {
  background: var(--functional-blue-txt-80);
}

.news__card:active .news__arrow {
  background: var(--primary-black);
}

.news__caption {
  margin-top: 0.8rem;
  margin-bottom: 1.6rem;
  display: block;
  font-weight: 700;
  font-size: 1.125em;
}

.news__data {
  color: var(--functional-black-txt-60);
  font-size: 0.875em;
}

.news__image {
  width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("/icon/image-mask.svg");
  mask-image: url("/icon/image-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.news__arrow {
  width: clamp(56px, 20%, 76px);
  height: clamp(56px, 40%, 76px);
  background: var(--primary-blue);
  border-radius: 14px;
  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;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.project {
  margin: 6.8rem 0;
}

.project__title {
  margin-bottom: 3.6rem;
}

.project__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(18, 4px);
  gap: 2.4rem;
}

.project__column {
  border-radius: 20px;
  padding: 3rem 3.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  grid-row: span 18;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
}

.project__column:nth-of-type(3) {
  grid-column: 3/3;
  grid-row: 1/14;
}

.project__more {
  grid-column: 3/4;
  grid-row: 14/19;
  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;
  font-size: 1.5em;
}

.products-list {
  margin: 6.8rem 0;
}

.products-list__title {
  margin-bottom: 3.6rem;
}

.products-list__header {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 20px;
  width: 100%;
  height: 216px;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.products-list__pic {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}

.products-list__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

.products-list__tag {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
}

.products-list__tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.products-list__tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.products-list__tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.products-list__footer {
  margin-top: 2.4rem;
  display: block;
  min-height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.products-list__caption {
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-list__price-block {
  margin-top: 3.2rem;
  display: block;
}

.products-list__current-price {
  font-weight: 700;
  font-size: 1.5em;
}

.products-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 0.8rem;
}

.products-list__old-price {
  color: var(--functional-black-surface-40);
  font-size: 1.125em;
}

.products-list__discount {
  font-size: 0.875em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.8rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.products-list__favor {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.products-list .slick-slide {
  margin: 0 12px;
}

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

.special {
  margin: 6.8rem 0;
}

.special__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
  padding-inline: 6rem;
  background: linear-gradient(179deg, #59419a 0%, #734fa0 100%);
  position: relative;
  height: 140px;
  border-radius: 20px;
  z-index: 1;
}

.special__title {
  color: var(--primary-white);
  text-transform: uppercase;
}

.special__arrow {
  width: clamp(56px, 20%, 72px);
  height: clamp(56px, 52%, 72px);
  background: var(--primary-white);
  border-radius: 14px;
  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;
}

.special__pic {
  width: 288px;
  height: 100%;
  position: absolute;
  left: 60%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
}

.complex {
  margin: 6.8rem 0;
}

.complex__title {
  margin-bottom: 3.6rem;
}

.complex__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 228px);
  gap: 2.4rem;
}

.complex__column {
  border-radius: 20px;
  background: var(--functional-blue-surface-10);
  padding: 3rem 3.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.complex__column:first-of-type {
  grid-row: span 2;
}

.complex__column:last-of-type {
  grid-column: 3/5;
}

.reviews {
  margin: 6.8rem 0;
}

.reviews__header {
  margin-bottom: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__slide {
  max-width: 900px;
  background: var(--functional-blue-surface-20);
  border-radius: 12px;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 3.4rem;
}

.reviews__info {
  line-height: 167%;
  color: var(--functional-black-txt-100);
  font-size: 1.125em;
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.reviews__info p {
  margin-bottom: 2rem;
}

.reviews__info p:last-of-type {
  margin-bottom: 0;
}

.reviews__picture {
  position: relative;
  max-width: 435px;
  max-height: 410px;
}

.reviews__pic {
  border-radius: 12px;
  vertical-align: middle;
}

.reviews__caption {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  width: calc(100% - 4.8rem);
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.reviews__caption strong {
  font-weight: 700;
  font-size: 1.125em;
  color: var(--functional-black-txt-100);
}

.reviews__caption p {
  font-size: 0.875em;
  margin-top: 0.8rem;
  color: var(--functional-black-txt-60);
}

.reviews .slick-slide {
  margin: 0 20px;
}

.reviews .slick-dots {
  max-width: 900px;
  bottom: -30px;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 12px;
  background: var(--functional-blue-surface-20);
  height: 4px;
  gap: 0;
}

.reviews .slick-dots li {
  margin-bottom: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.reviews .slick-dots button {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.map {
  margin: 6rem 0;
}

.map__inner {
  position: relative;
}

.map__title {
  position: absolute;
  left: 8rem;
  top: 3rem;
}

.map__wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
}

.map__preview {
  position: relative;
}

.map__pic {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.map__load {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 2;
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 2, 51, 0.78);
  color: var(--primary-white);
  font-size: 0.875em;
  cursor: pointer;
}

.map__frame {
  width: 100%;
  min-height: 540px;
}

.map__object {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.nav-group-slider {
  margin-bottom: 7rem;
}

.nav-group-slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  background: var(--functional-blue-surface-10);
  min-height: 267px;
}

.nav-group-slider__slide_mod {
  background: var(--functional-blue-txt-100);
  color: var(--primary-white);
}

.nav-group-slider__pic {
  max-width: 100%;
}

.nav-group-slider .slick-slide {
  margin: 0 10px;
}

.popular {
  margin: 6rem 0;
}

.popular__title {
  margin-bottom: 5rem;
}

.popular__slider .slick-slide {
  margin: 0 10px;
}

.popular__slider .slick-arrow {
  top: 42%;
}

.popular__picture {
  width: 100%;
  height: 216px;
  border-radius: 20px;
  background: var(--functional-blue-surface-10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.popular__pic {
  max-width: 100%;
  vertical-align: middle;
}

.popular__caption {
  margin-top: 2.4rem;
  color: var(--functional-black-txt-100);
  text-align: center;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.popup__close {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  z-index: 99;
}

.popup__close rect,
.popup__close path {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.popup__close:hover rect {
  fill: var(--functional-blue-surface-20);
}

.popup__close:hover path {
  fill: var(--primary-blue);
}

.popup__wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
}

.popup__container {
  width: 85%;
  border-radius: 20px;
  background: var(--primary-white);
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
}

.popup__container_mini {
  max-width: 545px;
}

.popup__container_mini_notice {
  max-width: 630px;
  padding: 4rem 4.8rem;
  text-align: center;
}

.popup__container_middle {
  max-width: 740px;
}

.popup__container_large {
  max-width: 960px;
}

.popup__container_delivery {
  padding: 1.6rem;
}

.popup__container_filter {
  padding: 0;
  max-width: 1020px;
}

.popup__container_basket-delivery {
  padding: 0;
  max-width: 1540px;
}

.popup__container_catalog {
  width: min(100% - 3.2rem, 590px);
  padding: 3.2rem;
  border-radius: 16px;
}

.popup__title {
  margin-bottom: 2.4rem;
}

.popup__txt {
  color: var(--functional-black-txt-100);
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.popup__notice-txt {
  color: var(--functional-black-txt-100);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 3.2rem;
  font-size: 1.125em;
}

.popup__notice-btn {
  display: inline-block;
  min-width: 280px;
  max-width: 356px;
  width: 100%;
}

.popup__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}

.popup__captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}

.popup__field {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.popup__check_mod {
  font-size: 1em;
  margin-top: 1.4rem;
}

.popup__note {
  font-size: 0.75em;
  color: var(--functional-black-txt-60);
  margin-top: 1.8rem;
}

.popup__btn-box {
  text-align: right;
  padding: 2.4rem 3.2rem 0;
  margin: 2.4rem -3.2rem 0;
  border-top: 2px solid #ededed;
}

.popup__req {
  padding-top: 1.8rem;
  color: var(--functional-black-txt-60);
  font-size: 0.75em;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.popup__buyer-check {
  position: relative;
  top: 3px;
}

.popup__buyer-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  max-height: 360px;
}

.popup__buyer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.popup__buyer-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
}

.popup__buyer-name {
  font-weight: 700;
  color: var(--functional-black-txt-100);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.popup__buyer-meta {
  color: var(--functional-black-txt-100);
  font-size: 0.75em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup__buyer-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.popup__buyer-btn {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 5px;
}

.popup__buyer-btn svg {
  vertical-align: middle;
}

.popup__buyer-btn path {
  fill: var(--functional-blue-surface-40);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.popup__buyer-btn:hover path {
  fill: var(--primary-blue);
}

.popup__buyer-btn_remove {
  background: var(--functional-blue-surface-10);
}

.popup__buyer-new {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 0.875em;
}

.popup__buyer-new:hover {
  text-decoration: underline;
}

.popup__buyer-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}

.popup__buyer-actions .popup__cancel,
.popup__buyer-actions .popup__confirm {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.popup .order-address {
  margin-bottom: 2rem;
}

.popup .order-address__map {
  display: block;
  height: 190px;
  margin-bottom: 2rem;
}

.popup-catalog {
  color: var(--functional-black-txt-100);
}

.popup-catalog__title {
  margin-bottom: 1.8rem;
  font-weight: 700;
  font-size: 1.25em;
}

.popup-catalog__form {
  display: block;
}

.popup-catalog__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.popup-catalog__option,
.popup-catalog__category {
  display: block;
}

.popup-catalog__option .checkbox__txt,
.popup-catalog__category .checkbox__txt {
  padding-left: 2.2rem;
  font-size: 0.875em;
}

.popup-catalog__option .checkbox__txt:before,
.popup-catalog__category .checkbox__txt:before {
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-color: var(--functional-blue-surface-40);
}

.popup-catalog__option .checkbox__txt:after,
.popup-catalog__category .checkbox__txt:after {
  top: 0.3rem;
  left: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
}

.popup-catalog__field {
  margin-bottom: 1.4rem;
  padding: 1.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875em;
}

.popup-catalog__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.popup-catalog__caption {
  margin: 0.4rem 0 1rem;
  font-weight: 700;
  font-size: 1em;
}

.popup-catalog__category {
  margin-bottom: 0.8rem;
}

.popup-catalog__submit {
  min-width: 22rem;
  margin-top: 1.2rem;
  padding: 1.8rem 2.8rem;
  border-radius: 10px;
  font-size: 0.875em;
}

.popup-catalog__agree {
  display: block;
  max-width: 43rem;
  margin-top: 1.8rem;
}

.popup-catalog__agree .checkbox__txt {
  padding-left: 2.2rem;
  color: var(--functional-black-txt-60);
  line-height: 1.25;
  font-size: 0.75em;
}

.popup-catalog__agree .checkbox__txt:before {
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
}

.popup-catalog__agree .checkbox__txt:after {
  top: 0.3rem;
  left: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
}

.popup-delivery__caption {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.popup-delivery__tag {
  font-size: 1em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
  background: var(--functional-blue-surface-20);
}

.popup-delivery__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 1.6rem;
  line-height: 140%;
}

.popup-delivery__addr {
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.popup-delivery__time {
  color: var(--functional-black-txt-60);
}

.popup-delivery__phone {
  margin-top: 1.4rem;
  color: var(--functional-black-txt-60);
}

.popup-delivery__phone a {
  color: var(--primary-black);
}

.popup-delivery__phone a:hover {
  color: var(--primary-blue);
}

.popup-delivery__map iframe {
  border-radius: 8px;
}

.filter-full__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3.2rem 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 2rem;
}

.filter-full__search-input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  max-width: 665px;
}

.filter-full__search-input input {
  border: 2px solid var(--functional-blue-surface-20);
  border-radius: 12px;
  width: 100%;
  padding: 1.7rem 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primary-black);
  font-size: 1em;
}

.filter-full__search-input input::-webkit-input-placeholder {
  color: var(--functional-black-surface-40);
}

.filter-full__search-input input::-moz-placeholder {
  color: var(--functional-black-surface-40);
}

.filter-full__search-input input:-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.filter-full__search-input input::-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.filter-full__search-input input::placeholder {
  color: var(--functional-black-surface-40);
}

.filter-full__search-input button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath fill='%233d4095' fill-rule='evenodd' d='M22.5 7.913c-4.1-4.1-10.748-4.1-14.848 0s-4.101 10.749 0 14.85c3.74 3.74 9.6 4.068 13.713.985l7.5 7.5a1.5 1.5 0 0 0 2.121-2.122l-7.5-7.5c3.083-4.112 2.755-9.973-.985-13.713m-2.12 2.121A7.5 7.5 0 1 1 9.77 20.642 7.5 7.5 0 0 1 20.38 10.035' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center var(--functional-blue-surface-10);
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  width: 68px;
  border-radius: 9px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.filter-full__search-input button:hover {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath fill='%233d4095' fill-rule='evenodd' d='M22.5 7.913c-4.1-4.1-10.748-4.1-14.848 0s-4.101 10.749 0 14.85c3.74 3.74 9.6 4.068 13.713.985l7.5 7.5a1.5 1.5 0 0 0 2.121-2.122l-7.5-7.5c3.083-4.112 2.755-9.973-.985-13.713m-2.12 2.121A7.5 7.5 0 1 1 9.77 20.642 7.5 7.5 0 0 1 20.38 10.035' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center var(--functional-blue-surface-20);
}

.filter-full__middle {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 1.8rem;
  background: var(--functional-blue-surface-10);
  padding: 1.4rem 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 680px;
  min-height: 400px;
  overflow: auto;
}

.filter-full__left {
  border: 1px solid #ededed;
  border-radius: 20px;
  background: var(--primary-white);
  padding-inline: 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.filter-full__box {
  margin: 2.4rem 0;
}

.filter-full__title {
  font-weight: 700;
  font-size: 0.875em;
}

.filter-full__range {
  background: var(--functional-blue-surface-20);
  height: 2px;
  position: relative;
  width: calc(100% - 7px);
}

.filter-full__range-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.filter-full__range-box {
  margin-top: 1.6rem;
}

.filter-full__field {
  border: 1px solid var(--functional-blue-surface-20);
  border-radius: 4px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1em;
}

.filter-full .ui-slider-horizontal .ui-slider-range {
  background: var(--functional-black-txt-80);
  top: 0;
  height: 100%;
  position: absolute;
}

.filter-full .ui-slider-horizontal .ui-slider-handle {
  background: var(--functional-black-txt-80);
  top: -7px;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  display: block;
  position: absolute;
}

.filter-full__label {
  display: block;
  margin-top: 1rem;
}

.filter-full__hidden {
  display: none;
}

.filter-full__hidden:checked + .filter-container__toggle {
  background: var(--primary-blue);
}

.filter-full__hidden:checked + .filter-container__toggle:before {
  left: calc(100% - 26px);
}

.filter-full__hidden:checked + .filter-container__check-discount:before {
  background: var(--primary-blue);
}

.filter-full__toggle-row {
  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;
}

.filter-full__toggle {
  width: 44px;
  height: 28px;
  border-radius: 100px;
  background: var(--functional-blue-surface-20);
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.filter-full__toggle:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: var(--primary-white);
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: block;
}

.filter-full__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
  position: relative;
}

.filter-full__labels:before {
  content: "";
  width: calc(100% - 14px);
  height: 1px;
  background: var(--functional-blue-surface-20);
  position: absolute;
  top: 16px;
  left: 7px;
  display: block;
}

.filter-full__check-discount {
  padding-top: 20px;
  position: relative;
  display: block;
  font-size: 0.75em;
  text-align: center;
  min-width: 22px;
  cursor: pointer;
}

.filter-full__check-discount:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: var(--functional-blue-surface-20);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.filter-full__container {
  border: 1px solid #ededed;
  border-radius: 20px;
  padding: 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.8rem;
  background: var(--primary-white);
}

.filter-full__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-height: 52px;
  overflow: hidden;
}

.filter-full__grid.open {
  max-height: 100%;
}

.filter-full__more {
  color: var(--functional-black-txt-100);
  font-size: 0.875em;
  margin-top: 1.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.filter-full__more.open svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-full__top {
  position: relative;
  font-size: 0.875em;
  font-weight: 700;
  cursor: pointer;
}

.filter-full__top:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23000233' d='M13.75 4.795a1 1 0 0 1 0 1.418l-4.996 4.992a1 1 0 0 1-1.418 0L2.34 6.213a1 1 0 0 1 0-1.418 1 1 0 0 1 1.42 0l4.285 4.293 4.286-4.293a1 1 0 0 1 1.418 0'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.5a ease;
  transition: 0.5a ease;
}

.filter-full__top.open:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-full__bottom {
  margin-top: 1.8rem;
  display: none;
}

.filter-full__footer {
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1.8rem;
  border-top: 2px solid #ededed;
}

.popup-basket-delivery {
  display: grid;
  grid-template-columns: 424px 1fr;
  background: var(--functional-blue-surface-5);
  border-radius: 20px;
  color: var(--functional-black-txt-100);
}

.popup-basket-delivery__map {
  max-height: 752px;
}

.popup-basket-delivery__map iframe {
  border-radius: 0 20px 20px 0;
}

.popup-basket-delivery__search {
  padding: 1.6rem;
  border-radius: 20px;
  background: var(--primary-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.popup-basket-delivery__title {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: 1.6rem;
}

.popup-basket-delivery__caption {
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.popup-basket-delivery__geo {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23000233' d='M18.75 12a6.75 6.75 0 1 0-13.5 0 6.75 6.75 0 0 0 13.5 0m1.5 0a8.25 8.25 0 1 1-16.5 0 8.25 8.25 0 0 1 16.5 0'/%3E%3Cpath fill='%23000233' d='M14.25 12a2.25 2.25 0 1 0-4.5 0 2.25 2.25 0 0 0 4.5 0m1.5 0a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0M11.25 4V2a.75.75 0 0 1 1.5 0v2a.75.75 0 0 1-1.5 0M4 11.25a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1 0-1.5zM11.25 22v-2a.75.75 0 0 1 1.5 0v2a.75.75 0 0 1-1.5 0M22 11.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5z'/%3E%3C/svg%3E") no-repeat left center;
  padding: 0.4rem 0 0.4rem 3rem;
  font-size: 0.875em;
  margin-top: 1.6rem;
}

.popup-basket-delivery__list {
  border-radius: 20px;
  background: var(--primary-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 540px;
  overflow: auto;
}

.popup-basket-delivery__item {
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #f5f5f6;
}

.popup-basket-delivery__item:last-of-type {
  border-bottom: 0;
}

.popup-basket-delivery__addr {
  font-weight: 700;
  font-size: 0.875em;
  margin-bottom: 1.4rem;
}

.popup-basket-delivery__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.popup-basket-delivery__date {
  font-size: 0.875em;
}

.search-address {
  position: relative;
}

.search-address__field {
  border: 2px solid var(--functional-blue-surface-20);
  border-radius: 12px;
  padding: 1.6rem 1.2rem;
  width: 100%;
  font-size: 1em;
}

.search-address__field::-webkit-input-placeholder {
  color: var(--functional-black-surface-40);
}

.search-address__field::-moz-placeholder {
  color: var(--functional-black-surface-40);
}

.search-address__field:-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.search-address__field::-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.search-address__field::placeholder {
  color: var(--functional-black-surface-40);
}

.search-address__field:focus {
  border-color: var(--primary-blue);
}

.search-address__field:focus + .search-address__result {
  display: block;
}

.search-address__result {
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 2, 51, 0.2);
  border-radius: 20px;
  background: var(--primary-white);
  max-height: 476px;
  overflow: auto;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
}

.search-address__label {
  line-height: 140%;
  color: var(--functional-black-txt-100);
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid var(--functional-blue-surface-20);
  display: block;
}

.search-address__label:last-of-type {
  border-bottom: 0;
}

.product {
  padding-block: 3rem 8rem;
}

.product__header {
  display: grid;
  grid-template-columns: min(29%, 400px) 1fr min(35%, 494px);
  gap: 3.7rem;
}

.product__preview,
.product__desc {
  position: relative;
  padding-bottom: 3rem;
}

.product__tabs {
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.product__tab {
  color: var(--functional-black-txt-60);
  padding-bottom: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product__tab[aria-selected=true] {
  border-bottom-color: var(--primary-black);
  font-weight: 700;
  color: var(--primary-black);
}

.product__more-mobile {
  color: var(--functional-black-surface-40);
  font-size: 0.875em;
  font-weight: 700;
  margin: 1rem 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  display: none;
}

.product__mobile-bar {
  display: none;
}

.product__mobile-add {
  width: 100%;
  text-align: center;
}

.product .hide-mobile.open {
  height: auto;
}

.product .hide-mobile.open + .product__more-mobile svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product-slider {
  position: sticky;
  top: 20px;
}

.product-slider__for {
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 20px;
}

.product-slider__pic {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-slider__nav {
  margin-top: 2rem;
}

.product-slider__nav .slick-slide {
  width: 54px;
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 3px;
  margin-right: 0.5rem;
}

.product-slider__slide .product-slider__pic {
  border-radius: 20px;
  max-height: 398px;
}

.product-slider__thumb .product-slider__pic {
  border-radius: 3px;
  max-height: 54px;
}

.product-slider__wrapper {
  position: relative;
}

.product-slider__favor-mobile {
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-blue-surface-10);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
}

.product-features {
  position: sticky;
  top: 20px;
}

.product-features__header {
  margin-bottom: 1.6rem;
  position: relative;
}

.product-features__title {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-features__title.open {
  display: block;
}

.product-features__title-more {
  display: none;
  position: absolute;
  bottom: 30px;
  right: 0;
  color: var(--functional-black-surface-40);
  font-weight: 700;
  cursor: pointer;
}

.product-features__title-more.is-visible {
  display: block;
}

.product-features__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.product-features__tag {
  font-size: 0.875em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
}

.product-features__tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.product-features__tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.product-features__tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.product-features__table {
  min-height: 100px;
}

.product-features__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.8rem;
  padding-block: 1.2rem 1.1rem;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  line-height: 140%;
}

.product-features__label {
  color: var(--functional-black-surface-40);
}

.product-features__more-info {
  background: url("data:image/svg+xml,%3Csvg width='10' height='20' viewBox='0 0 10 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.32538 5.24162C2.40285 5.16351 2.49501 5.10151 2.59656 5.05921C2.69811 5.0169 2.80703 4.99512 2.91704 4.99512C3.02705 4.99512 3.13597 5.0169 3.23752 5.05921C3.33907 5.10151 3.43124 5.16351 3.50871 5.24162L7.67538 9.40828C7.75348 9.48575 7.81548 9.57792 7.85779 9.67947C7.90009 9.78102 7.92188 9.88994 7.92188 9.99995C7.92188 10.11 7.90009 10.2189 7.85779 10.3204C7.81548 10.422 7.75348 10.5141 7.67538 10.5916L3.50871 14.7583C3.43124 14.8364 3.33907 14.8984 3.23752 14.9407C3.13597 14.983 3.02705 15.0048 2.91704 15.0048C2.80703 15.0048 2.69811 14.983 2.59656 14.9407C2.49501 14.8984 2.40285 14.8364 2.32538 14.7583C2.24727 14.6808 2.18527 14.5886 2.14297 14.4871C2.10066 14.3855 2.07888 14.2766 2.07888 14.1666C2.07888 14.0566 2.10066 13.9477 2.14297 13.8461C2.18527 13.7446 2.24727 13.6524 2.32538 13.5749L5.90871 9.99995L2.32538 6.42495C2.24727 6.34748 2.18527 6.25531 2.14297 6.15376C2.10066 6.05221 2.07888 5.94329 2.07888 5.83328C2.07888 5.72327 2.10066 5.61435 2.14297 5.5128C2.18527 5.41125 2.24727 5.31908 2.32538 5.24162Z' fill='%23000233'/%3E%3C/svg%3E%0A") no-repeat 94% center var(--functional-blue-surface-10);
  margin-top: 1.2rem;
  border-radius: 6px;
  padding: 0.6rem 2.4rem 0.6rem 0.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.875em;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-features__more-info:hover {
  background: url("data:image/svg+xml,%3Csvg width='10' height='20' viewBox='0 0 10 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.32538 5.24162C2.40285 5.16351 2.49501 5.10151 2.59656 5.05921C2.69811 5.0169 2.80703 4.99512 2.91704 4.99512C3.02705 4.99512 3.13597 5.0169 3.23752 5.05921C3.33907 5.10151 3.43124 5.16351 3.50871 5.24162L7.67538 9.40828C7.75348 9.48575 7.81548 9.57792 7.85779 9.67947C7.90009 9.78102 7.92188 9.88994 7.92188 9.99995C7.92188 10.11 7.90009 10.2189 7.85779 10.3204C7.81548 10.422 7.75348 10.5141 7.67538 10.5916L3.50871 14.7583C3.43124 14.8364 3.33907 14.8984 3.23752 14.9407C3.13597 14.983 3.02705 15.0048 2.91704 15.0048C2.80703 15.0048 2.69811 14.983 2.59656 14.9407C2.49501 14.8984 2.40285 14.8364 2.32538 14.7583C2.24727 14.6808 2.18527 14.5886 2.14297 14.4871C2.10066 14.3855 2.07888 14.2766 2.07888 14.1666C2.07888 14.0566 2.10066 13.9477 2.14297 13.8461C2.18527 13.7446 2.24727 13.6524 2.32538 13.5749L5.90871 9.99995L2.32538 6.42495C2.24727 6.34748 2.18527 6.25531 2.14297 6.15376C2.10066 6.05221 2.07888 5.94329 2.07888 5.83328C2.07888 5.72327 2.10066 5.61435 2.14297 5.5128C2.18527 5.41125 2.24727 5.31908 2.32538 5.24162Z' fill='%23000233'/%3E%3C/svg%3E%0A") no-repeat 94% center var(--functional-blue-surface-20);
}

.product-features__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-features__size {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}

.product-features__size-caption {
  font-size: 1em;
  color: var(--functional-black-surface-40);
  margin-bottom: 1.2rem;
}

.product-features__size-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem 0.8rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-features__hidden {
  display: none;
}

.product-features__hidden:checked + .product-features__txt {
  background: var(--primary-blue);
  color: var(--primary-white);
}

.product-features__txt {
  font-size: 0.875em;
  background: var(--functional-black-surface-10);
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: var(--functional-black-txt-100);
  display: inline-block;
}

.product-features__txt:hover {
  background: var(--functional-black-surface-20);
}

.product-features .price-block {
  display: none;
}

.product-features .product-full,
.product-features .product-prepay {
  display: none;
}

.product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 2.4rem;
}

.product-price__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}

.product-price__sign {
  font-size: 0.875em;
}

.product-price__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.product-price__btn path {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-price__btn[href]:hover {
  color: var(--functional-blue-surface-40);
}

.product-price__btn[href]:hover .fill {
  fill: var(--functional-blue-surface-40);
}

.product-price__btn[href]:hover .stroke {
  stroke: var(--functional-blue-surface-40);
}

.product-price__info {
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 24px 0 rgba(204, 204, 214, 0.4);
  box-shadow: 0 8px 24px 0 rgba(204, 204, 214, 0.4);
  background: var(--primary-white);
  padding: 2.4rem 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.product-price__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}

.product-price__add-card {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.product-price__call {
  margin-top: 1.3rem;
}

.product-price__favor {
  border-radius: 12px;
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-blue-surface-10);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-price__favor:hover {
  background: var(--functional-blue-surface-20);
}

.product-price__consultation {
  border-radius: 20px;
  padding: 2.4rem 3.2rem;
  background: var(--functional-blue-surface-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.product-price__consultation:after {
  background: url(../img/product-info.png) no-repeat center/contain;
  content: "";
  width: 176px;
  height: 160px;
  position: absolute;
  right: 3.5rem;
  bottom: 0;
}

.product-price__title {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: 1.3rem;
}

.product-price__tooltip {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  cursor: pointer;
}

.product-price__delivery {
  border-radius: 20px;
  padding: 2.4rem 3.2rem;
  background: var(--functional-blue-surface-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.product-price__delivery-item {
  padding-block: 1.2rem 1.1rem;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  position: relative;
  padding-right: 2rem;
  display: block;
}

.product-price__delivery-item:last-child {
  border-bottom: 0;
}

.product-price__delivery-item_arrow:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='20' fill='none' viewBox='0 0 10 20'%3E%3Cpath fill='%23666785' d='M2.325 5.242a.833.833 0 0 1 1.184 0l4.166 4.166a.834.834 0 0 1 0 1.184L3.51 14.758a.833.833 0 0 1-1.184 0 .834.834 0 0 1 0-1.183L5.91 10 2.325 6.425a.833.833 0 0 1 0-1.183'/%3E%3C/svg%3E") no-repeat center/contain;
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-price__delivery-item strong {
  font-weight: 500;
  color: var(--functional-black-txt-100);
}

.product-price__delivery-item p {
  color: var(--functional-black-txt-60);
  font-size: 0.875em;
  margin-top: 0.6rem;
}

.product-price .product-prepay {
  margin-bottom: 1.2rem;
}

.product-full {
  font-weight: 700;
  font-size: 32px;
}

.product-prepay {
  margin-top: 0.4rem;
  font-weight: 700;
  color: var(--primary-black);
  font-size: 18px;
}

.product-prepay-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6rem;
  font-weight: 400;
  border-radius: 24px;
  padding: 0.4rem 0.8rem;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
  font-size: 14px;
}

.price-block {
  margin-bottom: 1.6rem;
}

.price-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}

.price-block__old-price {
  color: var(--functional-black-surface-40);
  font-size: 1.125em;
}

.price-block__discount {
  font-size: 1.125em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.8rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.price-block__current-price {
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 1.3rem;
}

.product-info {
  padding-top: 5rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
}

.product-info__left {
  position: relative;
}

.product-info__sticky {
  position: sticky;
  top: 2rem;
}

.product-info__title {
  margin-bottom: 1.5rem;
}

.product-specification {
  max-width: 750px;
}

.product-specification__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  border-bottom: 1px solid var(--functional-blue-surface-20);
  padding-block: 1.2rem;
}

.product-specification__spec-label {
  color: var(--functional-black-surface-40);
}

.product-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 0.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.product-tags__tag {
  font-size: 1em;
  padding: 0.4rem 0.8rem 0.6rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
  background: var(--functional-blue-surface-10);
}

.product-description {
  max-width: 750px;
}

.product-description__text {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-description__text p {
  margin-bottom: 3rem;
}

.product-description__image-row {
  margin-bottom: 3rem;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.product-description__image-table {
  margin-bottom: 3rem;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.product-description__image-col {
  grid-column: span 2;
}

.product-description__image-col:first-of-type,
.product-description__image-col:nth-of-type(2) {
  grid-column: span 3;
}

.product-description__image-cell {
  -webkit-box-flex: 33.33%;
  -ms-flex: 33.33% 1 1;
  flex: 33.33% 1 1;
}

.product-description__image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.product-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1006px;
  margin: 5rem auto;
  gap: 2.8rem;
}

.product-services__column {
  border-radius: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 3.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.product-services__title {
  margin-bottom: 1.5rem;
}

.product-services__list {
  list-style: disc;
  padding-left: 2rem;
  font-size: 0.875em;
}

.product-services__item {
  margin-bottom: 2rem;
}

.product-docs {
  margin-top: 5rem;
  max-width: 1338px;
}

.product-docs__section {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 5rem;
  grid-template-columns: 310px 1fr;
}

.product-docs__section:last-of-type {
  margin-bottom: 0;
}

.product-docs__list {
  max-width: 85%;
}

.product-docs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875em;
  margin-bottom: 2.4rem;
}

.product-docs__item:last-of-type {
  margin-bottom: 0;
}

.product-docs__size {
  color: var(--functional-black-surface-40);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.product-video {
  max-width: 750px;
}

.product-video__slide {
  position: relative;
}

.product-video__slide[href] {
  width: 100%;
  height: 422px;
  border-radius: 20px;
}

.product-video__slide:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none' viewBox='0 0 56 56'%3E%3Crect width='56' height='56' fill='%233d4095' rx='28'/%3E%3Cpath fill='%23fff' d='M20.54 27.978V24.22c0-4.68 3.308-6.592 7.358-4.252l3.262 1.89 3.262 1.89c4.05 2.34 4.05 6.165 0 8.504l-3.262 1.89-3.262 1.89c-4.05 2.34-7.358.428-7.358-4.252z'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-video__pic {
  width: 100%;
}

.product-video__nav {
  margin-top: 3rem;
}

.product-video .slick-slide {
  width: 238px;
  margin: 0 10px;
}

.page_shop_id .f-panzoom__viewport > .f-panzoom__content {
  border-radius: 20px;
}

.project-list {
  margin: 2rem 0;
}

.project-list__title {
  margin-bottom: 5rem;
}

.project-list__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.project-list__item {
  background: var(--functional-blue-surface-5);
  border-radius: 20px;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--functional-black-txt-100);
}

.project-list__pic {
  border-radius: 8px;
  height: 240px;
  vertical-align: middle;
  margin-bottom: 1rem;
  width: 100%;
}

.project-list__txt {
  margin-top: 1rem;
  font-size: 0.875em;
}

.project-list__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.project-list__control .pagination {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.project-list__header {
  margin-bottom: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.project-single {
  margin-bottom: 4.8rem;
}

.project-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.2rem;
}

.project-single__title {
  margin-bottom: 0;
}

.project-single__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.project-single__nav-btn {
  display: block;
  line-height: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.project-single__nav-btn rect {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.project-single__nav-btn:hover {
  opacity: 0.85;
}

.project-single__gallery-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.project-single__product-wrap {
  margin-bottom: 4rem;
}

.project-single__product-slider {
  margin: 0 -1.2rem;
}

.project-single__product-slider .slick-list {
  overflow: hidden;
}

.project-single__product-slider .slick-slide {
  padding: 0 1.2rem;
}

.project-single__card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.project-single__card:hover {
  opacity: 0.92;
}

.project-single__pic {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  display: block;
}

.project-single__card {
  height: 360px;
}

.project-single__section {
  margin-bottom: 4rem;
}

.project-single__txt {
  font-size: 1em;
  line-height: 1.5;
  color: var(--functional-black-txt-100);
}

.project-single__txt:not(:last-child) {
  margin-bottom: 2.4rem;
}

.project-single__video {
  margin-bottom: 4rem;
}

.project-single__link {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
  height: 720px;
}

.project-single__link:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none' viewBox='0 0 56 56'%3E%3Crect width='56' height='56' fill='%233d4095' rx='28'/%3E%3Cpath fill='%23fff' d='M20.54 27.978V24.22c0-4.68 3.308-6.592 7.358-4.252l3.262 1.89 3.262 1.89c4.05 2.34 4.05 6.165 0 8.504l-3.262 1.89-3.262 1.89c-4.05 2.34-7.358.428-7.358-4.252z'/%3E%3C/svg%3E") no-repeat center;
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project-single__video .project-single__pic {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.project-single__row {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-single__row_no-balance {
  grid-template-columns: 40% 60%;
}

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

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

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

.project-single__media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 240px;
}

.project-single__media:hover {
  opacity: 0.92;
}

.project-single__pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.f-panzoom__viewport > .f-panzoom__content {
  border-radius: 20px 20px 0 0;
}

.fancybox-project-product .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-project-product .fancybox__container {
  overflow: visible;
}

.fancybox-project-product .fancybox__carousel {
  overflow: visible;
}

.fancybox-project-product .fancybox__carousel.has-arrows {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.4rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  row-gap: 2.4rem;
}

.fancybox-project-product .fancybox__viewport {
  overflow: visible !important;
  grid-column: 1/-1;
  grid-row: 1;
}

.fancybox-project-product .f-button {
  background: none;
  color: var(--primary-white);
}

.fancybox-project-product .f-button.is-arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(0, 2, 51, 0.55);
  color: var(--primary-white);
  grid-row: 2;
}

.fancybox-project-product .f-button.is-arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}

.fancybox-project-product .f-button.is-arrow:hover {
  background: rgba(0, 2, 51, 0.75);
}

.fancybox-project-product .f-button.is-arrow.is-prev {
  grid-column: 2;
  justify-self: end;
}

.fancybox-project-product .f-button.is-arrow.is-next {
  grid-column: 3;
  justify-self: start;
}

.fancybox-project-product .fancybox__slide .is-close-button {
  position: absolute;
  top: 10.6rem;
  right: 1.6rem;
  z-index: 3;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: none;
}

.fancybox-project-product .fancybox__slide {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-top: 40px;
}

.fancybox-project-product .fancybox__slide[inert] {
  opacity: 0.35;
  pointer-events: none;
}

.fancybox-project-product .fancybox__slide[inert] .fancybox__caption,
.fancybox-project-product .fancybox__slide[inert] .is-close-button {
  display: none;
}

.fancybox-project-product .fancybox__content {
  border-radius: 0;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
}

.fancybox-project-product .fancybox__content .f-panzoom__content {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 520px);
  -o-object-fit: cover;
  object-fit: cover;
}

.fancybox-project-product .f-caption {
  padding: 0;
  background: var(--primary-white);
  border-radius: 0 0 20px 20px;
}

.fancybox-project-product .fancybox__caption {
  padding: 0;
  background: var(--primary-white);
  text-align: left;
}

.project-product-fb {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 360px);
  gap: 2.4rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.project-product-fb__desc {
  font-size: 1em;
  line-height: 1.5;
  color: var(--functional-black-txt-100);
  margin: 0;
}

.project-product-fb__product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 24px;
  gap: 1.2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  color: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.project-product-fb__product:hover {
  opacity: 0.85;
}

.project-product-fb__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-product-fb__info {
  display: block;
}

.project-product-fb__title {
  display: block;
  font-weight: 700;
  font-size: 0.75em;
  color: var(--functional-black-txt-100);
  margin-bottom: 0.8rem;
}

.project-product-fb__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.project-product-fb__tag {
  font-size: 0.4375em;
  padding: 0.2rem 0.5rem 0.3rem;
  color: var(--functional-black-txt-80);
  border-radius: 6px;
}

.project-product-fb__tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.project-product-fb__tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.project-product-fb__tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.project-product-fb__price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.625em;
}

.project-product-fb__old-price {
  color: var(--functional-black-surface-40);
  font-size: 0.8125em;
}

.project-product-fb__discount {
  font-size: 0.75em;
  color: var(--functional-black-txt-100);
  border-radius: 24px;
  padding: 0.3rem 0.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--functional-yellow-txt-80);
  line-height: 1;
}

.site-search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.site-search__form {
  position: relative;
}

.site-search.is-open .site-search__dropdown {
  display: block;
}

.site-search__field {
  border: 2px solid var(--primary-blue);
  border-radius: 12px;
  width: 100%;
  padding: 1.7rem 7.6rem 1.7rem 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primary-black);
  background: var(--primary-white);
  font-size: 1em;
}

.site-search__field::-webkit-input-placeholder {
  color: var(--functional-black-surface-40);
}

.site-search__field::-moz-placeholder {
  color: var(--functional-black-surface-40);
}

.site-search__field:-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.site-search__field::-ms-input-placeholder {
  color: var(--functional-black-surface-40);
}

.site-search__field::placeholder {
  color: var(--functional-black-surface-40);
}

.site-search__submit {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath fill='%233d4095' fill-rule='evenodd' d='M22.5 7.913c-4.1-4.1-10.748-4.1-14.848 0s-4.101 10.749 0 14.85c3.74 3.74 9.6 4.068 13.713.985l7.5 7.5a1.5 1.5 0 0 0 2.121-2.122l-7.5-7.5c3.083-4.112 2.755-9.973-.985-13.713m-2.12 2.121A7.5 7.5 0 1 1 9.77 20.642 7.5 7.5 0 0 1 20.38 10.035' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center var(--functional-blue-surface-10);
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  width: 68px;
  border-radius: 9px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  cursor: pointer;
}

.site-search__submit:hover {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath fill='%233d4095' fill-rule='evenodd' d='M22.5 7.913c-4.1-4.1-10.748-4.1-14.848 0s-4.101 10.749 0 14.85c3.74 3.74 9.6 4.068 13.713.985l7.5 7.5a1.5 1.5 0 0 0 2.121-2.122l-7.5-7.5c3.083-4.112 2.755-9.973-.985-13.713m-2.12 2.121A7.5 7.5 0 1 1 9.77 20.642 7.5 7.5 0 0 1 20.38 10.035' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center var(--functional-blue-surface-20);
}

.site-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1.2rem 2.4rem;
  border-radius: 12px;
  background: var(--primary-white);
  -webkit-box-shadow: 0 12px 40px rgba(0, 2, 51, 0.12);
  box-shadow: 0 12px 40px rgba(0, 2, 51, 0.12);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-search__panel_popular[hidden],
.site-search__panel_history[hidden],
.site-search__panel_results[hidden] {
  display: none !important;
}

.site-search__panel_popular {
  min-height: 700px;
}

.site-search__clear {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--primary-blue);
  font-weight: 500;
  cursor: pointer;
  font-size: 0.875em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.site-search__clear:hover {
  color: var(--functional-blue-txt-80);
}

.site-search__history-list {
  margin-bottom: 0;
}

.site-search__history-item {
  margin-bottom: 0;
}

.site-search__history-item:last-child {
  border-bottom: 0;
}

.site-search__history-link {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 0;
  color: var(--functional-black-txt-100);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.site-search__history-link:hover {
  color: var(--primary-blue);
}

.site-search__history-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-search__history-icon_search {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23000233' fill-rule='evenodd' d='M11.95 2.05a7 7 0 1 0-.76 10.555l5.002 5.002a1 1 0 0 0 1.415-1.415l-5.002-5.001a7 7 0 0 0-.655-9.14m-1.415 1.414a5 5 0 1 1-7.07 7.072 5 5 0 0 1 7.07-7.072' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/18px var(--functional-blue-surface-10);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
}

.site-search__history-icon_category {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--functional-blue-surface-5);
}

.site-search__history-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.site-search__history-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.35;
  font-size: 1em;
}

.site-search__title {
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--functional-black-txt-100);
  font-size: 1.5em;
}

.site-search__head {
  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;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.site-search__head .site-search__clear {
  margin-top: 0;
}

.site-search__panel_history .site-search__title {
  margin-bottom: 0;
}

.site-search__panel_results {
  max-height: min(72rem, 100vh - 18rem);
  overflow-y: auto;
}

.site-search__results {
  display: grid;
  grid-template-columns: minmax(22rem, 30rem) 1fr;
  gap: 2.4rem;
}

.site-search__suggest-list {
  margin-bottom: 0;
}

.site-search__suggest-item {
  margin-bottom: 0.4rem;
}

.site-search__suggest-link {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.8rem;
  color: var(--functional-black-txt-100);
  line-height: 1.25;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1em;
}

.site-search__suggest-link:hover {
  color: var(--primary-blue);
}

.site-search__icon {
  display: block;
  overflow: hidden;
  justify-self: center;
}

.site-search__icon_search {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23000233' fill-rule='evenodd' d='M11.95 2.05a7 7 0 1 0-.76 10.555l5.002 5.002a1 1 0 0 0 1.415-1.415l-5.002-5.001a7 7 0 0 0-.655-9.14m-1.415 1.414a5 5 0 1 1-7.07 7.072 5 5 0 0 1 7.07-7.072' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/18px var(--functional-blue-surface-10);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
}

.site-search__icon_category {
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  background: var(--functional-blue-surface-5);
}

.site-search__suggest-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.site-search__suggest-name {
  min-width: 0;
}

.site-search__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(14rem, 1fr));
  gap: 4.4rem 2rem;
}

.site-search__product {
  min-width: 0;
  color: var(--functional-black-txt-100);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.site-search__product:hover {
  color: var(--primary-blue);
}

.site-search__product-header {
  position: relative;
  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;
  height: 16rem;
  padding: 2rem 1.2rem;
  border: 1px solid var(--functional-black-surface-20);
  border-radius: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--primary-white);
  margin-bottom: 1rem;
}

.site-search__product-pic {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-search__product-tags {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-search__product-tag {
  padding: 0.3rem 0.6rem 0.4rem;
  border-radius: 4px;
  color: var(--functional-black-txt-80);
  line-height: 1;
  font-size: 0.6875em;
}

.site-search__product-tag:nth-of-type(3n + 1) {
  background: var(--functional-purple-surface-20);
}

.site-search__product-tag:nth-of-type(3n + 2) {
  background: var(--functional-pink-surface-20);
}

.site-search__product-tag:nth-of-type(3n + 3) {
  background: var(--functional-blue-surface-20);
}

.site-search__product-state {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  color: var(--functional-black-txt-80);
  line-height: 1;
  font-size: 0.6875em;
}

.site-search__product-state_hit {
  background: var(--functional-yellow-surface-20);
}

.site-search__product-state_sale {
  background: var(--functional-orange-surface-20);
}

.site-search__product-state_new {
  background: var(--functional-green-surface-20);
}

.site-search__product-favor {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  line-height: 0;
}

.site-search__product-favor svg {
  width: 1.8rem;
  height: auto;
}

.site-search__product-footer {
  margin-top: 1.6rem;
}

.site-search__product-caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 2.4rem;
  color: var(--functional-black-txt-100);
  line-height: 1.35;
  font-size: 0.875em;
}

.site-search__product-price-block {
  display: block;
}

.site-search__product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.site-search__product-old-price {
  color: var(--functional-black-surface-40);
  text-decoration: line-through;
  font-size: 0.875em;
}

.site-search__product-discount {
  padding: 0.5rem 0.8rem;
  border-radius: 24px;
  background: var(--functional-yellow-txt-80);
  color: var(--functional-black-txt-100);
  line-height: 1;
  font-size: 0.75em;
}

.site-search__product-current-price {
  font-weight: 700;
  color: var(--functional-black-txt-100);
  font-size: 1.25em;
}

.site-search__mobile-title {
  display: none;
}

.site-search__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 1.6rem;
  margin-bottom: 0;
}

.site-search__item {
  margin-bottom: 0;
}

.site-search__link {
  display: block;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
}

.site-search__link:hover {
  color: var(--functional-blue-txt-80);
}

.site-search__media {
  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;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: var(--functional-blue-surface-5);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.site-search__pic {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-search__name {
  display: block;
  color: var(--functional-black-txt-100);
  line-height: 1.3;
  font-size: 0.875em;
}

.site-search__arrow {
  position: absolute;
  left: 50%;
  bottom: -0.9rem;
  width: 1.8rem;
  height: 1rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
}

.site-search__arrow::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 auto;
  background: var(--primary-white);
  border-left: 1px solid var(--functional-blue-surface-20);
  border-top: 1px solid var(--functional-blue-surface-20);
  -webkit-transform: rotate(45deg) translateY(0.55rem);
  -ms-transform: rotate(45deg) translateY(0.55rem);
  transform: rotate(45deg) translateY(0.55rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 700px) {
  .shared-open:hover .shared-popup {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }
}

@media screen and (min-width: 701px) {
  .banner__hero:has(.banner-js-nav:hover) .banner__nav-overlay,
  .banner__hero:has(.banner-js-nav:focus-within) .banner__nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .banner__nav-item:hover .banner__mega,
  .banner__nav-item:focus-within .banner__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .banner__nav-item:hover .banner__nav-icon,
  .banner__nav-item:focus-within .banner__nav-icon {
    color: var(--functional-purple-txt-100);
  }

  .banner__mega {
    position: absolute;
    left: clamp(29rem, 30%, 36rem);
    top: 0;
    min-height: 582px;
    width: calc(100% - 36rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .banner__mega-inner {
    max-height: min(52rem, 100vh - 10rem);
    overflow-y: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 1500px) {
  .catalog-list {
    gap: 3.4rem 1.2rem;
  }

  .compilation__list {
    gap: 3.4rem 1.2rem;
  }
}

@media screen and (max-width: 1280px) {
  .cookie__text {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 1200px) {
  .slick-arrow.slick-prev {
    left: -3px;
  }

  .slick-arrow.slick-next {
    right: -3px;
  }

  .inner {
    padding-inline: 2rem;
  }

  .banner-catalog-nav__list {
    gap: 1.6rem;
  }

  .banner-catalog-nav__link {
    font-size: 0.875em;
  }

  .basket__body {
    grid-template-columns: 1fr 370px;
    gap: 2.6rem;
  }

  .basket-stub {
    gap: 3rem;
  }

  .basket-stub__consultation {
    padding: 2rem;
  }

  .basket-stub__consultation:after {
    z-index: -1;
    right: 0;
  }

  .basket-product__row {
    grid-template-columns: 148px 1fr 120px;
  }

  .basket-making__consultation {
    padding: 2rem;
  }

  .basket-making__consultation:after {
    z-index: -1;
    right: 0;
  }

  .order-address__box {
    gap: 1.4rem;
  }

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

  .callback__pic {
    display: none;
  }

  .catalog__filter {
    display: none;
  }

  .catalog-banner__wrap {
    padding-inline: 2.4rem;
  }

  .popular-list .slick-slide {
    margin: 0 5px;
  }

  .desc-catalog__wrapper {
    grid-template-columns: 208px minmax(700px, 0.65fr);
  }

  .consultation-block__wrapper {
    padding: 4rem;
    gap: 2rem;
  }

  .catalog-wrapper {
    display: block;
  }

  .catalog-wrapper__sidebar {
    display: none;
  }

  .catalog-list {
    grid-template-columns: repeat(auto-fill, 30%);
  }

  .catalog-list__header {
    height: 216px;
  }

  .catalog-list__tags {
    top: 174px;
  }

  .catalog-list .catalog-full {
    font-size: 14px;
  }

  .catalog-list .catalog-prepay {
    font-size: 12px;
  }

  .catalog-list .catalog-prepay-label {
    border-radius: 12px;
    padding: 0.3rem 0.6rem;
    font-size: 10px;
  }

  .catalog-list_line .catalog-list__item {
    padding: 2rem;
  }

  .compilation {
    margin: 4rem 0;
  }

  .compilation__title {
    margin-bottom: 2.4rem;
  }

  .footer {
    padding-bottom: 2.4rem;
  }

  .footer__bottom {
    grid-template-columns: 120px 1fr;
  }

  .header__catalog-button {
    padding: 1.4rem 1.5rem;
  }

  .header__user-actions {
    grid-template-columns: repeat(3, minmax(70px, 1fr));
  }

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

  .banner .slick-arrow {
    bottom: 8px;
  }

  .banner .slick-arrow.slick-prev {
    right: 92px;
  }

  .banner .slick-arrow.slick-next {
    right: 24px;
  }

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

  .popular-categories__item:last-of-type {
    grid-column: span 2;
  }

  .dealing__tooltip {
    left: 41%;
  }

  .callback-banner__box {
    padding-inline: 4rem;
  }

  .callback-banner__pic {
    margin-right: 0px;
  }

  .special__pic {
    left: 50%;
  }

  .complex__column {
    padding: 2.5rem;
  }

  .map__title {
    left: 5rem;
  }

  .nav-group-slider {
    margin-bottom: 4rem;
  }

  .nav-group-slider__slide {
    min-height: 178px;
    padding: 1.2rem;
  }

  .nav-group-slider__title {
    font-size: 1em;
  }

  .nav-group-slider .slick-slide {
    margin: 0 5px;
  }

  .popular__title {
    margin-bottom: 2.4rem;
  }

  .popular__slider .slick-slide {
    margin: 0 5px;
  }

  .popup__container_basket-delivery {
    width: 92%;
  }

  .filter-full__head {
    padding: 2.4rem;
  }

  .filter-full__footer {
    padding: 2.4rem;
  }

  .product {
    padding-block: 1.2rem 5rem;
  }

  .product__header {
    gap: 2rem;
  }

  .product-features__title h1 {
    font-size: 1.25em;
  }

  .product-features__row {
    font-size: 0.875em;
  }

  .product-price {
    gap: 2rem;
  }

  .product-price__header {
    display: none;
  }

  .product-price__info {
    padding: 2rem;
  }

  .product-price__call {
    background: var(--functional-blue-surface-5);
  }

  .product-price__consultation {
    padding: 2rem;
  }

  .product-price__consultation:after {
    z-index: -1;
    right: 0;
  }

  .product-price__delivery {
    padding: 2rem;
  }

  .product-full {
    font-size: 24px;
  }

  .product-prepay {
    font-size: 14px;
  }

  .product-prepay-label {
    font-size: 16px;
  }

  .price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .price-block__old-price {
    font-size: 0.875em;
  }

  .price-block__discount {
    font-size: 0.875em;
  }

  .price-block__current-price {
    font-size: 1.25em;
    margin-bottom: 0;
  }

  .product-docs__title {
    font-size: 1.125em;
  }

  .product-docs__section {
    grid-template-columns: 200px 1fr;
    margin-bottom: 3rem;
  }

  .product-docs__text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

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

@media screen and (max-width: 1023px) {
  .product-info__btn,
  .header__download-button,
  .catalog__download-button,
  .basket-list__button,
  .basket-stub__download-button {
    padding: 0.65rem;
    font-size: 0.9375em;
  }

  .inner {
    padding-inline: 1.5rem;
  }

  .breadcrumb__link {
    padding: 0.6rem 2rem 0.6rem 0.4rem;
  }

  .basket__body {
    grid-template-columns: 1fr;
  }

  .basket-stub {
    grid-template-columns: 1fr;
  }

  .basket-product {
    gap: 2rem;
  }

  .basket-success {
    gap: 1.5rem;
  }

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

  .popular-list__title {
    margin-bottom: 3rem;
  }

  .desc-catalog__wrapper {
    grid-template-columns: 1fr;
  }

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

  .consultation-block__contact {
    grid-column: 1/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .consultation-block__button {
    margin-top: 0;
  }

  .catalog-list_line .catalog-list__item {
    grid-template-columns: 215px 1fr 190px;
    gap: 2rem;
  }

  .catalog-list_line .catalog-list__header {
    height: 216px;
  }

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

  .footer__column_last {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    grid-column: 1/3;
  }

  .footer__download {
    max-width: 50%;
  }

  .header__social-icons {
    display: none;
  }

  .header__main {
    gap: 1.2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header__list {
    gap: 0.8rem;
  }

  .banner {
    margin: 2rem 0 4rem;
  }

  .banner__nav {
    top: 2.4rem;
    width: min(100%, 24rem);
    border-radius: 12px 0 0 12px;
  }

  .banner__mega-inner {
    padding: 1.6rem;
    border-radius: 0 12px 12px 0;
  }

  .banner__control {
    margin-top: 2.4rem;
    max-width: 230px;
  }

  .popular-categories {
    margin: 5rem 0;
  }

  .dealing {
    margin: 5rem 0;
  }

  .dealing__tooltip {
    display: none;
  }

  .dealing__grid {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .dealing__grid::-webkit-scrollbar {
    display: none;
  }

  .cabinet-package {
    margin: 5rem 0;
  }

  .bidding {
    margin: 5rem 0;
  }

  .bidding__list {
    grid-template-columns: 1fr;
  }

  .sertif {
    margin: 5rem 0;
  }

  .sertif .slick-slide {
    margin-right: 12px;
  }

  .partners {
    margin: 5rem 0;
  }

  .partners__slide {
    height: 220px;
  }

  .callback-banner {
    margin: 5rem 0;
  }

  .callback-banner__box {
    padding-inline: 3rem;
    gap: 2.4rem;
  }

  .callback-banner__pic {
    max-width: 250px;
    margin-right: 0;
  }

  .news {
    margin: 5rem 0;
  }

  .news__grid {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .news__grid::-webkit-scrollbar {
    display: none;
  }

  .project {
    margin: 5rem 0;
  }

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

  .project__column {
    margin-bottom: 2rem;
  }

  .project__column:nth-of-type(3) {
    grid-column: auto;
    grid-row: span 18;
  }

  .project__more {
    grid-column: 1/3;
    grid-row: auto;
    min-height: 88px;
  }

  .products-list {
    margin: 5rem 0;
  }

  .special {
    margin: 5rem 0;
  }

  .special__container {
    padding-inline: 3rem;
  }

  .complex {
    margin: 5rem 0;
  }

  .complex__row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .complex__column {
    min-height: 170px;
  }

  .complex__column:first-of-type,
  .complex__column:last-of-type {
    grid-column: auto;
    grid-row: auto;
  }

  .reviews {
    margin: 5rem 0;
  }

  .reviews__slide {
    max-width: 740px;
    gap: 1.6rem;
  }

  .reviews__info {
    font-size: 1em;
    padding: 1.6rem;
  }

  .reviews__picture {
    max-width: 320px;
  }

  .filter-full__search-input {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .product__header {
    grid-template-columns: repeat(2, 48.5%);
  }

  .product__preview {
    max-width: 100%;
  }

  .product__info {
    grid-column: 1/3;
  }

  .product-info {
    grid-template-columns: 200px 1fr;
    padding-top: 3rem;
  }

  .product-info__title {
    font-size: 1.25em;
  }

  .product-services {
    display: block;
    margin: 3rem 0 1rem;
  }

  .product-services__column {
    margin-bottom: 2rem;
  }

  .product-docs {
    margin-top: 3rem;
  }

  .product-docs__title {
    margin-bottom: 1.2rem;
  }

  .product-docs__section {
    display: block;
  }

  .product-docs__item {
    margin-bottom: 1.2rem;
  }

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

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

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

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

  .site-search {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .site-search__results {
    grid-template-columns: 1fr;
  }

  .site-search__products {
    grid-template-columns: repeat(2, minmax(13rem, 1fr));
  }

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

@media screen and (max-width: 900px) {
  .banner-catalog-nav__list {
    gap: 1rem;
    overflow-x: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-inline: 1rem;
  }

  .popular-categories__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0.6rem;
    border-radius: 12px;
    padding: 0.6rem 0.4rem;
    height: 100%;
    text-align: center;
  }

  .popup__container_basket-delivery {
    height: 95%;
    width: 100%;
  }

  .popup-basket-delivery {
    grid-template-columns: 1fr;
  }

  .popup-basket-delivery__map {
    min-height: 400px;
  }

  .popup-basket-delivery__list {
    max-height: 65dvh;
  }
}

@media screen and (max-width: 700px) {
  .btn {
    padding: 1.65rem 2.4rem;
  }

  body {
    padding-bottom: calc(8.8rem + env(safe-area-inset-bottom));
  }

  body:has(.product__mobile-bar) {
    padding-bottom: calc(16rem + env(safe-area-inset-bottom));
  }

  .breadcrumb__item {
    display: none;
  }

  .pagination__item {
    width: 32px;
  }

  .shared-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: auto;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .shared-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
  }

  .shared-popup__close {
    display: block;
  }

  .shared-popup__list {
    width: 100%;
    z-index: 2;
    position: relative;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .shared-popup__list:before {
    content: "Поделиться";
  }

  .shared-popup__link {
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid var(--functional-black-surface-20);
  }

  .field {
    margin-bottom: 0.8rem;
  }

  h1,
  .display-1 {
    font-size: 1.25em;
  }

  h2,
  .display-2 {
    font-size: 1.125em;
  }

  h3,
  .display-3 {
    font-size: 1em;
  }

  h4,
  .display-4 {
    font-size: 1em;
  }

  .banner-catalog-nav {
    margin: 1.6rem 0 2.4rem;
  }

  .banner-catalog-nav__list {
    margin-bottom: 1.2rem;
  }

  .banner-catalog-nav__slide {
    width: 220px;
    min-height: 62px;
    border-radius: 14px;
  }

  .banner-catalog-nav__pic-wrap {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .banner-catalog-nav__name {
    max-width: 130px;
    font-size: 0.75em;
  }

  .basket {
    margin: 1.6rem 0;
  }

  .basket__header {
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .basket__count {
    font-size: 1.125em;
  }

  .basket__title_big {
    font-size: 2em;
    position: absolute;
    top: 27rem;
    left: 1.5rem;
  }

  .basket-stub__control {
    max-width: 100%;
    gap: 1.4rem;
  }

  .basket-stub__text {
    font-size: 0.875em;
    max-width: 240px;
  }

  .basket-list {
    margin: 0 -1.5rem;
  }

  .basket-list__all {
    padding-left: 1.5rem;
  }

  .basket-list__wrap {
    display: none;
  }

  .basket-list__header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .basket-list__caption {
    font-size: 0.75em;
  }

  .basket-list__sign {
    font-size: 0.625em;
  }

  .basket-product__row {
    grid-template-columns: 100px 1fr;
    padding-top: 5rem;
    position: relative;
    gap: 1rem;
  }

  .basket-product__left {
    grid-row: 1/3;
    height: 100px;
    border-radius: 12px;
  }

  .basket-product__tags {
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .basket-product__title {
    -webkit-line-clamp: 2;
    line-height: 1;
  }

  .basket-product__right {
    grid-area: 1;
  }

  .basket-product__right .basket-product__sign {
    margin-top: 0;
    font-size: 0.625em;
    text-align: left;
  }

  .basket-product__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0;
  }

  .basket-product__current-price {
    margin-bottom: 0;
  }

  .basket-product__old-price {
    text-decoration: line-through;
  }

  .basket-product__control {
    position: absolute;
    top: 0;
    right: 0;
  }

  .basket-product__bottom {
    position: absolute;
    top: 0;
    left: 0;
  }

  .basket-product__sign {
    margin-top: 1rem;
  }

  .basket-making__header {
    padding: 2rem;
  }

  .basket-making__sign {
    font-size: 0.875em;
  }

  .basket-making__info {
    font-size: 0.875em;
  }

  .basket-making__footer {
    padding: 2rem;
  }

  .basket-making__body {
    padding: 2.4rem 2rem;
  }

  .basket-order {
    margin: 0 -1.5rem;
  }

  .basket-order__box {
    margin-bottom: 1.4rem;
  }

  .basket-order__box:first-of-type {
    border: 0;
  }

  .basket-order .basket-list {
    margin: 0;
  }

  .order-address__box {
    display: block;
  }

  .order-address__map {
    display: none;
  }

  .order-address__road {
    display: block;
    margin-top: 1.4rem;
  }

  .order-buyer__line {
    display: block;
    margin-bottom: 1.6rem;
  }

  .order-buyer__name {
    margin-bottom: 1.4rem;
    font-weight: 700;
  }

  .basket-success {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }

  .basket-success__txt {
    font-size: 1em;
  }

  .basket-success__pic {
    top: 0;
    height: 120px;
    display: block;
    margin: auto;
    grid-area: 1;
    margin-bottom: 7rem;
  }

  .basket-success__btn {
    width: 100%;
  }

  .callback {
    padding-top: 0;
  }

  .callback__inner {
    padding: 0;
  }

  .callback__wrapper {
    padding: 2.4rem 1.4rem 7rem;
  }

  .callback__title {
    font-size: 1.125em;
    margin-bottom: 1.2rem;
  }

  .callback__txt {
    font-size: 0.875em;
  }

  .callback__field {
    font-size: 0.875em;
  }

  .callback__check {
    margin-top: 1rem;
  }

  .callback__pic {
    display: block;
    bottom: 0;
    top: auto;
    right: 0;
    height: 115px;
    width: auto;
  }

  .shop_cat_anons {
    font-size: 0.75em;
  }

  .catalog__sort {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .catalog__sort-btns {
    width: 50%;
    margin-top: 1rem;
  }

  .catalog__sort-btn {
    width: 50%;
    padding: 1.2rem 0.8rem;
  }

  .catalog__download-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.1rem 1rem 0.9rem;
  }

  .catalog-banner__title {
    font-size: 1.125em;
    padding-top: 1.4rem;
  }

  .catalog-banner__subtitle {
    font-size: 0.875em;
  }

  .catalog-banner__image {
    height: 84px;
  }

  .category-grid {
    gap: 0.8rem;
  }

  .category-grid__image {
    border-radius: 10px;
    height: 110px;
  }

  .category-grid__label {
    font-size: 0.625em;
    margin-top: 0.7rem;
  }

  .popular-list .slick-slide {
    max-width: 80vw;
  }

  .desc-catalog__txt {
    font-size: 0.875em;
  }

  .consultation-block__wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .consultation-block__contact {
    display: block;
    grid-column: auto;
  }

  .consultation-block__text {
    font-size: 0.875em;
    line-height: 1.4;
  }

  .consultation-block__button {
    margin-top: 1.6rem;
  }

  .catalog-wrapper__banner {
    margin: 1.6rem 0;
  }

  .catalog-wrapper__banner + .pagination {
    display: none;
  }

  .sort-container {
    border: 0;
    border-radius: 0;
  }

  .sort-container__top {
    padding: 0.4rem 0 1.8rem;
    overflow-x: auto;
  }

  .sort-container__receipts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sort-container__label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .sort-container__more {
    display: none;
  }

  .sort-container__bottom {
    padding: 1.4rem;
  }

  .sort-container__selects {
    gap: 1.6rem;
  }

  .sort-container__title {
    display: none;
  }

  .sort-container__val {
    font-size: 0;
    width: 16px;
    height: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-right: 0;
  }

  .sort-container__val_sort {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23000233' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='m6.007 13.667-3.347-3.34M6.007 2.333v11.334M9.993 2.333l3.347 3.34M9.993 13.667V2.333'/%3E%3C/svg%3E");
  }

  .sort-container__val_group {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Ccircle cx='13.25' cy='11.5' r='1.75' stroke='%23000233'/%3E%3Cpath stroke='%23000233' stroke-linecap='round' d='M13.25 1.583V9.75M13.25 13.25V15'/%3E%3Ccircle cx='2.75' cy='11.5' r='1.75' stroke='%23000233'/%3E%3Cpath stroke='%23000233' stroke-linecap='round' d='M2.75 1.583V9.75M2.75 13.25V15'/%3E%3Ccircle cx='1.75' cy='1.75' r='1.75' stroke='%23000233' transform='matrix(1 0 0 -1 6.25 6.833)'/%3E%3Cpath stroke='%23000233' stroke-linecap='round' d='M8 15V6.833M8 3.333v-1.75'/%3E%3C/svg%3E");
  }

  .sort-container__val:after {
    content: none;
  }

  .sort-container__list {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    left: 0;
  }

  .sort-container__control {
    gap: 1.6rem;
  }

  .catalog-list {
    gap: 1.2rem 0.8rem;
    margin: 3rem 0;
  }

  .catalog-list__item {
    gap: 1rem;
  }

  .catalog-list__header {
    height: 29.8507462687vw;
    padding: 1rem;
    border-radius: 7px;
  }

  .catalog-list__tags {
    gap: 0.3rem;
    top: calc(29.8507462687vw - 2.4rem);
    left: 0.5rem;
  }

  .catalog-list__tag {
    font-size: 0.5em;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
  }

  .catalog-list__state {
    font-size: 0.5em;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
    top: 0.5rem;
    left: 0.5rem;
  }

  .catalog-list__middle {
    margin-top: 0;
  }

  .catalog-list__caption {
    -webkit-line-clamp: 2;
    font-size: 0.75em;
  }

  .catalog-list__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .catalog-list__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .catalog-list__current-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    font-size: 0.875em;
  }

  .catalog-list__row {
    margin-top: 0.3rem;
    margin-bottom: 0;
  }

  .catalog-list__old-price {
    font-size: 0.75em;
  }

  .catalog-list__discount {
    font-size: 0.75em;
    padding: 0.3rem 0.6rem;
  }

  .catalog-list__favor {
    top: 0.5rem;
    right: 0.5rem;
  }

  .catalog-list__favor .favorite__icon {
    width: 14px;
    height: auto;
  }

  .catalog-list__slider .slick-dots {
    display: none;
  }

  .catalog-list_line {
    margin: 3rem 0;
  }

  .catalog-list_line .catalog-list__item {
    grid-template-columns: 75px 1fr;
    gap: 1rem;
    padding: 0 34px 0 0;
    position: relative;
    margin-bottom: 2rem;
  }

  .catalog-list_line .catalog-list__header {
    height: 20vw;
    padding: 1rem;
    border-radius: 7px;
    grid-row: 1/3;
  }

  .catalog-list_line .catalog-list__tags {
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .catalog-list_line .catalog-list__caption {
    -webkit-line-clamp: 2;
    font-size: 0.75em;
  }

  .catalog-list_line .catalog-list__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    gap: 0.4rem;
  }

  .catalog-list_line .catalog-list__current-price {
    font-size: 0.625em;
    margin-bottom: 0;
  }

  .catalog-list_line .catalog-list__row {
    margin-top: 0.3rem;
    margin-bottom: 0;
  }

  .catalog-list_line .catalog-list__row {
    margin-top: 0;
    gap: 0.4rem;
  }

  .catalog-list_line .catalog-list__old-price {
    font-size: 0.5em;
  }

  .catalog-list_line .catalog-list__discount {
    font-size: 0.5em;
    padding: 0.3rem 0.6rem;
  }

  .catalog-list_line .catalog-list__favor {
    border-radius: 5px;
    width: 24px;
    height: 24px;
    background: #c4c4c4;
  }

  .catalog-list_line .catalog-list__favor .favorite__icon {
    width: 12px;
    height: auto;
  }

  .catalog-list_line .catalog-list__control {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    gap: 0.4rem;
  }

  .catalog-list_line .catalog-list__bottom {
    display: none;
  }

  .catalog-list_line .catalog-list__sign {
    font-size: 0.75em;
  }

  .catalog-list_line .catalog-list__buy {
    font-size: 0;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='.75' d='m2.076 1.483 8.735.86c.41.04.71.402.674.811l-.156 1.784a.75.75 0 0 1-.613.673l-7.18 1.303M.559.447l.876.182a.75.75 0 0 1 .58.575l1.663 7.65a.75.75 0 0 0 .733.59h6.973'/%3E%3Ccircle cx='3.637' cy='11.221' r='.395' fill='%23000' stroke='%23000' stroke-width='.75'/%3E%3Ccircle cx='9.32' cy='11.221' r='.395' fill='%23000' stroke='%23000' stroke-width='.75'/%3E%3C/svg%3E");
    background-position: center;
    background-color: #c4c4c4;
    background-repeat: no-repeat;
  }

  .more-filter {
    display: block;
  }

  .compilation {
    margin: 2.6rem 0;
  }

  .compilation__title {
    font-size: 1.25em;
    margin-bottom: 2.6rem;
  }

  .compilation__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 0.8rem;
  }

  .compilation__header {
    height: 29.8507462687vw;
    padding: 1rem;
    border-radius: 7px;
  }

  .compilation__tags {
    gap: 0.3rem;
  }

  .compilation__tag {
    font-size: 0.5em;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
  }

  .compilation__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
    min-height: auto;
  }

  .compilation__caption {
    -webkit-line-clamp: 2;
    font-size: 0.75em;
  }

  .compilation__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .compilation__current-price {
    font-size: 0.875em;
  }

  .compilation__row {
    margin-top: 0.3rem;
    margin-bottom: 0;
  }

  .compilation__old-price {
    font-size: 0.75em;
  }

  .compilation__discount {
    font-size: 0.75em;
    padding: 0.3rem 0.6rem;
  }

  .cookie {
    bottom: 0;
    padding: 2rem 0 2.4rem;
    border-radius: 24px 24px 0 0;
  }

  .cookie__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2rem;
    position: relative;
    padding-top: 0.8rem;
  }

  .cookie__close {
    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;
    position: absolute;
    top: -1rem;
    right: 1rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    line-height: 0;
  }

  .cookie__text {
    max-width: none;
    line-height: 1.4;
    font-size: 1.125em;
  }

  .cookie__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  .cookie__btn {
    width: 100%;
    min-width: 0;
    padding: 1.6rem 2.4rem;
    border-radius: 14px;
    font-size: 1em;
  }

  .footer {
    margin-top: 2rem;
  }

  .footer__container {
    display: block;
    padding: 2.4rem 1.4rem;
  }

  .footer__column {
    margin-bottom: 2.4rem;
  }

  .footer__column_last {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .footer__download {
    max-width: 100%;
    padding-block: 1.4rem;
    margin-bottom: 2.4rem;
  }

  .footer__bottom {
    display: block;
    position: relative;
    font-size: 0.625em;
  }

  .footer__legal {
    margin-top: 1rem;
  }

  .footer__build {
    position: absolute;
    right: 0;
    top: 2rem;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary-white);
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--functional-blue-surface-20);
    padding: 0.8rem 0.6rem calc(0.8rem + env(safe-area-inset-bottom));
  }

  .header {
    border-bottom: 1px solid #b3b3b3;
  }

  .header__top-line {
    display: none;
  }

  .header__main {
    display: grid;
    grid-template-columns: 2rem 1fr 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    padding-block: 1.6rem;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .header__main .header__btn-mobile-nav,
  .header__main .header__btn-mobile-close {
    grid-column: 1;
    grid-row: 1;
  }

  .header__main .header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .header__main .header__btn-mobile-search {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header__catalog-button {
    display: none;
  }

  .header__user-actions {
    display: none;
  }

  .header__bottom-menu {
    display: none;
  }

  .header__btn-mobile-search,
  .header__btn-mobile-nav {
    display: block;
  }

  .header__logo img {
    display: block;
    height: 3.2rem;
    width: auto;
  }

  .header.is-search-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-white);
  }

  .header.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-white);
  }

  .header.is-open .header__btn-mobile-nav {
    display: none;
  }

  .header.is-open .header__btn-mobile-close {
    display: block;
  }

  .header.is-open .header__mobile {
    display: block;
    position: fixed;
    top: 6.4rem;
    left: 0;
    right: 0;
    bottom: calc(8.8rem + env(safe-area-inset-bottom));
    z-index: 1000;
    overflow-y: auto;
    background: var(--primary-white);
    height: calc(100% - 64px);
  }

  .banner {
    margin: 0 0 3rem;
  }

  .banner__inner {
    padding: 0;
  }

  .banner__nav-overlay {
    display: none;
  }

  .banner__nav {
    display: none;
  }

  .banner__nav-item.is-open .banner__mega {
    display: block;
  }

  .banner__nav-item.is-open .banner__nav-trigger {
    background: var(--functional-purple-surface-10);
    color: var(--functional-purple-txt-100);
  }

  .banner__nav-item.is-open .banner__nav-icon {
    color: var(--functional-purple-txt-100);
  }

  .banner__nav-item.is-open .banner__nav-chevron {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .banner__nav-trigger {
    padding: 1.2rem 1.6rem;
    font-size: 0.875em;
  }

  .banner__mega {
    display: none;
    position: static;
    padding: 0 1.2rem 1rem;
    background: var(--functional-blue-surface-2);
  }

  .banner__mega-inner {
    border: 0;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 1rem;
    background: var(--functional-blue-surface-5);
  }

  .banner__mega-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .banner__mega-card {
    font-size: 0.6875em;
    padding: 0.4rem 0.2rem 0.6rem;
  }

  .banner__mega-pic-wrap {
    max-width: 64px;
    margin-bottom: 0.4rem;
    border-radius: 8px;
  }

  .banner__content {
    top: auto;
    bottom: 0;
    left: 0;
    padding: 1.6rem;
    margin-top: 0.8rem;
    border-radius: 12px;
  }

  .banner__title {
    font-size: 1.5em;
  }

  .banner__txt {
    font-size: 0.875em;
    max-width: 100%;
  }

  .banner__control {
    margin-top: 1.6rem;
    max-width: 100%;
    gap: 1rem;
  }

  .banner__control_row {
    grid-template-columns: 1fr;
  }

  .banner__pic {
    height: 540px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 0;
  }

  .banner .slick-arrow {
    display: none !important;
  }

  .banner .slick-arrow.slick-prev {
    right: 92px;
  }

  .banner .slick-arrow.slick-next {
    right: 18px;
  }

  .banner .slick-arrow svg {
    width: 24px;
  }

  .popular-categories {
    margin: 2.4rem 0;
  }

  .popular-categories__title {
    margin-bottom: 1.6rem;
  }

  .popular-categories__grid {
    gap: 0.8rem;
  }

  .popular-categories__icon-wrapper {
    width: 100%;
    height: 90px;
    border-radius: 12px;
  }

  .popular-categories__text {
    font-size: 0.625em;
    text-align: center;
    line-height: 1.2;
  }

  .popular-categories__button {
    font-size: 0.875em;
    min-height: 88px;
  }

  .dealing {
    margin: 2.4rem 0;
  }

  .dealing__header {
    margin-bottom: 2rem;
  }

  .dealing__item {
    border-radius: 12px;
    padding: 1.6rem;
    width: calc(100vw - 30px);
  }

  .dealing__caption {
    margin-bottom: 1.6rem;
  }

  .cabinet-package {
    margin: 2.4rem 0;
    padding-bottom: 7rem;
    position: relative;
  }

  .cabinet-package__header {
    margin-bottom: 2rem;
  }

  .cabinet-package__card {
    border-radius: 15px;
    padding: 1.2rem;
  }

  .cabinet-package__arrow {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .cabinet-package .slick-slide {
    margin: 0 1px 0 0;
  }

  .cabinet-package__btn {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
  }

  .bidding {
    margin: 2.4rem 0;
  }

  .bidding__list {
    gap: 2.4rem;
  }

  .bidding__left {
    border-radius: 12px;
    padding: 2rem;
    background-size: 45%;
  }

  .bidding__title {
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .bidding__txt {
    max-width: 220px;
  }

  .bidding__right {
    border-radius: 12px;
    padding: 4rem 2rem;
    background-size: cover;
  }

  .sertif {
    margin: 2.4rem 0;
  }

  .sertif__title {
    margin-bottom: 2rem;
  }

  .partners {
    margin: 2.4rem 0;
  }

  .partners__title {
    margin-bottom: 2rem;
  }

  .partners__slide {
    border-radius: 14px;
    height: 120px;
  }

  .partners .slick-slide {
    width: 180px;
  }

  .callback-banner {
    margin: 4.4rem 0 2.4rem;
  }

  .callback-banner__box {
    display: block;
    margin-top: 2rem;
    padding: 1.6rem 1.6rem 1.6rem 12rem;
    border-radius: 12px;
    position: relative;
  }

  .callback-banner__box:after {
    height: 100%;
    top: 0;
    bottom: auto;
    background: var(--functional-blue-surface-5);
  }

  .callback-banner__pic {
    margin: 0 auto 0.8rem;
    display: block;
    max-width: 170px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .callback-banner__title {
    font-size: 1.125em;
    margin-bottom: 1.2rem;
    max-width: 180px;
  }

  .callback-banner .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.875em;
    background: var(--functional-blue-surface-5);
    max-width: 183px;
    padding-inline: 1.2rem;
  }

  .callback-banner__tooltip {
    top: 1rem;
    right: 1rem;
  }

  .news {
    margin: 2.4rem 0;
    padding-bottom: 7rem;
    position: relative;
  }

  .news__header {
    margin-bottom: 2rem;
    display: block;
  }

  .news__card {
    border-radius: 12px;
    padding: 1.2rem;
    width: calc(100vw - 30px);
  }

  .news__arrow {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .news__btn {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100vw - 30px);
  }

  .project {
    margin: 2.4rem 0;
  }

  .project__title {
    margin-bottom: 2rem;
  }

  .project__row {
    display: block;
  }

  .project__column {
    padding: 2rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    height: 180px;
  }

  .project__more {
    min-height: 56px;
    border-radius: 12px;
    font-size: 1em;
  }

  .products-list {
    margin: 2.4rem 0;
  }

  .products-list__title {
    margin-bottom: 2rem;
  }

  .products-list__header {
    height: 29.8507462687vw;
    padding: 1rem;
    border-radius: 7px;
  }

  .products-list__tags {
    gap: 0.3rem;
  }

  .products-list__tag {
    font-size: 0.5em;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
  }

  .products-list__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
    min-height: auto;
  }

  .products-list__caption {
    -webkit-line-clamp: 2;
    font-size: 0.75em;
  }

  .products-list__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .products-list__current-price {
    font-size: 0.875em;
  }

  .products-list__row {
    margin-top: 0.3rem;
    margin-bottom: 0;
  }

  .products-list__old-price {
    font-size: 0.75em;
  }

  .products-list__discount {
    font-size: 0.75em;
    padding: 0.3rem 0.6rem;
  }

  .products-list__favor {
    top: 0.5rem;
    right: 0.5rem;
  }

  .products-list__favor svg {
    width: 14px;
  }

  .products-list .slick-slide {
    margin: 0 8px 0 0;
  }

  .special {
    margin: 2.4rem 0;
  }

  .special__container {
    padding: 2.4rem 1.4rem;
    border-radius: 12px;
    height: auto;
  }

  .special__title {
    font-size: 1.25em;
    max-width: 150px;
  }

  .special__arrow {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .special__pic {
    width: 170px;
    left: auto;
    right: 0;
    border-radius: 0 12px 12px 0;
  }

  .complex {
    margin: 2.4rem 0;
  }

  .complex__title {
    margin-bottom: 2rem;
  }

  .complex__caption {
    font-size: 1em;
  }

  .complex__row {
    gap: 0.8rem;
  }

  .complex__column:first-of-type {
    grid-column: 1/3;
  }

  .complex__column:last-of-type {
    grid-column: 1/3;
  }

  .complex__column {
    padding: 2rem;
    min-height: 180px;
    border-radius: 12px;
  }

  .reviews {
    margin: 2.4rem 0;
    padding-bottom: 10rem;
    position: relative;
  }

  .reviews__header {
    margin-bottom: 2rem;
    display: block;
  }

  .reviews__slide {
    max-width: calc(100vw - 30px);
    display: block !important;
  }

  .reviews__info {
    font-size: 0.875em;
    line-height: 1.5;
    padding: 1rem;
  }

  .reviews__info p {
    margin-bottom: 1rem;
  }

  .reviews__info p:last-of-type {
    display: none;
  }

  .reviews__picture {
    max-width: 100%;
    margin-top: 1rem;
  }

  .reviews__pic {
    width: 100%;
  }

  .reviews__btn {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100vw - 30px);
  }

  .reviews__caption {
    left: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
    padding: 1rem;
  }

  .reviews__caption strong {
    font-size: 0.875em;
  }

  .reviews__caption p {
    font-size: 0.75em;
  }

  .reviews .slick-slide {
    margin: 0 6px;
  }

  .reviews .slick-dots {
    bottom: -16px;
  }

  .map {
    margin: 3.2rem 0;
  }

  .map__title {
    left: 3rem;
    top: 1.5rem;
  }

  .map__load {
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.75em;
  }

  .map__frame {
    min-height: 320px;
    max-height: 400px;
    overflow: auto;
  }

  .map__object {
    width: 1000px;
  }

  .nav-group-slider {
    margin-bottom: 2.6rem;
  }

  .nav-group-slider__inner {
    padding: 0;
  }

  .nav-group-slider__slider .slick-list {
    padding-inline: 1.5rem;
  }

  .nav-group-slider__slide {
    max-width: 180px;
    border-radius: 11px;
    padding: 1rem;
  }

  .popular__title {
    font-size: 1.25em;
    margin-bottom: 2.6rem;
  }

  .popular__slider {
    margin: 0 -1.5rem;
  }

  .popular__slider .slick-list {
    padding-inline: 1.5rem;
  }

  .popup__close {
    top: 10px;
    left: calc(100% - 30px);
  }

  .popup__container {
    padding: 2.4rem 2.4rem 0;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    top: auto;
    bottom: 0;
    border-radius: 10px;
  }

  .popup__container_mini_notice {
    padding: 3.2rem 2.4rem 2.4rem;
    width: calc(100% - 3.2rem);
    top: 50%;
    left: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 16px;
  }

  .popup__container_filter {
    padding: 0;
    height: 100%;
  }

  .popup__container_catalog {
    width: calc(100% - 3.2rem);
    padding: 1.6rem 2.4rem;
    border-radius: 12px;
    top: 50%;
    left: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .popup__title {
    font-size: 1.125em;
    margin-bottom: 1.2rem;
  }

  .popup__txt {
    font-size: 0.875em;
  }

  .popup__notice-txt {
    font-size: 1em;
    margin-bottom: 2.4rem;
  }

  .popup__notice-btn {
    width: 100%;
    min-width: 0;
  }

  .popup__row {
    display: block;
  }

  .popup__captcha {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .popup__check {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .popup__btn-box {
    border-top: 0;
    padding: 0 2.4rem;
    margin: 1.2rem -2.4rem 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .popup__btn-box_gp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .popup__btn {
    width: 100%;
  }

  .popup__buyer-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .popup-catalog__title {
    margin-bottom: 1.4rem;
    font-size: 1em;
  }

  .popup-catalog__options {
    gap: 1.2rem;
    margin-bottom: 1rem;
  }

  .popup-catalog__option .checkbox__txt,
  .popup-catalog__category .checkbox__txt {
    padding-left: 1.8rem;
    font-size: 0.6875em;
  }

  .popup-catalog__option .checkbox__txt:before,
  .popup-catalog__category .checkbox__txt:before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .popup-catalog__option .checkbox__txt:after,
  .popup-catalog__category .checkbox__txt:after {
    top: 0.25rem;
    left: 0.25rem;
    width: 0.7rem;
    height: 0.7rem;
  }

  .popup-catalog__field {
    margin-bottom: 0.8rem;
    padding: 1.2rem 0.8rem;
    border-radius: 6px;
    font-size: 0.625em;
  }

  .popup-catalog__row {
    gap: 0.8rem;
  }

  .popup-catalog__caption {
    margin: 0.2rem 0 0.8rem;
    font-size: 0.6875em;
  }

  .popup-catalog__category {
    margin-bottom: 0.4rem;
  }

  .popup-catalog__submit {
    min-width: 14rem;
    margin-top: 0.8rem;
    padding: 1.3rem 1.8rem;
    border-radius: 6px;
    font-size: 0.625em;
  }

  .popup-catalog__agree {
    margin-top: 1.2rem;
  }

  .popup-catalog__agree .checkbox__txt {
    padding-left: 1.8rem;
    font-size: 0.5625em;
  }

  .popup-catalog__agree .checkbox__txt:before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .popup-catalog__agree .checkbox__txt:after {
    top: 0.25rem;
    left: 0.25rem;
    width: 0.7rem;
    height: 0.7rem;
  }

  .filter-full__head {
    display: block;
    padding: 1.4rem;
    border-bottom: 1px solid #ededed;
  }

  .filter-full__caption {
    text-align: center;
    font-size: 1em;
    margin-bottom: 2.4rem;
  }

  .filter-full__search-input button {
    display: none;
  }

  .filter-full__middle {
    display: block;
    background: var(--primary-white);
    padding: 0 1.4rem;
    max-height: 100%;
    overflow: initial;
  }

  .filter-full__left {
    border: 0;
    padding-inline: 0;
  }

  .filter-full__right {
    padding-bottom: 2rem;
  }

  .filter-full__footer {
    display: none;
  }

  .product {
    padding-block: 1.2rem 3rem;
  }

  .product__header {
    display: block;
    padding-top: 4rem;
    position: relative;
  }

  .product__tabs {
    overflow: auto;
    gap: 0.8rem;
    border-bottom: 0;
  }

  .product__tab {
    border: 1px solid var(--functional-blue-surface-20);
    border-radius: 6px;
    background: var(--functional-black-surface-10);
    font-size: 0.875em;
    padding: 1rem 1.2rem;
    white-space: nowrap;
  }

  .product__tab[aria-selected=true] {
    background: var(--primary-blue);
    font-weight: 500;
    color: var(--primary-white);
  }

  .product__more-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product__mobile-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(5.6rem + env(safe-area-inset-bottom));
    z-index: 1001;
    padding: 1.2rem 1.6rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: var(--primary-white);
  }

  .product .hide-mobile {
    height: 220px;
    overflow: hidden;
  }

  .product-slider__for {
    padding-bottom: 4rem;
  }

  .product-slider__nav {
    display: none;
  }

  .product-slider__favor-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product-features__row {
    display: block;
    padding-block: 0.8rem;
  }

  .product-features__label {
    margin-bottom: 0.6rem;
  }

  .product-features .price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product-features .product-full,
  .product-features .product-prepay {
    display: block;
  }

  .product-features .product-prepay {
    margin-bottom: 0.8rem;
  }

  .product-price__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
  }

  .product-price__sign {
    font-size: 0.75em;
  }

  .product-price__info {
    display: none;
  }

  .price-block {
    margin-bottom: 2.4rem;
  }

  .product-info {
    display: block;
    padding-top: 3rem;
  }

  .product-info__sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .product-info__title {
    font-size: 1em;
  }

  .product-info__btn {
    background: none;
    padding: 0;
    font-size: 0;
    gap: 0.6rem;
  }

  .product-info__btn::after {
    content: "Сравнить";
    font-size: 14px;
    font-weight: 400;
    color: var(--functional-black-txt-100);
  }

  .product-specification__row {
    padding-block: 0.8rem;
    display: block;
    font-size: 0.875em;
  }

  .product-specification__spec-label {
    margin-bottom: 0.6rem;
  }

  .product-tags {
    overflow: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 3rem -1.5rem;
  }

  .product-tags__tag {
    font-size: 0.875em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .product-tags__tag:first-of-type {
    margin-left: 1.5rem;
  }

  .product-tags__tag:last-of-type {
    margin-right: 1.5rem;
  }

  .product-description__text p {
    margin-bottom: 2rem;
  }

  .product-description__image-row {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .product-description__image-table {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .product-services__column {
    padding: 2rem;
  }

  .product-services__title {
    margin-bottom: 1rem;
  }

  .product-docs__title {
    font-size: 1em;
  }

  .project-list_mod {
    position: relative;
    padding-bottom: 7rem;
  }

  .project-list__title {
    margin-bottom: 2rem;
  }

  .project-list__row {
    grid-template-columns: 1fr;
  }

  .project-list__row_mod {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .project-list__row_mod::-webkit-scrollbar {
    display: none;
  }

  .project-list__item {
    width: calc(100vw - 30px);
    padding: 1.4rem;
  }

  .project-list__header {
    margin-bottom: 2rem;
  }

  .project-list__btn {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
  }

  .project-single__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .project-single__gallery-top {
    grid-template-columns: 1fr;
  }

  .project-single__row_no-balance {
    grid-template-columns: repeat(2, 1fr);
  }

  .fancybox-project-product .fancybox__carousel {
    padding-bottom: 6.4rem;
  }

  .fancybox-project-product .fancybox__carousel.has-arrows {
    -webkit-column-gap: 1.6rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }

  .fancybox-project-product .f-button.is-arrow {
    width: 4rem;
    height: 4rem;
  }

  .fancybox-project-product .fancybox__slide .is-close-button {
    top: 1rem;
    right: 1rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .project-product-fb {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.6rem;
  }

  .project-product-fb__tag {
    font-size: 0.5em;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
  }

  .site-search {
    display: none;
  }

  .site-search.is-mobile-open {
    display: block;
    position: fixed;
    top: 6.4rem;
    left: 0;
    right: 0;
    bottom: calc(8.8rem + env(safe-area-inset-bottom));
    z-index: 1000;
    width: 100%;
    padding: 1.2rem 1.5rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    background: var(--primary-white);
    -webkit-overflow-scrolling: touch;
  }

  .site-search.is-mobile-open .site-search__form {
    width: 100%;
  }

  .site-search.has-query .site-search__mobile-title {
    display: none;
  }

  .site-search__field {
    min-height: 4.8rem;
    padding: 1.2rem 5.8rem 1.2rem 1rem;
    border-color: var(--primary-black);
    border-radius: 8px;
    font-size: 0.75em;
  }

  .site-search__submit {
    top: 0.4rem;
    right: 0.4rem;
    width: 4rem;
    height: 4rem;
    border-radius: 8px;
    background-size: 2.4rem;
  }

  .site-search__dropdown {
    position: static;
    padding: 2.4rem 0 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .site-search__panel_popular {
    min-height: 0;
  }

  .site-search__history-list {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--functional-black-surface-20);
  }

  .site-search__history-link {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    padding: 0.7rem 0;
  }

  .site-search__history-icon_search {
    width: 2.4rem;
    height: 2.4rem;
    background-size: 1.4rem;
  }

  .site-search__history-text {
    font-size: 0.75em;
  }

  .site-search__title {
    margin-bottom: 1.2rem;
    font-size: 1em;
  }

  .site-search__suggestions {
    padding-top: 1.6rem;
    border-top: 1px solid var(--functional-black-surface-20);
  }

  .site-search__suggestions .site-search__mobile-title {
    margin-top: 0;
  }

  .site-search__panel_results {
    max-height: none;
    overflow: visible;
  }

  .site-search__results {
    display: block;
  }

  .site-search__suggest-list {
    padding-bottom: 1.6rem;
  }

  .site-search__suggest-link {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    min-height: 0;
    padding: 0.7rem 0;
    font-size: 0.75em;
  }

  .site-search__icon_search {
    width: 2.4rem;
    height: 2.4rem;
    background-size: 1.4rem;
  }

  .site-search__icon_category {
    width: 3.2rem;
    height: 3.2rem;
  }

  .site-search__products {
    display: block;
    border-top: 1px solid var(--functional-black-surface-20);
  }

  .site-search__product {
    display: grid;
    grid-template-columns: 7.6rem 1fr;
    gap: 0.8rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--functional-black-surface-20);
  }

  .site-search__product-header {
    width: 7.6rem;
    height: 7.6rem;
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 0;
  }

  .site-search__product-tags {
    left: 0.4rem;
    bottom: 0.4rem;
    gap: 0.2rem;
  }

  .site-search__product-tag {
    padding: 0.1rem 0.3rem 0.2rem;
    border-radius: 2px;
    font-size: 0.375em;
  }

  .site-search__product-state {
    top: 0.2rem;
    left: 0.2rem;
    padding: 0.1rem 0.3rem 0.2rem;
    border-radius: 2px;
    font-size: 0.375em;
  }

  .site-search__product-favor {
    display: none;
  }

  .site-search__product-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    margin-top: 0;
  }

  .site-search__product-caption {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
    font-size: 0.5625em;
  }

  .site-search__product-price-block {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .site-search__product-row {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .site-search__product-old-price {
    font-size: 0.5625em;
  }

  .site-search__product-discount {
    padding: 0.3rem 0.5rem;
    font-size: 0.4375em;
  }

  .site-search__product-current-price {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    white-space: nowrap;
    font-size: 0.625em;
  }

  .site-search__mobile-title {
    display: block;
    margin: 1.8rem 0 1rem;
    font-weight: 700;
    color: var(--functional-black-txt-100);
    font-size: 1em;
  }

  .site-search__list {
    display: block;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--functional-black-surface-20);
  }

  .site-search__item {
    margin-bottom: 0.8rem;
  }

  .site-search__link {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
  }

  .site-search__media {
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 0;
    border-radius: 6px;
  }

  .site-search__name {
    font-size: 0.75em;
  }

  .site-search__arrow {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .popup__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    gap: 2rem;
    padding-bottom: 2.4rem;
  }
}
