.catalog__cases {
  display: grid;
  grid-auto-rows: auto;
}
@media (min-width: 576px) {
  .catalog__cases {
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .catalog__cases {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .catalog__cases {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) {
  .catalog__cases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .catalog__cases {
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  .catalog__cases {
    gap: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .catalog__cases {
    grid-template-columns: repeat(3, 1fr);
  }
}
.catalog__cases-small {
  display: none;
}
.catalog__cases-small .catalog__case-media {
  height: 110px;
}
.catalog__case-item {
  border-radius: 16px;
  height: 170px;
  overflow: hidden;
  position: relative;
}
.catalog__case-item:hover .catalog__case-decor {
  -webkit-transform: scale(2);
  transform: scale(2);
}
.catalog__case-title,
.catalog__case-title--small {
  color: var(--white);
  font-family: var(--font-sans-loos);
  position: relative;
  z-index: 2;
}
.catalog__case-title--small {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 22px 20px;
}
.catalog__case-decor,
.catalog__case-media {
  position: absolute;
}
.catalog__case-media {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 190px;
  right: 0;
  z-index: 1;
}
.catalog__case-img {
  margin-left: auto;
  margin-top: auto;
  max-height: 100%;
}
.catalog__case-decor {
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .catalog__case-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding-left: 24px;
    padding-top: 32px;
    width: 167px;
  }
}
@media (max-width: 767px) {
  .catalog__case-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    padding: 21px 8px 0 14px;
  }
}
@media (max-width: 359px) {
  .catalog__case-title {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .catalog__cases-small {
    display: grid;
    gap: 24px;
    grid-auto-rows: auto;
  }
  .catalog__case-decor {
    bottom: 0;
    height: 170px;
    right: 0;
    width: 238px;
  }
}
@media (min-width: 1200px) {
  .catalog__case-decor--small {
    height: 130px;
    width: 160px;
  }
  .catalog__cases-small {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) {
  .catalog__cases-small {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog__cases-small .catalog__case-media {
    height: 76%;
  }
  .catalog__cases-small .catalog__case-item:last-of-type {
    display: none;
  }
  .catalog__case-media {
    padding-top: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .catalog__case-decor--small {
    height: 130px;
    width: 272px;
  }
}
.catalog__sort {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.catalog__sort.active .catalog__sort-icon {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.catalog__sort.active .catalog__sort-select {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media (min-width: 1200px) {
  .catalog__sort {
    margin-left: auto;
  }
}
.catalog__sort-selected {
  background-color: var(--white);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .catalog__sort-selected {
    min-width: 217px;
  }
}
@media (min-width: 1200px) {
  .catalog__sort-selected {
    height: 32px;
  }
}
@media (max-width: 1199px) {
  .catalog__sort-selected {
    height: 32px;
  }
}
@media (max-width: 767px) {
  .catalog__sort-selected {
    min-width: 184px;
  }
}
.catalog__sort-icon {
  height: 16px;
  margin-left: 12px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 16px;
  fill: var(--primary);
}
.catalog__sort-select {
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: var(--shadow-Z100);
  box-shadow: var(--shadow-Z100);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition:
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  width: 100%;
  will-change: transform;
  z-index: 5;
}
.catalog__sort-item {
  background: none;
  border: none;
  color: var(--text-primary);
  display: block;
  line-height: 18px;
  padding: 14px 4px 14px 16px;
}
.catalog__sort-item:hover {
  color: var(--bs-link-hover-color);
}
.active .catalog__sort-select {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.toggle-view {
  background-color: var(--bg-disabled);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  margin-left: 1px;
}
@media (max-width: 767px) {
  .toggle-view {
    margin-left: auto;
  }
}
.toggle-view__item {
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  position: relative;
  width: 32px;
}
.toggle-view__item:not(.active) {
  cursor: pointer;
}
.toggle-view__item.active {
  background-color: var(--white);
  -webkit-box-shadow: var(--shadow-Z100);
  box-shadow: var(--shadow-Z100);
  color: var(--text-tertiary);
}
.toggle-view__item.active .toggle-view__icon {
  fill: var(--text-tertiary);
}
.toggle-view__icon {
  margin: auto;
  pointer-events: none;
  fill: var(--icons);
  height: 16px;
  width: 16px;
}
@media (max-width: 1199px) {
  .toggle-view__icon {
    height: 16px;
    width: 16px;
  }
}
.catalog__products {
  margin-bottom: 24px;
}
@media (min-width: 375px) {
  .catalog__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .catalog__products .card__long-footer-content {
    font-size: 11px;
    line-height: 14px;
  }
  .catalog__products .card__long-basket {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .catalog__products .card__long-footer-content {
    font-size: 14px;
    line-height: 18px;
  }
}
.catalog__products .card__long-fast {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.catalog__products .cat__empty-block .cat__empty_title {
  font-size: 24px;
  line-height: 22px;
  margin-bottom: 10px;
}
.catalog__products .cat__empty-block .cat__empty_dop-info {
  line-height: 22px;
  margin-bottom: 10px;
  text-align: center;
}
.catalog__products .cat__empty-block .cat__empty_clear {
  text-align: center;
}
.catalog__products-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 1px;
  width: 100%;
}
.catalog__products-card .product-day__head {
  display: none;
}
.catalog__products-card .card__article {
  height: 100%;
  min-height: auto;
}
@media (min-width: 768px) {
  .catalog__products-card {
    width: 100%;
  }
}
.catalog__products-info {
  border-radius: 16px;
  display: block;
  height: 100%;
  margin-bottom: 24px;
  margin-top: 8px;
}
@media (min-width: 1200px) {
  .catalog__products-info {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .catalog__products-info--tablet {
    display: none;
  }
}
@media (max-width: 1199px) {
  .catalog__products-info {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .catalog__products-info--desk {
    display: none;
  }
}
.catalog__products-list .card__long-head {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.catalog__products-list .card__article {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.catalog__products-list .card__article-content {
  padding: 14px 31px 19px 38px;
}
.catalog__products-list .card__article-date {
  margin-left: 16px;
  margin-right: auto;
}
.catalog__products-list .card__article-media {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 269px;
}
.catalog__products-list .card__long {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.catalog__products-list .card__long-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.catalog__products-list .card__long-bottom {
  padding-top: 6px;
}
.catalog__products-list .card__long-footer {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog__products-list .card__long-footer-content {
  line-height: 21px;
  margin-bottom: 20px;
  width: 100%;
}
.catalog__products-list .card__long-eco {
  left: 17%;
  right: auto;
}
.catalog__products-list .detail__spec-item {
  margin-bottom: 7px;
}
.catalog__products-list .detail__spec-text {
  background-color: var(--white);
}
.catalog__products-list .card__long-discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
.catalog__products-list .card__long-discount .badge--rebate {
  width: 100%;
}
.catalog__products-list .card__long-fast {
  margin-bottom: 8px;
}
.catalog__products-list .detail__spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.catalog__products-list .detail__spec-label,
.catalog__products-list .detail__spec-val {
  position: relative;
  width: 50%;
}
.catalog__products-list .detail__spec-label {
  font-weight: 400;
}
.catalog__products-list .detail__spec-label:before {
  border-bottom: 1px dotted var(--stroke);
  bottom: 0.2em;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}
.catalog__products-list .detail__spec-val {
  font-weight: 700;
  margin-bottom: 0;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .catalog__products-list .card__long-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .catalog__products-list .card__long-basket-decor {
    margin-right: 8px;
  }
  .catalog__products-list .card__long-basket {
    width: 100%;
  }
  .catalog__products-list .card__long-footer {
    padding-top: 12px;
  }
  .catalog__products-list .card__long-gift {
    margin-bottom: 16px;
    width: 100%;
  }
  .catalog__products-list .card__long-body {
    padding-top: 8px;
  }
  .catalog__products-list .card__long-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .catalog__products-list .card__long-installment {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .catalog__products-list .card__long-head {
    width: 18%;
  }
  .catalog__products-list .card__long-title {
    height: 44px;
    max-width: 97%;
  }
  .catalog__products-list .card__long-media {
    height: 152px;
  }
  .catalog__products-list .card__long-body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .catalog__products-list .card__long-pre-order {
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .catalog__products-list .card__long-bottom {
    width: 25%;
  }
}
@media (max-width: 1199px) {
  .catalog__products-list .detail__spec-label,
  .catalog__products-list .detail__spec-val {
    font-size: 13px;
  }
  .catalog__products-list .detail__spec-label {
    width: 65%;
  }
  .catalog__products-list .detail__spec-val {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .catalog__products-list .card__long {
    min-height: 200px;
  }
  .catalog__products-list .card__long-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .catalog__products-list .card__long-head {
    padding-bottom: 32px;
    position: relative;
    width: 46%;
  }
  .catalog__products-list .card__long-media {
    height: 158px;
    margin-bottom: 12px;
    padding: 16px 8px 8px;
  }
  .catalog__products-list .card__long-img {
    margin-top: 0;
  }
  .catalog__products-list .card__long-basket {
    margin-left: auto;
  }
  .catalog__products-list .card__long-meta {
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    padding-right: 16px;
    position: absolute;
    width: 100%;
  }
  .catalog__products-list .card__long-comments,
  .catalog__products-list .card__long-star,
  .catalog__products-list .card__long-toggle {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .catalog__products-list .card__long-comments,
  .catalog__products-list .card__long-star {
    margin-right: 0;
    min-width: 38px;
    padding: 4px 0;
  }
  .catalog__products-list .card__long-star {
    margin-right: 7px;
  }
  .catalog__products-list .card__long-toggle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0;
    padding: 4px 2px 8px;
  }
  .catalog__products-list .card__long-eco {
    height: 26px;
    left: 12%;
    overflow: hidden;
    right: auto;
    top: 104px;
  }
  .catalog__products-list .card__long-footer-content {
    display: none;
  }
  .catalog__products-list .card__long-gift {
    position: relative;
    z-index: 1;
  }
  .catalog__products-list .card__article {
    overflow-x: auto;
  }
  .catalog__products-list .card__article-content {
    min-width: 200px;
    padding: 14px 8px 19px 16px;
  }
  .catalog__products-list .card__article-badges,
  .catalog__products-list .card__article-date {
    margin-left: 0;
  }
  .catalog__products-list .card__article-date {
    margin-bottom: 4px;
  }
  .catalog__products-list .card__long-pre-order {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .catalog__products-list .card__long-meta {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .catalog__products-list .card__long-toggle {
    width: 33%;
  }
  .catalog__products-list .card__long-comments,
  .catalog__products-list .card__long-star {
    width: 40%;
  }
}
@media (max-width: 359px) {
  .catalog__products-list .card__long-toggle {
    bottom: 28px;
    left: 0;
  }
  .catalog__products-list .card__long-toggle + .card__long-toggle {
    margin-left: 62px;
  }
  .catalog__products-list .card__long-gift {
    margin-right: 0;
  }
  .catalog__products-list .card__long-head {
    width: 35%;
  }
  .catalog__products-list .card__long-title {
    font-size: 12px;
    height: 56px;
    line-height: 16px;
    padding-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .catalog__products-list .card__long {
    padding-left: 16px;
    padding-right: 16px;
  }
  .catalog__products-list .card__long-head {
    padding-right: 36px;
    width: 33%;
  }
  .catalog__products-list .card__long-media {
    margin-bottom: 14px;
  }
  .catalog__products-list .card__long-title {
    font-size: 18px;
    line-height: 24px;
  }
  .catalog__products-list .card__long-body {
    padding-right: 12px;
  }
  .catalog__products-list .card__long-basket {
    height: 44px;
  }
  .catalog__products-list .card__long-basket-decor {
    height: 20px;
    width: 20px;
  }
  .catalog__products-list .card__long-bottom {
    width: 44%;
  }
  .catalog__products-list .card__long-footer-content {
    margin-bottom: 4px;
  }
  .catalog__products-list .card__long-eco {
    left: 26%;
    right: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .catalog__products-list .card__long-bottom {
    width: 30%;
  }
}
.catalog__products-rows .card__long {
  padding-bottom: 24px;
}
.catalog__products-rows .card__long-media {
  height: 240px;
}
.catalog__products-rows .card__article-badges {
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 16px;
}
.catalog__products-rows .detail__spec-item {
  display: none;
}
@media (min-width: 768px) {
  .catalog__products-rows {
    margin-right: -1px;
  }
  .catalog__products-rows .catalog__products-card {
    padding-right: 1px;
  }
}
@media (min-width: 1200px) {
  .catalog__products-rows .card__long-content {
    display: inherit;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .catalog__products-rows .card__long-media {
    margin-bottom: 12px;
  }
  .catalog__products-rows .card__long-bottom {
    display: inherit;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
  }
  .catalog__products-rows .catalog__products-card {
    width: 25%;
  }
  .catalog__products-rows.catalog__products-without-filters
    .catalog__products-card {
    width: 20%;
  }
  .catalog__products-rows .card__long-installment {
    margin-top: auto;
  }
  .catalog__products-rows .card__long-discount + .card__long-installment {
    margin-top: 0;
  }
  .catalog__products-rows .card__long-discount + .card__long-price {
    margin-top: auto;
  }
}
@media (max-width: 1199px) {
  .catalog__products-rows .card__long-media {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .catalog__products-rows .card__long-fast,
  .catalog__products-rows .card__long-footer-content {
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .catalog__products-rows .card__long-footer {
    margin: 0 -8px -4px;
    padding: 4px 8px;
  }
}
@media (min-width: 375px) and (max-width: 575px) {
  .catalog__products-rows .catalog__products-card {
    -ms-flex-preferred-size: calc(50% - 1px);
    flex-basis: calc(50% - 1px);
    margin-right: 1px;
    width: calc(50% - 1px);
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .catalog__products-rows .catalog__products-card {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) and (max-width: 1366px) {
  .catalog__products-rows .card__long-fast {
    font-size: 13px;
  }
}
.smart-home__collect-media {
  border-radius: 16px;
  height: 176px;
  overflow: hidden;
}
.smart-home__collect-img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.smart-home__collect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 475px) {
  .smart-home__collect-item {
    height: 48px;
    margin-left: 16px;
  }
}
@media (min-width: 768px) {
  .smart-home__collect-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  .smart-home__collect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .smart-home__collect-media {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 43.3%;
    flex: 0 0 43.3%;
    max-width: 43.3%;
  }
  .smart-home__collect-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 56.7%;
    flex: 0 0 56.7%;
    max-width: 56.7%;
  }
  .smart-home__collect-item {
    margin-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1280px) {
  .smart-home__collect-list {
    padding-left: 8px;
  }
}
@media (max-width: 1199px) {
  .smart-home__collect-item,
  .smart-home__collect-media {
    margin-bottom: 12px;
  }
  .smart-home__collect-item:nth-of-type(4) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 767px) {
  .smart-home__collect-item {
    font-size: 14px;
    letter-spacing: 0.02em;
    padding-left: 24px;
    padding-right: 24px;
  }
  .smart-home__collect-item .btn__decor {
    height: 16px;
    width: 16px;
  }
  .smart-home__collect-img {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1279px) {
  .smart-home__collect-list {
    margin-left: -16px;
  }
  .smart-home__collect-list .btn__decor {
    height: 20px;
    margin-left: 4px;
    width: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .smart-home__collect-media {
    height: 172px;
  }
}
.filter__box {
  margin-bottom: 24px;
}
.filter__box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.filter__box-title.collapsed .accordion__toggle-arrow {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.filter__box-title .accordion__toggle-arrow {
  fill: var(--primary);
}
.filter__search {
  margin-bottom: 14px;
  position: relative;
}
@media (min-width: 1200px) {
  .filter__search {
    max-width: 95%;
  }
}
@media (max-width: 1199px) {
  .filter__search {
    width: 100%;
  }
}
.filter__search-input {
  background-color: var(--white);
  border: 1px solid #342edd;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  height: 36px;
  line-height: 18px;
  padding: 8px 14px;
  width: 100%;
}
.filter__search-input:focus {
  outline: none;
}
.filter__search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
}
.filter__search-icon {
  height: 16px;
  margin: auto;
  pointer-events: none;
  width: 16px;
  fill: var(--icons);
}
.filter__box-visible .filter__fieldset {
  overflow-y: auto;
}
@media (min-width: 1200px) {
  .filter__box-visible .filter__fieldset {
    height: auto;
  }
  .filter__box-visible .filter__fieldset::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }
  .filter__box-visible .filter__fieldset::-webkit-scrollbar-track {
    background: var(--bg-disabled);
    border-radius: 4px;
  }
  .filter__box-visible .filter__fieldset::-webkit-scrollbar-thumb {
    background: var(--stroke);
    border-radius: 4px;
  }
  .filter__box-visible .filter__fieldset::-webkit-scrollbar-thumb:hover {
    background: var(--text-disabled);
  }
}
@media (max-width: 1199px) {
  .filter__box-visible .filter__box-inner {
    background-color: var(--white);
    height: 100%;
    padding: 20px;
    position: fixed;
  }
  .filter__box-visible .filter__fieldset {
    max-height: calc(100% - 70px);
  }
  .filter__box-visible .filter__toggle {
    left: 20px;
    position: absolute;
    top: 5px;
    z-index: 2;
  }
  .filter__box-visible .filter__toggle-icon {
    display: block;
  }
  .filter__box-visible .filter__toggle-text {
    display: none;
  }
  .filter__box-visible .filter__box-title {
    padding-left: 40px;
  }
  .filter__box-inner {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
  }
}
.filter__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -13px;
  padding: 5px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .filter__fieldset {
    max-height: 320px;
    overflow: hidden;
    padding-right: 20px;
  }
}
.filter__item {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  margin-bottom: 8px;
  margin-top: 8px;
  order: 1;
}
.filter__item--search {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.filter__item--search .form__checkbox-label {
  font-weight: 700;
}
.filter__toggle {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 16px;
  margin-top: 16px;
  padding: 0;
}
.filter__toggle-icon {
  display: none;
  height: 24px;
  width: 24px;
  fill: var(--text-tertiary);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter__stickers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 90%;
}
.filter__stickers-badge {
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 8px;
}
.filter__tumbler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter__tumbler-value {
  color: var(--text-tertiary);
  margin-left: 16px;
  margin-right: 16px;
}
.filter__reset:before {
  content: attr(data-text);
}
@media (max-width: 1199px) {
  .filter__reset {
    background-color: var(--warn);
    min-width: 112px;
  }
  .filter__panel,
  .filter__sorting {
    background-color: var(--white);
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .filter__sorting {
    bottom: 0;
    padding: 24px;
  }
  .filter__sorting-btn {
    height: 52px;
    width: 100%;
  }
  .filter__sorting-badge {
    margin-right: 8px;
  }
  .filter__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 5px 24px;
  }
  .filter__panel:before {
    content: "";
    width: 56px;
  }
  .filter__panel-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto;
  }
}
.catalog__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
@media (min-width: 576px) {
  .catalog__heading {
    margin-left: auto;
  }
}
@media (max-width: 1199px) {
  .catalog__heading {
    -ms-flex-item-align: start;
    align-self: flex-start;
    min-height: 32px;
  }
}
@media (max-width: 767px) {
  .catalog__heading {
    display: none;
    font-size: 14px;
    padding-top: 8px;
  }
}
.catalog__heading-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
}
@media (max-width: 1199px) {
  .catalog__heading-rating {
    color: var(--text-secondary);
    margin-bottom: -3px;
  }
}
.catalog__heading-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .catalog__heading-meta {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .catalog__heading-meta {
    color: var(--text-secondary);
    font-weight: 700;
  }
}
.catalog__heading-rating-num {
  color: var(--text-tertiary);
  font-family: var(--font-sans-loos);
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .catalog__heading-rating-num {
    margin-left: 8px;
  }
}
@media (max-width: 575px) {
  .catalog__heading-rating-num {
    margin-left: 8px;
  }
}
@media (min-width: 1200px) {
  .catalog__heading-star {
    display: none;
  }
}
@media (max-width: 1199px) {
  .catalog__heading-star {
    height: 16px;
    width: 16px;
    fill: #ffd557;
  }
  .catalog__heading-starts {
    display: none !important;
  }
}
.fast-tag {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .fast-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .fast-tag.fast-tag__hide .fast-tag__list {
    height: 32px;
  }
}
@media (max-width: 1199px) {
  .fast-tag.fast-tag__hide .fast-tag__list {
    height: 156px;
  }
}
.fast-tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fast-tag__list {
    margin-right: -8px;
  }
}
.fast-tag__item {
  margin-right: 16px;
}
.fast-tag__item:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 1199px) {
  .fast-tag__item:not(:last-child) {
    margin-right: 8px;
  }
}
.fast-tag__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg-disabled);
  border-radius: 8px;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 700;
  height: 32px;
  line-height: 1.2;
  padding: 4px 24px;
}
.fast-tag__btn-arrow {
  fill: var(--primary);
}
.fast-tag__btn-arrow,
.fast-tag__gift-decor {
  height: 16px;
  margin-left: 8px;
  width: 16px;
}
.fast-tag__gift {
  background-color: var(--pink);
}
.fast-tag__gift,
.fast-tag__gift:hover {
  color: var(--white);
}
.fast-tag__gift-decor {
  fill: var(--white);
}
.fast-tag__more {
  background-color: transparent;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 32px;
  line-height: 1;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.fast-tag__btn,
.fast-tag__more {
  letter-spacing: 0.02em;
}
.catalog__reviews-item {
  background-color: var(--white);
  border-radius: 16px;
  color: var(--text-primary);
  display: block;
  height: 100%;
  margin-right: 1px;
  padding: 24px;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition:
    box-shadow 0.2s ease-in-out,
    -webkit-box-shadow 0.2s ease-in-out;
}
.catalog__reviews-item:hover {
  -webkit-box-shadow: var(--shadow-Z200);
  box-shadow: var(--shadow-Z200);
}
.catalog__reviews-top {
  margin-bottom: 16px;
}
.catalog__reviews-top,
.catalog__reviews-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog__reviews-user-avatar {
  height: 32px;
  margin-right: 8px;
  width: 32px;
}
.catalog__reviews-user-avatar:before {
  border-width: 1px;
  height: 8px;
  right: -1px;
  top: 0;
  width: 8px;
}
.catalog__reviews-user-avatar:after {
  font-size: 16px;
}
.catalog__reviews-user-name {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 8px;
}
.catalog__reviews-date {
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .catalog__reviews-date {
    white-space: nowrap;
  }
}
.catalog__reviews-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.catalog__reviews-rating-num {
  color: var(--text-secondary);
  margin-left: 8px;
}
.catalog__reviews-title {
  font-family: var(--font-sans-loos);
  font-weight: 500;
  margin-bottom: 8px;
  -webkit-line-clamp: 3;
}
.catalog__reviews-text,
.catalog__reviews-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.catalog__reviews-text {
  color: var(--text-secondary);
  -webkit-line-clamp: 5;
}
.catalog__reviews-starts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 159px;
  min-width: 159px;
  overflow: hidden;
}
.catalog__reviews-starts:after,
.catalog__reviews-starts:before {
  background-position-x: -1px;
  background-repeat: repeat-x;
  background-size: 32px 21px;
  content: "";
  height: 24px;
  left: 0;
  top: 0;
}
.catalog__reviews-starts:before {
  background-image: url(../assets/img/decor/star.svg);
  position: absolute;
  width: 100%;
}
.catalog__reviews-starts:after {
  background-image: url(../assets/img/decor/star-gold.svg);
  position: relative;
  width: inherit;
  z-index: 2;
}
@media (max-width: 1199px) {
  .catalog__reviews-starts {
    display: none;
  }
}
@media (min-width: 768px) {
  .catalog__reviews .carousel__component {
    margin-top: -16px;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .catalog__reviews-title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .catalog__reviews {
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  .catalog__reviews .carousel__arrow {
    display: none;
  }
  .catalog__reviews-item {
    width: 100%;
  }
}
.catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1200px) {
  .catalog__top {
    margin-bottom: 26px;
  }
}
@media (max-width: 1199px) {
  .catalog__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}
.catalog__top-toggle-filter {
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 3;
}
@media (min-width: 1200px) {
  .catalog__top-toggle-filter {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog__top-toggle-filter {
    margin-bottom: 16px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .catalog__top-toggle-filter {
    margin-right: auto;
  }
}
.catalog__top-toggle-filter-inner {
  background-color: var(--bg-disabled);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  margin: 0 auto;
  pointer-events: none;
  width: 32px;
}
.catalog__top-toggle-filter-icon {
  height: 16px;
  margin: auto;
  width: 16px;
  fill: var(--text-tertiary);
}
.selected-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .selected-filters {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .selected-filters {
    margin-top: 16px;
  }
}
.selected-filters__item {
  border-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 0 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selected-filters__item,
.selected-filters__item:hover {
  color: var(--text-tertiary);
}
.selected-filters__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 32px;
}
.selected-filters__close:hover .selected-filters__close-icon {
  fill: var(--secondary);
}
.selected-filters__close-icon {
  height: 16px;
  margin: auto;
  width: 16px;
  fill: var(--text-tertiary);
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
.selected-filters__reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  margin-bottom: 8px;
  margin-right: 4px;
  min-width: 110px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.selected-filters__reset:hover {
  color: var(--secondary);
}
.selected-filters__reset:hover .selected-filters__close-icon {
  fill: var(--secondary);
}
.catalog__seo-text {
  line-height: 20px;
  margin-bottom: 20px;
  max-height: 80px;
  overflow: hidden;
}
.catalog__seo-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  padding: 8px 0;
}
.catalog__seo-btn-icon {
  height: 16px;
  margin-left: 8px;
  width: 16px;
  fill: var(--primary);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.catalog-showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .catalog-showcase {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .catalog-showcase {
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  .catalog-showcase {
    margin-left: -21px;
    margin-right: -21px;
    overflow-x: auto;
    padding-left: 13px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .catalog-showcase {
    margin: 0 -8px;
  }
}
@media (min-width: 768px) {
  .catalog-showcase__item {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .catalog-showcase__item {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1199px) {
  .catalog-showcase__item {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767px) {
  .catalog-showcase__item {
    padding-bottom: 8px;
    width: 142px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .catalog-showcase__item {
    margin-bottom: 16px;
  }
}
.catalog__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1200px) {
  .catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .catalog__side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 40px;
  }
  .catalog__side-inner {
    padding-bottom: 24px;
  }
  .catalog__box:not(:last-of-type) {
    margin-bottom: 24px;
  }
  .catalog__toggle {
    margin-bottom: 18px;
  }
  .catalog__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
  }
  .catalog__link:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .catalog__link-text {
    color: var(--text-secondary);
    margin-left: 16px;
  }
  .catalog__container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    max-width: 100%;
    order: 1;
  }
}
@media (max-width: 1199px) {
  .catalog__side {
    background-color: var(--bg-light);
    height: 100%;
    left: 0;
    padding: 40px 0 80px;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
      transform 0.2s ease-in-out,
      -webkit-transform 0.2s ease-in-out;
    width: 100%;
    will-change: transform;
    z-index: 30;
  }
  .catalog__side-inner {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 744px;
    overflow-y: auto;
    padding: 24px;
    width: 100%;
  }
  .catalog__side-open .catalog__side {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
