.blog-card {
  display: grid;
  grid-template-columns: auto 24.3vw;
  background-color: #ffffff;
  border-radius: 1rem;
}

.blog-card--bigger-title .blog-card__title {
  font-size: 2.25rem;
}

.blog-card--grey {
  padding: 0;
  background: #f0f3f5;
}

.blog-card--accent {
  background: #5f6c75;
}

.blog-card__info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.blog-card__title {
  margin-bottom: .76rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

.blog-card__desc {
  margin-bottom: 1rem;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.21;
  font-weight: 400;
  color: #a1aeb3;
}

.blog-card__button {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.blog-card__media {
  padding-top: .76rem;
  padding-right: .76rem;
  padding-bottom: .76rem;
  display: flex;
  align-items: stretch;
}

.blog-card__media-compare {
  margin-left: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: .5rem;
}

.blog-card__media-compare .blog-card__pic {
  height: 100%;
}

.blog-card__media-compare .blog-card__pic, .blog-card__media-compare .blog-card__img {
  border-radius: var(--brad-half);
}

.blog-card__img {
  object-fit: cover;
  border-radius: var(--brad-half);
}

.blog-card--grey .blog-card__media {
  padding: 0;
}

.blog-card--grey .product-card {
  border-radius: 1rem;
}

.blog-card--accent .blog-card__title {
  color: #f0f3f5;
}

.blog-card--accent .blog-card__button {
  --button-bg: #f0f3f5;
}

@media (any-hover: hover) {
  .blog-card--accent .blog-card__button:hover {
    --button-color: #ffffff;
    --button-bg: #000000;
  }
}
.blog-card__pic {
  width: 100%;
}

@media (max-width: 767px) {
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card__desc {
    font-family: 'RF Dewi', sans-serif;
  }

  .blog-card__media {
    padding-top: 0;
  }

  .blog-card__media-compare .blog-card__pic, .blog-card__media-compare .blog-card__img {
    height: calc(var(--index) * 85);
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .blog-card {
    border-radius: 25px;
  }

  .blog-card--bigger-title .blog-card__title {
    margin-bottom: 16px;
    font-size: 51px;
  }

  .blog-card__info {
    padding: 81px;
  }

  .blog-card--grey .blog-card__info {
    padding-top: 60px;
  }

  .blog-card__title {
    margin-bottom: 25px;
    font-size: 40px;
  }

  .blog-card__desc {
    margin-bottom: 70px;
    font-size: 28px;
  }

  .blog-card__button {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-card__media {
    padding: 24px;
  }

  .blog-card__img {
    border-radius: 25px;
  }

  .blog-card--grey .product-card {
    border-radius: 25px;
  }

  .blog-card--grey .product-card__title {
    font-size: 40px;
  }
}
@media (max-width: 601px) {
  .blog-card--bigger-title .blog-card__title {
    margin-bottom: 3px;
    font-size: 25px;
  }

  .blog-card__title {
    margin-bottom: 10px;
  }

  .blog-card__button {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .blog-card__media {
    padding-left: 12px;
  }

  .blog-card .product-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .blog-card--grey .blog-card__info {
    padding-top: 30px;
  }

  .blog-card__desc {
    margin-bottom: 34px;
  }

  .blog-card--grey .product-card__title {
    margin-bottom: 8px;
    font-size: 20px;
  }
}
.blog-related-card {
  margin-bottom: .5rem;
  padding: .76rem 1.75rem 1.75rem;
  min-height: var(--sidebar-minh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: .76rem;
}

.blog-related-card:last-of-type {
  margin-bottom: 0;
}

.blog-related-card__pic {
  margin-left: -1.0625rem;
  margin-bottom: 1.75rem;
  width: calc(100% + 2.125rem);
  height: calc(var(--index) * 18.6);
  display: block;
}

.blog-related-card__img {
  height: 100%;
  display: block;
  border-radius: var(--brad-half);
  object-fit: cover;
}

.blog-related-card__title {
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 602px) and (max-width: 767px) {
  .blog-related-card {
    margin-bottom: 16px;
    padding: 18px 50px 50px;
    --sidebar-minh: 600px;
  }

  .blog-related-card__pic {
    margin-bottom: 40px;
    height: 408px;
  }

  .blog-related-card__img {
    border-radius: 12px;
  }

  .blog-related-card__title {
    margin-bottom: 50px;
    font-size: 32px;
  }

  .blog-related-card__meta {
    font-size: 24px;
  }
}
@media (max-width: 601px) {
  .blog-related-card {
    padding: 9px 25px 25px;
    --sidebar-minh: 350px;
  }

  .blog-related-card__pic {
    margin-bottom: 20px;
    height: 208px;
  }

  .blog-related-card__title {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .blog-related-card__meta {
    font-size: 12px;
  }
}
.callback-cards {
  padding-top: 2.5rem;
}

.callback-cards__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: .5rem;
}

.callback-cards-card {
  --brad: 1rem;
  padding: 2.5rem;
  min-height: 23.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: var(--brad);
}

.callback-cards-card__title {
  margin-bottom: .925em;
  font-size: 1.687rem;
  line-height: 110%;
  font-weight: 400;
  color: #000000;
}

.callback-cards-card__title > * {
  color: inherit;
}

.callback-cards-card__desc {
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
}

.callback-cards-card__button {
  padding: .785em 1.285em 1em;
}

@media (max-width: 767px) {
  .callback-cards {
    padding-top: 20px;
  }

  .callback-cards__gallery {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
@media (max-width: 767px) and (min-width: 602px) {
  .callback-cards__gallery {
    column-gap: 16px;
  }

  .callback-cards-card {
    min-height: 394px;
    --brad: 25px;
  }

  .callback-cards-card__title {
    margin-bottom: 32px;
    font-size: 32px;
  }

  .callback-cards-card__desc {
    font-size: 24.58px;
  }

  .callback-cards-card__button {
    --fz-button: 24.58px;
  }
}
@media (max-width: 601px) {
  .callback-cards-card {
    padding: 20px;
    min-height: 192px;
  }

  .callback-cards-card__title {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.25;
  }

  .callback-cards-card__desc {
    font-size: 12px;
    line-height: 1.2;
  }

  .callback-cards-card__desc br {
    display: none;
  }

  .callback-cards-card__button {
    --fz-button: 12px;
    padding: 7px 15px 9px;
    font-weight: 400;
  }
}
.case-review-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #5f6c75;
  border-radius: 1rem;
}

.case-review-card__top {
  margin-bottom: 2.5rem;
}

.case-review-card__title {
  margin-bottom: .5rem;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.2142;
  font-weight: 400;
  font-style: normal;
  color: #a1aeb3;
}

.case-review-card__desc {
  display: -webkit-box;
  overflow: hidden;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #f0f3f5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.case-review-card__pic {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  display: block;
  --size: 6.25rem;
}

.case-review-card__img {
  object-fit: cover;
  border-radius: var(--brad-half);
}

.case-review-card__profile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.case-review-card__profile-link {
  padding: 0 .5rem .25rem;
  display: block;
  background: #f0f3f5;
  border-radius: var(--brad-half);
}

.case-review-card__bottom {
  width: 100%;
}

@media (min-width: 602px) and (max-width: 767px) {
  .case-review-card {
    padding: 80px;
    border-radius: 25px;
  }

  .case-review-card__top {
    margin-bottom: 80px;
  }

  .case-review-card__title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .case-review-card__desc {
    font-size: 28px;
  }

  .case-review-card__pic {
    --size: 200px;
  }

  .case-review-card__img {
    border-radius: 12px;
  }

  .case-review-card__profile-link {
    padding: 2px 16px 8px;
    font-size: 28px;
    border-radius: 12px;
  }
}
@media (max-width: 601px) {
  .case-review-card__title {
    margin-bottom: 12px;
  }
}
.categories-card--wide {
  width: calc(50% - .25rem) !important;
}

.categories-card--tight {
  width: calc(20% - .5rem);
}

.categories-card__pic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.categories-card__pic_new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.categories-card__img {
  border-radius: var(--brad);
  object-fit: cover;
}

.categories-card__name {
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

.categories-card--dark .categories-card__pic {
  background-color: #5f6c75;
}

.categories-card--dark .categories-card__name {
  color: #ffffff;
}

.categories-card__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .categories-card--wide {
    width: 100%;
    max-width: 100%;
  }

  .categories-card--tight {
    margin-bottom: .6rem;
    width: 32%;
    min-height: 228px;
  }

  .categories-card__pic {
    background-color: #ffffff;
  }

  .categories-card__pic_new {
    background-color: #ffffff;
  }

  .categories-card__img {
    object-fit: contain;
  }

  .categories-card--image-mobile-cover .categories-card__img {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .categories-card--tight {
    margin-left: 0;
    margin-right: 0;
    width: 48.5%;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .categories-card__name {
    font-size: 24px;
  }
}
@media (max-width: 601px) {
  .categories-card__name {
    max-width: 70%;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .categories-card--tight {
    min-height: 177px;
  }
}
.changes-card {
  margin-right: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.changes-card__before-img, .changes-card__after-img {
  object-position: bottom;
  object-fit: cover;
}

.changes-card:nth-of-type(even) {
  margin-right: 0;
}

.changes-card:nth-of-type(even) .changes-card__before-img, .changes-card:nth-of-type(even) .changes-card__after-img {
  object-position: top;
}

.changes-card__title {
  position: absolute;
  top: -1.75rem;
  left: 0;
  margin-bottom: .5rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
}

.changes-card__before {
  position: relative;
  margin-right: 0.5rem;
}

.changes-card__before-pic {
  --size: 14.5rem;
  width: 100%;
  max-width: var(--size);
  height: var(--size);
  display: block;
}

.changes-card__after-pic {
  width: 100%;
  max-width: var(--size);
  height: var(--size);
  display: block;
  --size: 22rem;
}

.changes-card__before-img, .changes-card__after-img {
  border-radius: 0.75rem;
}

.changes-card__before-pic, .changes-card__after-pic {
  border-radius: 0.75rem;
}

.changes-card:nth-of-type(odd) {
  padding-top: 9rem;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .changes-card {
    justify-content: flex-end;
  }

  .changes-card__before-pic {
    --size: 150px;
  }
}
@media (max-width: 767px) {
  .changes-card {
    margin-right: 0;
    flex-direction: row-reverse;
  }

  .changes-card:last-child {
    margin-bottom: 0;
  }

  .changes-card:nth-of-type(even) {
    justify-content: flex-start;
  }

  .changes-card:nth-of-type(even) .changes-card__before {
    margin-left: 16px;
    margin-right: 0;
    margin-bottom: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .changes-card:nth-of-type(even) .changes-card__before .changes-card__title {
    position: static;
    margin-top: 6px;
    margin-left: auto;
    margin-bottom: 0;
    text-align: right;
  }

  .changes-card__title {
    top: -72px;
    margin-bottom: 20px;
    max-width: 240px;
    font-size: 24px;
  }

  .changes-card:nth-of-type(odd) {
    padding-top: 0;
    flex-direction: row;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .changes-card {
    margin-bottom: 16px;
  }

  .changes-card__before {
    margin-right: 16px;
  }

  .changes-card__before-pic {
    --size: 288px;
  }

  .changes-card__after-pic {
    --size: 440px;
  }

  .changes-card__before-pic, .changes-card__after-pic {
    border-radius: 24.5px;
  }
}
@media (max-width: 610px) {
  .changes-card {
    margin-bottom: 8px;
  }

  .changes-card:nth-of-type(even) .changes-card__before {
    margin-left: 8px;
  }

  .changes-card:nth-of-type(even) .changes-card__before .changes-card__title {
    margin-top: 3px;
  }

  .changes-card__title {
    top: -36px;
    margin-bottom: 10px;
    max-width: 120px;
    font-size: 12px;
    line-height: 1.2;
  }

  .changes-card__before-pic {
    --size: 144px;
  }

  .changes-card__after-pic {
    --size: 220px;
    --height: 210px;
  }
}
.changes-cases-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: .5rem;
  row-gap: .5rem;
}

.changes-cases-card .blog-card__media-compare {
  max-width: 100%;
}

.changes-cases-card .blog-card__button {
  margin-bottom: unset;
}

.changes-case-card-carousel-wrap {
  padding: 1.25rem;
  width: 100%;
  background: #ffffff;
  border-radius: 0.75rem;
}

.changes-case-card-carousel {
  width: 100%;
  height: 15vw;
}

.changes-case-card-carousel .swiper-button-next {
  right: 0;
}

.changes-case-card-carousel .swiper-button-prev {
  left: 0;
}

.changes-cases-card--has-carousel .changes-case-card-carousel-wrap {
  grid-column: 2/3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
}

.changes-case-card-carousel__slide {
  padding: 0.625rem 0.625rem 1.25rem;
}

.changes-case-card-carousel__title {
  margin-bottom: 0.9375rem;
  font-family: 'RF Dewi', serif;
  font-size: .875rem;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #a1aeb3;
}

.changes-case-card-carousel__title-link {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.changes-case-card-carousel__pic {
  margin-bottom: 1.625rem;
  height: 100%;
  display: block;
}

.changes-case-card-carousel__button {
  display: block;
}

@media (max-width: 767px) {
  .changes-cases-card {
    grid-template-columns: 1fr;
  }

  .changes-case-card-carousel {
    height: 66vw;
  }

  .changes-cases-card--has-carousel .changes-case-card-carousel-wrap {
    grid-column: unset;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .changes-case-card-carousel__slide {
    padding: 40px;
  }

  .changes-case-card-carousel__title {
    margin-bottom: 54px;
    font-size: 28px;
  }
}
.doc-card {
  margin-bottom: .5rem;
  padding: 5rem 7.5rem 5.125rem;
  display: grid;
  grid-template-columns: 21.3888888889vw auto;
  background-color: #ffffff;
  border-radius: 1rem;
  column-gap: 3.125rem;
}

.doc-card:last-of-type {
  margin-bottom: 0;
}

.doc-card__title {
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

.doc-card__desc {
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
}

.doc-card__desc p {
  margin-bottom: .8rem;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.doc-card__desc p:last-of-type {
  margin-bottom: 0;
}

.doc-card__desc a {
  font-size: inherit;
  font-weight: 500;
}

@media (max-width: 767px) {
  .doc-card {
    padding: 1.25rem 1.25rem 1.3125rem;
    display: block;
  }

  .doc-card__title {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .doc-card__desc {
    font-size: .75rem;
    line-height: 1.2;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .doc-card {
    border-radius: 24px;
  }
}
@media (max-width: 601px) {
  .doc-card__desc p {
    margin-bottom: 1.2em;
  }
}
.locations-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.locations-card__title {
  margin-bottom: .625rem;
  font-size: 1.6875rem;
  line-height: 110%;
  font-weight: 400;
  color: #000000;
}

.locations-card__address {
  margin-bottom: 1.75rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

.locations-card__desc {
  margin-bottom: 2em;
  max-width: 28.1875rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
}

.locations-card__pic {
  margin-bottom: 1.75rem;
  display: block;
}

.locations-card__img {
  object-fit: cover;
  border-radius: 0.75rem;
}

.locations-card--reverse .locations-card__pic {
  margin-bottom: 0;
  order: 5;
}

@media (max-width: 767px) {
  .locations-card__title {
    margin-bottom: 6px;
    font-size: 40px;
    line-height: 1.2;
  }

  .locations-card__address {
    margin-bottom: 48px;
    line-height: 1.2;
  }

  .locations-card__desc {
    margin-bottom: 32px;
    line-height: 1.2;
  }

  .locations-card__pic {
    margin-bottom: 0;
    order: 5;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .locations-card__address {
    font-size: 28px;
  }

  .locations-card__desc {
    max-width: 100%;
    font-size: 28px;
  }

  .locations-card__img {
    border-radius: 24px;
  }
}
@media (max-width: 601px) {
  .locations-card__title {
    margin-bottom: 3px;
    font-size: 20px;
  }

  .locations-card__address {
    margin-bottom: 24px;
  }

  .locations-card__desc {
    margin-bottom: 16px;
  }
}
.magazine-card {
  position: relative;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 1rem;
}

.magazine-card:first-child {
  background: #5f6c75;
}

.magazine-card__title {
  font-size: 1.6875rem;
  line-height: 110%;
  font-weight: 400;
  color: #f0f3f5;
}

.magazine-card__button {
  margin-left: 0.3125rem;
  margin-bottom: 1.9375rem;
  display: block;
}

@media (any-hover: hover) {
  .magazine-card__button:hover {
    --button-bg: #000000;
  }
}
.magazine-card__desc {
  max-width: 35.2777777778vw;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

.magazine-card:nth-child(1) {
  grid-area: card;
}

.magazine-card:nth-child(2) {
  grid-area: pic1;
}

.magazine-card:nth-child(3) {
  grid-area: pic2;
}

.magazine-card:nth-child(4) {
  grid-area: pic3;
}

.magazine-card:nth-child(5) {
  grid-area: pic4;
}

.magazine-card__bg-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}

.magazine-card__img {
  border-radius: 0.75rem;
  object-fit: cover;
}

.magazine-card-fullsize {
  position: relative;
  padding-bottom: 5rem;
  height: 45vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 1rem;
}

.magazine-card-fullsize:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  border-radius: 0.75rem;
}

.magazine-card-fullsize__info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.magazine-card-fullsize__pic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.magazine-card-fullsize__img {
  object-fit: cover;
  border-radius: 1rem;
  object-position: bottom;
}

.magazine-card-fullsize__title {
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

.magazine-card-fullsize__desc {
  margin-bottom: 2.625rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 767px) {
  .magazine-card__title {
    line-height: 1.18;
  }

  .magazine-card__desc {
    font-family: 'RF Dewi', sans-serif;
    line-height: 1.25;
  }

  .magazine-card:nth-child(5) {
    display: none;
  }

  .magazine-card-fullsize {
    height: 95vw;
  }

  .magazine-card-fullsize__pic {
    top: -10%;
    left: 0;
    width: 100%;
    height: 130%;
  }

  .magazine-card-fullsize__desc {
    font-family: 'RF Dewi', sans-serif;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .magazine-card {
    padding: 40px 34px 40px 40px;
    border-radius: 25px;
  }

  .magazine-card__title {
    font-size: 32px;
  }

  .magazine-card__button {
    margin-bottom: 62px;
    padding: 14px 34px 18px;
    font-size: 24px;
  }

  .magazine-card__desc {
    max-width: 100%;
    font-size: 24px;
  }

  .magazine-card__bg-pic {
    --brad: 25px;
  }

  .magazine-card-fullsize {
    border-radius: 24.5px;
  }

  .magazine-card-fullsize:before {
    border-radius: 24.5px;
  }

  .magazine-card-fullsize__img {
    border-radius: 24.5px;
  }

  .magazine-card-fullsize__title {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .magazine-card-fullsize__desc {
    margin-bottom: 36px;
    font-size: 24px;
  }
}
@media (max-width: 601px) {
  .magazine-card {
    padding: 20px 17px 20px 20px;
  }

  .magazine-card__title {
    font-size: 16px;
  }

  .magazine-card__button {
    margin-left: 0;
    margin-bottom: 24px;
    padding: 7px 17px 9px;
    font-size: 12px;
  }

  .magazine-card__desc {
    font-size: 12px;
  }

  .magazine-card-fullsize {
    padding-bottom: 8vw;
  }

  .magazine-card-fullsize__title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1;
  }

  .magazine-card-fullsize__desc {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .magazine-card-fullsize__button-about {
    padding: 9px 17px 11px;
  }
}
.message-card {
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 7.4375rem 5.625rem;
  width: 100%;
  max-width: 49.1666666667vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 1rem;
}

.message-card__title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #000000;
}

.message-card__desc {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.3125rem;
  max-width: 27.7777777778vw;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  color: #a1aeb3;
}

.message-card__link {
  margin-top: 1.125rem;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
}

.message-card__button {
  padding: .625rem 1.0625rem .75rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .message-card {
    padding: 3.5rem 2.25rem 3.75rem;
    max-width: 100%;
  }

  .message-card__title {
    font-size: 1.6875rem;
  }

  .message-card__desc {
    margin-bottom: 26px;
    max-width: 70vw;
  }

  .message-card__desc br {
    display: none;
  }

  .message-card__button {
    font-size: .875rem;
    font-weight: 400;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .message-card {
    border-radius: 24px;
  }
}
@media (max-width: 601px) {
  .message-card__desc {
    margin-bottom: 33px;
  }

  .message-card__button {
    width: 100%;
    display: block;
  }
}
.minicart {
  position: absolute;
  top: 2.5rem;
  right: 0;
  padding: 1.25rem 0 0.625rem 0.5rem;
  width: 21.5277777778vw;
  opacity: 0;
  pointer-events: none;
  background: #5f6c75;
  border-radius: 1rem;
  transition: all .3s ease, pointer-events 0s;
}

.minicart--visible {
  z-index: 2;
  opacity: 1;
  pointer-events: initial;
}

.minicart__message {
  margin-bottom: .5rem;
  font-size: .875rem;
  line-height: 1.2142;
  font-weight: 400;
  text-align: center;
  color: #a1aeb3;
}

.minicart__total {
  margin-bottom: 1.75rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

.minicart__content {
  position: relative;
  margin-bottom: 1.25rem;
  max-height: 25rem;
  overflow-x: hidden;
  overflow-y: auto;
}

.minicart__content::-webkit-scrollbar {
  width: 0.75rem;
  background-color: #5f6c75;
}

.minicart__content::-webkit-scrollbar-track {
  background-color: #5f6c75;
  border-radius: 0.75rem;
}

.minicart__content::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 0.25rem solid #5f6c75;
  border-radius: 0.75rem;
}

.minicart__content::-webkit-scrollbar-button {
  display: none;
}

.minicart__content:after {
  content: '';
  position: sticky;
  left: 0;
  bottom: 0;
  margin-top: -2.5rem;
  width: 100%;
  height: 2.5rem;
  display: block;
  pointer-events: none;
  background: linear-gradient(0deg, #5f6c75 10.88%, rgba(95, 108, 117, 0) 100%);
}

.minicart__content:before {
  content: '';
  position: sticky;
  top: 0;
  left: 0;
  margin-bottom: -1.6875rem;
  width: 100%;
  height: 2.5rem;
  display: block;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #5f6c75 10.88%, rgba(95, 108, 117, 0) 100%);
  transition: all .3s ease;
}

.minicart__content--scrolled:before {
  opacity: 1;
}

.minicart__bottom {
  padding-right: 0.5rem;
}

.minicart-item {
  margin-bottom: 1.25rem;
  padding-right: .5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.minicart-item__pic {
  --brad: var(--brad-half);
  --size: 5.0rem;
  margin-right: 1rem;
  padding: .375rem;
  width: 100%;
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  background-color: #ffffff;
  border-radius: var(--brad);
}

.minicart-item__img {
  border-radius: var(--brad);
}

.minicart-item__name {
  margin-bottom: 0.375rem;
  font-size: .875rem;
  line-height: 1.2142;
  font-weight: 400;
  color: #ffffff;
}

.minicart-item__variation {
  margin-bottom: 0.75rem;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 400;
  color: #a1aeb3;
}

.minicart-item__total {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.minicart-item__stepper {
  margin-right: .4375rem;
}

.minicart__button {
  padding-left: .625rem;
  padding-right: .625rem;
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: .375rem;
}

@media (any-hover: hover) {
  .minicart__button:hover {
    background-color: #000000;
  }
}
.minicart-item__price {
  font-size: .875rem;
  line-height: 1.2142;
  font-weight: 400;
  color: #ffffff;
}

.minicart__message + .minicart__bottom {
  margin-top: 1.5625rem;
}

@media (max-width: 767px) {
  .minicart {
    top: 51px;
    right: -8px;
  }

  .minicart__total {
    margin-bottom: -2px;
    padding-right: 10px;
  }

  .minicart__content {
    max-height: 353px;
  }

  .minicart-item__stepper {
    max-width: 56px;
  }

  .minicart-item__price {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .minicart {
    padding-right: 8px;
    width: 80vw;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .minicart {
    top: 97px;
    padding-top: 47px;
    width: 590px;
  }

  .minicart__message {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .minicart__total {
    margin-bottom: 12px;
    padding-right: 20px;
    font-size: 40px;
  }

  .minicart__content {
    width: 100%;
    max-width: 100%;
    max-height: 50vh;
  }

  .minicart-item {
    margin-bottom: 40px;
  }

  .minicart-item__pic {
    --size: 160px;
    --brad: 12px;
    margin-right: 32px;
    padding: 12px;
  }

  .minicart-item__name {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .minicart-item__variation {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .minicart-item__stepper {
    margin-right: 14px;
    max-width: 112px;
  }

  .minicart__button {
    font-size: 24px;
  }

  .minicart-item__price {
    font-size: 24px;
  }

  .minicart__message + .minicart__bottom {
    margin-top: 50px;
  }
}
@media (max-width: 601px) {
  .minicart__bottom {
    padding: 0;
  }
}
.order-history-card {
  margin-bottom: .5rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  line-height: 1.4;
}
.order-history-card:last-child {
  margin-bottom: 0;
}
.order-history-card__top {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all .3s ease;
}
.order-history-card__id {
  margin-bottom: 1.375rem;
  font-size: 0.875rem;
  color: #000000;
}
.order-history-card__status {
  font-size: 1.25rem;
  color: #000000;
}
.order-history-card__caption {
  font-size: 0.875rem;
  color: #A1AEB2;
}
.order-history-card__button-track {
  margin-right: 0.5rem;
}
.order-history-card__middle {
  margin-bottom: 1.25rem;
}
.order-history-card__middle .button {
  width: 100%;
}
.order-history-card__bottom {
  transition: margin-top .2s ease-in-out;
}
.order-history-card__info {
  margin-bottom: 0;
  max-height: 0.0625rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease-in-out;
  gap: 1.875rem 5.625rem;
  font-size: 0.875rem;
}
.order-history-card__info-row {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: .7fr 1fr;
  font-family: 'RF Dewi', sans-serif;
  gap: 2.25rem;
}
.order-history-card__info-row:first-child {
  margin-bottom: 2.5625rem;
}
.order-history-card__info-row:first-child .order-history-card__info-title {
  color: #A1AEB2;
  font-family: 'RF Dewi Extended', sans-serif;
}
.order-history-card__info-row:last-of-type {
  margin-bottom: 0;
}
.order-history-card__products {
  padding: 1.25rem;
  background: #f0f3f5;
  border-radius: var(--brad-half);
}
.order-history-card__products-title {
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #000000;
  transition: all .2s ease-in-out;
}
.order-history-card__products-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.order-history-card__products-more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6875rem;
  line-height: 110%;
  font-weight: 400;
  color: #5f6c75;
  background-color: #ffffff;
  border-radius: 0.375rem;
  cursor: pointer;
}
.order-history-card__total-short {
  margin-top: 1.125rem;
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  align-items: center;
  transition: all .3s ease;
  font-size: 0.875rem;
}
.order-history-card__total-short__buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.order-history-card__total-short__buttons > * {
  font-size: 0.875rem;
  font-weight: 500;
}
.order-history-card__total-short__buttons .button--thirdly {
  color: #A1AEB2;
}
.order-history-card__total-short__buttons .button--white {
  background: #fff;
}
.order-history-card__total-full {
  height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  gap: 0.5rem;
}
.order-history-card__total-card {
  margin-bottom: 0;
  background: #5F6C75;
  border-radius: 0.75rem;
  padding: 1.875rem;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.order-history-card__total-card .cart-total__row {
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
}
.order-history-card__total-card .cart-total__row .button--thirdly {
  font-size: 0.875rem;
  font-weight: 500;
  color: #A1AEB2;
  border-bottom: 0.0625rem solid #A1AEB2;
  font-family: "RF Dewi", serif;
}
.order-history-card .product-card {
  margin: 0 !important;
}
.order-history-card .product-card__inner {
  padding: 0 !important;
}
.order-history-card .product-card__pic {
  margin: 0 !important;
  aspect-ratio: 1/1;
  width: auto !important;
  height: auto !important;
  border-radius: 0.375rem;
}
.order-history-card .product-card__info {
  display: none;
}
.order-history-card--opened .order-history-card__bottom {
  margin-top: 3.125rem;
}
.order-history-card--opened .order-history-card__info {
  margin-bottom: 4.375rem;
  max-height: initial;
  overflow: initial;
  opacity: 1;
  pointer-events: auto;
}
.order-history-card--opened .order-history-card__products-title {
  opacity: 1;
  height: initial;
  overflow: initial;
  margin-bottom: 1.5rem;
}
.order-history-card--opened .cart-total__row {
  margin-bottom: 1.25rem;
  max-width: 100%;
}
.order-history-card--opened .cart-total__row:last-child {
  margin-bottom: 0;
}
.order-history-card--opened .order-history-card__products-gallery {
  display: flex;
  flex-direction: column;
}
.order-history-card--opened .order-history-card__total-card {
  padding-top: 1.9375rem;
  padding-right: 2.875rem;
}
.order-history-card--opened .checkout__subtotal {
  padding-top: 2.375rem;
}
.order-history-card--opened .checkout__subtotal .cart-total__row {
  margin-bottom: 1rem;
}
.order-history-card--opened .checkout__subtotal .cart-total__row:last-child {
  margin-bottom: 0;
}
.order-history-card--opened .order-history-card__products {
  margin-bottom: -0.875rem;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
}
.order-history-card--opened .order-history-card__total-full {
  margin-top: 0.5rem;
  height: initial;
  overflow: initial;
  opacity: 1;
  pointer-events: auto;
}
.order-history-card--opened .order-history-card__products-more {
  display: none;
}
.order-history-card--opened .order-history-card__total-short {
  margin-top: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.order-history-card--opened .order-history__product:last-of-type {
  margin-bottom: 0;
}
.order-history-card--opened .product-card__inner {
  align-items: initial !important;
  padding: 0.5rem !important;
  gap: 1.875rem;
}
.order-history-card--opened .product-card__pic {
  flex-shrink: 0;
  width: 11.25rem !important;
  height: auto !important;
  min-height: 11.25rem;
}
.order-history-card--opened .product-card__info {
  display: flex;
  padding: 0.5rem 0 !important;
  height: auto;
  min-height: initial !important;
}
.order-history-card--opened .product-card__variation {
  margin: 0;
}
@media (max-width: 767px) {
  .order-history-card__total-full {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .order-history-card__total-short {
    flex-direction: column;
    align-items: initial;
    gap: 20px;
    font-size: 12px;
  }
  .order-history-card__total-short__buttons {
    justify-content: space-between;
  }
  .order-history-card__total-short__buttons .button--thirdly {
    font-size: 12px;
  }
  .order-history-card--opened .order-history-card__products-title {
    margin-bottom: 32px;
  }
  .order-history-card--opened .product-card__inner {
    gap: 12px;
  }
  .order-history-card--opened .product-card__pic {
    width: 115px !important;
    min-height: 115px;
  }
  .order-history-card--opened .cart-total__row .button--thirdly {
    font-size: 12px;
  }
  .order-history-card--opened .cart-total__row .button {
    font-size: 14px;
  }
}

.order-history__product .product-card__price {
  font-size: 1.25rem;
  font-weight: 400;
}

.order-history-card__total-button-repeat {
  padding-left: 2.375rem;
  padding-right: 2.375rem;
}

@media (any-hover: hover) {
  .order-history-card__total-button-repeat:hover {
    --button-bg: #000000;
  }
}
@media (min-width: 602px) {
  .order-history-card__button-track {
    margin-top: 16px;
  }
}
@media (min-width: 768px) {
  .order-history-card:not(.order-history-card--opened) .order-history__product:nth-child(n+6) {
    display: none;
  }
}
@media (max-width: 767px) {
  .order-history-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-history-card__info {
    grid-template-columns: 1fr;
  }

  .order-history-card:not(.order-history-card--opened) .order-history-card__products-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .order-history-card:not(.order-history-card--opened) .order-history__product:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .order-history-card {
    padding: 30px 16px 16px;
  }

  .order-history-card__top {
    padding-left: 12px;
    padding-right: 12px;
  }

  .order-history-card__id {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .order-history-card__buttons {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .order-history-card__info {
    row-gap: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .order-history-card__products-title {
    padding-left: 12px;
    padding-right: 12px;
  }

  .order-hisotry-card__total-full {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .order-history-card__total-card .cart-total__row {
    margin-bottom: 16px;
  }

  .order-history-card__total-card .cart-total__row:last-of-type {
    margin-bottom: 0;
  }

  .order-history-card__total-card:last-of-type .cart-total__row:last-of-type {
    margin-top: 60px;
  }

  .order-history-card--opened .order-history-card__products-title {
    margin-bottom: 72px;
  }

  .order-history-card--opened .cart-total__row {
    margin-bottom: 60px;
  }

  .order-history-card--opened .products--layout-horizontal .product-card__pic {
    max-width: 7.5rem;
  }

  .order-history-card--opened .order-history-card__total-card {
    padding-top: 48px;
    padding-right: 64px;
  }

  .order-history-card--opened .checkout__subtotal {
    padding-top: 60px;
  }

  .order-history-card--opened .checkout__subtotal .cart-total__row {
    margin-bottom: 18px;
  }

  .order-history-card--opened .order-history-card__products {
    margin-bottom: -9px;
    padding-left: 0;
    padding-right: 0;
  }

  .order-history-card__total-button-repeat {
    padding: 12px 40px 20px;
  }

  .order-history-card--opened .order-history__product .product-card__pic {
    margin-right: 24px;
    height: 240px;
  }
}
@media (max-width: 601px) {
  .order-history-card {
    padding: 15px 8px 8px;
  }

  .order-history-card__id {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .order-history-card__button-track {
    margin-top: 16px;
    margin-right: 0;
  }

  .order-history-card__button-more {
    --fz-button: 14px;
    padding: 11px 22px 14px;
  }

  .order-history-card__info {
    row-gap: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .order-history-card__info-row {
    margin-bottom: 14px;
    grid-template-columns: 113px auto;
  }

  .order-history-card__info-row:first-child {
    margin-bottom: 32px;
  }

  .order-history-card__products {
    padding: 16px;
  }

  .order-history-card__total-card {
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 6px;
  }

  .order-history-card__total-card .cart-total__row {
    margin-bottom: 8px;
  }

  .order-history-card__total-card:last-of-type .cart-total__row:last-of-type {
    margin-top: 30px;
  }

  .order-history__product .product-card__price {
    font-size: 14px;
  }

  .order-history-card--opened .order-history-card__top {
    margin-bottom: 32px;
  }

  .order-history-card--opened .order-history-card__info {
    margin-bottom: 32px;
  }

  .order-history-card--opened .order-history-card__products-title {
    margin-bottom: 36px;
  }

  .order-history-card--opened .cart-total__row {
    margin-bottom: 30px;
  }

  .order-history-card--opened .order-history-card__total-card {
    padding-top: 24px;
    padding-right: 32px;
  }

  .order-history-card--opened .checkout__subtotal {
    padding-top: 30px;
  }

  .order-history-card--opened .checkout__subtotal .cart-total__row {
    margin-bottom: 9px;
  }

  .order-history-card__total-button-repeat {
    padding: 6px 20px 10px;
  }

  .order-history-card--opened .order-history__product .product-card__pic {
    margin-right: 12px;
    height: 120px;
  }
}
@media (max-width: 420px) {
  .order-history-card__heading {
    margin-bottom: 28px;
  }

  .order-history-card__products-more {
    font-size: 20px;
  }
}
.product-card {
  position: relative;
  height: 100%;
}

.product-card__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: var(--brad);
  --brad: 1rem;
}

.product-card__info {
  height: 100%;
  min-height: 21.38vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.product-card__top {
  z-index: 2;
}

.product-card__bottom {
  position: relative;
  z-index: 3;
}

.product-card__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: var(--brad);
}

.product-card__img {
  border-radius: var(--brad);
}

.product-card__name {
  margin-bottom: 0.75rem;
  min-width: 6.25rem;
  max-width: 70%;
  font-size: 1rem;
  line-height: 1.1875;
  font-weight: 400;
  color: #000000;
}

.product-card__options {
  position: relative;
  z-index: 2;
  max-width: 71%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  --chips-bg: #f0f3f5;
  --chips-color: #000000;
  --chips-hover-bg: #6c7982;
  --chips-hover-color: #ffffff;
  --chips-active-bg: #5f6c75;
  --chips-active-color: #ffffff;
  --chips-fz: .625rem;
  --chips-fw: 600;
  --chips-lh: 1.2;
  --chips-padding: .7em .9em .9em .9em;
}

.product-card__order {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product-card__button-add {
  --size: 2.625rem;
  position: relative;
  margin-right: .5rem;
  padding: 0;
  width: var(--size);
  height: var(--size);
  transition: .3s;
}

.product-card__button-add svg {
  pointer-events: none;
}

.product-card__button-add:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--button-bg);
  border-radius: 6.25rem;
  transition: .3s;
}

.product-card__button-add .button__icon {
  z-index: 3;
}

.product-card__button-add .button__icon--cart {
  position: relative;
}

.product-card--in-cart .button__icon--cart {
  opacity: 0;
  transform: translateY(-2.5rem);
}

.product-card--in-cart .button__icon--selected {
  opacity: 1;
  transform: translateY(0);
}

.product-card--in-cart .product-card__button-add:before {
  background-color: #5f6c75;
}

.product-card__button-add .button__text {
  position: absolute;
  top: 0;
  left: calc(var(--size) / 2 - 0.625rem);
  bottom: 0;
  z-index: 1;
  padding: 0.8125rem 1.25rem 0.8125rem 1.875rem;
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  background-color: var(--button-bg);
  border-radius: 0 6.25rem 6.25rem 0;
  transform-origin: left;
  transition: color 0s, background-color .3s, transform .3s;
}

.product-card__stepper {
  --stepper-value-color: #000000;
  --stepper-button-height: 2.25rem;
  --line-color: #f0f3f5;
  margin-right: 1.6875rem;
}

.product-card__price {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  white-space: nowrap;
  color: #000000;
  transition: all .35s ease;
}

@media (any-hover: hover) {
  .product-card:not(.product-card--in-cart) .product-card__button-add:hover .button__text {
    opacity: 1;
    pointer-events: initial;
  }

  .product-card__button-add:hover ~ .product-card__price {
    opacity: 0;
  }

  .product-card--in-cart .product-card__button-add:hover ~ .product-card__price {
    opacity: 1;
  }
}
.product-card__price-old {
  margin-right: 0.25rem;
  color: #a1aeb3;
  text-decoration-line: line-through;
}

.product-card--tall .product-card__info {
  min-height: 37.125rem;
}

/* .product-card--tall .product-card__pic {
  padding-top: 1.5rem;
} */
@media (min-width: 768px) {
  .product-card--tall .product-card__name {
    margin-bottom: 1.25rem;
  }
}
.product-card--tall .product-card__img {
  object-fit: cover;
}

.product-card--tall .product-card__options {
  max-width: 100%;
  --chips-bg: #ffffff;
}

.product-card:not(.product-card--tall) .chips__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.product-card--tall .chips__track {
  width: 100%;
}

.product-card--tall .chips__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4rem, auto));
}

.product-card__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--brad, 5px);
}

.product-card--out:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
}

.product-card__price-out {
  display: none;
  font-size: .875rem;
  line-height: 17px;
  font-weight: 600;
  color: #a1aeb3;
}

.product-card__variation {
  margin-bottom: 3.0625rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

.product-card--removed .cart-product__button-remove {
  display: none;
}

.product-card--removed .cart-product__button-return {
  display: flex;
}

.product-card--removed .product-card__stepper {
  display: none;
}

.product-card--removed .product-card__top,
.product-card--removed .product-card__pic,
.product-card--removed .product-card__price {
  opacity: .4;
}

.product-card__quantity {
  --size: 2.75rem;
  margin-right: 1.25rem;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  line-height: 1.21;
  font-weight: 600;
  text-align: center;
  border: 0.0625rem solid #a1aeb2;
  border-radius: var(--size);
}

.product-card__tooltip {
  position: absolute;
  top: 1.125rem;
  right: .9375rem;
  z-index: 5;
  padding: .3125rem;
  max-width: 16.875rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  pointer-events: none;
  transition: all .3s ease;
  --icon-bg: #5f6c75;
  --icon-color: #ffffff;
}

.product-card__tooltip:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background: #5f6c75;
  border-radius: 0.375rem;
  transition: all .3s ease;
}

.product-card__tooltip:hover {
  --icon-bg: #ffffff;
  --icon-color: #5f6c75;
  padding-left: 1.25rem;
  pointer-events: auto;
}

.product-card__tooltip:hover:before {
  opacity: 1;
}

.product-card__tooltip-icon {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  display: block;
  pointer-events: auto;
  transition: inherit;
  --size: 2rem;
}

.product-card__tooltip:hover .product-card__tooltip-icon {
  margin-left: 1rem;
}

.product-card__tooltip-desc {
  padding-top: .375rem;
  padding-bottom: .5625rem;
  overflow: hidden;
  opacity: 0;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.242;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  color: #ffffff;
  transform-origin: right;
  transition: all .3s ease, transform .2s ease;
}

.product-card__tooltip:hover .product-card__tooltip-desc {
  opacity: 1;
  white-space: initial;
  pointer-events: initial;
}

.product-card__caption {
  margin: .5rem auto;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-bottom: .125rem;
  width: fit-content;
  display: block;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  background-color: #ffffff;
  border-radius: var(--brad-half);
}

.product-card--tall {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
}

@media (max-width: 767px) {
  .product-card__info {
    min-height: 20.4rem;
  }

  .product-card--tall .product-card__options {
    max-width: 100%;
  }

  .product-card__variation {
    margin-bottom: 42px;
    font-size: 24px;
  }

  .product-card__quantity {
    --size: 72px;
    margin-right: 20px;
    font-size: 28px;
  }

  .product-card--tall {
    order: -1;
    grid-row-start: unset;
    grid-row-end: unset;
    grid-column-start: unset;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .product-card__inner {
    --brad: 25px;
    padding: 40px;
  }

  .product-card__info {
    min-height: 735px;
  }

  .product-card__name {
    margin-bottom: 8.53px;
  }

  .product-card__name {
    margin-bottom: 25px;
    font-size: 20px;
  }

  .product-card__options {
    max-width: 74%;
  }

  .product-card__button-add {
    --size: 86px;
    margin-right: 16px;
  }

  .product-card__button-add .button__text {
    padding-left: 60px;
    padding-right: 40px;
    font-size: 18px;
  }

  .product-card__price-old {
    margin-right: 16px;
  }

  .product-card--tall .product-card__info {
    min-height: 1164px;
  }

  .product-card--out:before {
    border-radius: 25px;
  }

  .product-card__tooltip {
    padding: 10px;
    max-width: 370px;
  }

  .product-card__tooltip-icon {
    --size: 50px;
  }

  .product-card__tooltip-desc {
    font-size: 25px;
  }

  .product-card__caption {
    margin-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 4px;
    font-size: 28px;
    border-radius: 12px;
  }
}
@media (max-width: 601px) {
  .product-card__name {
    margin-bottom: 11px;
    min-width: initial;
  }

  .product-card__variation {
    margin-bottom: 21px;
    font-size: 12px;
  }

  .product-card__quantity {
    --size: 36px;
    margin-right: 10px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .product-card__inner {
    --brad: 12px;
  }

  .product-card__stepper {
    --stepper-button-height: 32px;
    margin-right: 8px;
  }
}
.promo-gallery-card {
  position: relative;
  padding: 1.5rem 3.8125rem 1.25rem 1.25rem;
  min-height: 17.22vw;
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 1rem;
}

.promo-gallery-card__top,
.promo-gallery-card__bottom {
  position: relative;
  z-index: 2;
}

.promo-gallery-card__bottom {
  height: 100%;
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
}

.promo-gallery-card__title {
  margin-bottom: 0.5rem;
  max-width: 70%;
  font-size: 1.23rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

.promo-gallery-card__title:only-child {
  margin-bottom: 0;
}

.promo-gallery-card__desc {
  max-width: 18rem;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 400;
}

.promo-gallery-card__bottom .button {
  margin-top: auto;
}

.promo-gallery-card__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.promo-gallery-card__img {
  border-radius: 0.75rem;
  object-fit: cover;
}

.promo-gallery-card--no-pic .promo-gallery-card__pic {
  display: none;
}

.promo-gallery-card--no-pic .promo-gallery-card__title {
  max-width: 100%;
}

.promo-gallery-card--no-pic .promo-gallery-card__desc {
  max-width: 100%;
}

.promo-gallery-card--accent {
  background-color: #5f6c75;
}

.promo-gallery-card--accent .promo-gallery-card__title {
  color: #ffffff;
}

@media (max-width: 767px) {
  .promo-gallery-card {
    padding-right: 70px;
  }

  .promo-gallery-card--no-pic {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .promo-gallery-card {
    min-height: 50vw;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .promo-gallery-card {
    padding: 32px;
    border-radius: 25px;
  }

  .promo-gallery-card__title {
    max-width: 560px;
    font-size: 32px;
  }

  .promo-gallery-card__button {
    padding: 14px 34px 18px;
    font-size: 24px;
  }

  .promo-gallery-card__img {
    border-radius: 25px;
  }
}
@media (max-width: 601px) {
  .promo-gallery-card {
    border-radius: 0;
  }

  .promo-gallery-card__title {
    font-size: 1rem;
  }

  .promo-gallery-card__button {
    padding: 7px 17px 9px;
  }

  .promo-gallery-card--no-pic {
    padding-right: unset;
  }
}
.review-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: #f0f3f5;
  border-radius: var(--brad-half);
}

.review-card__pic {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  display: block;
  --size: 9.722222222222223vw;
}

.review-card__img {
  border-radius: var(--brad-half);
  object-fit: cover;
}

.review-card__info {
  padding: 1.25rem;
}

.review-card__profile {
  margin-bottom: .4375rem;
  padding: 0 .57em .28em;
  width: fit-content;
  display: block;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border-radius: var(--brad-half);
  transition: all .3s ease;
}

@media (any-hover: hover) {
  .review-card__profile:hover {
    color: #ffffff;
    background: #6c7982;
  }
}
.review-card__feedback {
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 602px) and (max-width: 767px) {
  .review-card {
    border-radius: 12px;
  }

  .review-card__pic {
    --size: 180px;
    height: 188px;
  }

  .review-card__img {
    border-radius: 12px;
  }

  .review-card__info {
    padding: 16px 6px 28px 26px;
  }

  .review-card__profile {
    margin-bottom: 16px;
    padding: 0 8px 4px;
    font-size: 20px;
    border-radius: 12px;
  }

  .review-card__feedback {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .review-card__feedback {
    line-height: 1.2;
  }
}
@media (max-width: 601px) {
  .review-card__pic {
    --size: 90px;
    height: 94px;
  }

  .review-card__info {
    padding: 8px 3px 14px 13px;
  }

  .review-card__profile {
    margin-bottom: 8px;
    padding: 0 4px 2px;
    font-size: 10px;
  }

  .review-card__feedback {
    font-size: 10px;
  }
}
.services-all-card {
  margin-bottom: .5rem;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  background-color: #ffffff;
  border-radius: 1rem;
}

.services-all-card:last-of-type {
  margin-bottom: 0;
}

.services-all-card__title {
  margin-bottom: .125rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #000000;
}

.services-all-card__subtitle {
  margin-bottom: 1rem;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

.services-all-card__desc {
  margin-bottom: 1.3571428571em;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

.services-all-card .product-card__price {
  font-size: 1rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .services-all-card {
    margin-bottom: 16px;
    padding: 40px;
    border-radius: 24.5px;
  }

  .services-all-card__title {
    margin-bottom: 8px;
    font-size: 32px;
  }

  .services-all-card__subtitle {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .services-all-card__desc {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .services-all-card .product-card__price {
    font-size: 32px;
  }
}
@media (max-width: 601px) {
  .services-all-card {
    padding-right: 20px;
  }

  .services-all-card__title {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .services-all-card__desc {
    position: relative;
    margin-bottom: 16px;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.26;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .services-all-card__desc.isShow {
    -webkit-line-clamp: initial;
  }

  .services-all-card__desc .js_show_full_text:before {
    display: none;
  }

  .services-all-card__desc .button--thirdly, .services-all-card__desc .product-details__desc a, .product-details__desc .services-all-card__desc a, .services-all-card__desc .doc-card__desc a, .doc-card__desc .services-all-card__desc a {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: inherit;
    background-color: #ffffff;
  }

  .services-all-card__desc .button--thirdly:before, .services-all-card__desc .product-details__desc a:before, .product-details__desc .services-all-card__desc a:before, .services-all-card__desc .doc-card__desc a:before, .doc-card__desc .services-all-card__desc a:before {
    content: '...';
    position: absolute;
    left: -20px;
    bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-size: inherit;
    background-color: #ffffff;
  }
}
.stores-list-card {
  margin-bottom: .5rem;
  padding: .9375rem 1.75rem 1.25rem 1.25rem;
  background: #f0f3f5;
  border-radius: var(--brad-half);
}

.stores-list-card__name {
  margin-bottom: .875rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
}

.stores-lists-card__desc {
  margin-bottom: .5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
}

.stores-lists-card__desc:last-of-type {
  margin-bottom: 0;
}

.stores-lists-card__desc:before {
  content: '';
  margin-top: .125rem;
  margin-right: .5rem;
  width: .9375rem;
  min-width: .9375rem;
  height: .9375rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.stores-lists-card__desc--location:before {
  background-image: url("/local/templates/main/assets/img/common/icon-geo.svg");
}

.stores-lists-card__desc--time:before {
  background-image: url("/local/templates/main/assets/img/common/icon-time.svg");
}

.stores-lists-card__desc--contacts:before {
  background-image: url("/local/templates/main/assets/img/common/icon-tel.svg");
}

.stores-lists-card__desc--info:before {
  background-image: url("/local/templates/main/assets/img/common/icon-info.svg");
}

.stores-lists-card__desc a {
  display: block;
}

@media (min-width: 602px) and (max-width: 767px) {
  .stores-list-card {
    margin-bottom: 16px;
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 12px;
  }

  .stores-list-card__name {
    margin-bottom: 28px;
    font-size: 32px;
  }

  .stores-lists-card__desc {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .stores-lists-card__desc:before {
    margin-top: 4px;
    margin-right: 16px;
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
.testimonials-card {
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 1rem;
}

.testimonials-card__review {
  margin-bottom: 2.1875rem;
}

.testimonials-card__bundle {
  margin-bottom: 3rem;
  height: 10rem;
}

.testimonials-card__img {
  display: block;
}

.testimonials-card__add-to-cart {
  position: relative;
  margin-right: 0.5rem;
}

.testimonials-card__add-to-cart {
  overflow: hidden;
}

.testimonials-card__add-to-cart .button__text {
  position: relative;
  transition: all .3s ease;
}

.testimonials-card__add-to-cart .button__text2 {
  position: absolute;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: all .3s ease;
}

.product-card--in-cart .testimonials-card__add-to-cart {
  background: #5f6c75;
}

.product-card--in-cart .testimonials-card__add-to-cart .button__text {
  opacity: 0;
  transform: translateY(-2.5rem);
}

.product-card--in-cart .testimonials-card__add-to-cart .button__text2 {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 602px) and (max-width: 767px) {
  .testimonials-card {
    padding: 16px 16px 36px;
    border-radius: 25px;
  }

  .testimonials-card__review {
    margin-bottom: 56px;
  }

  .testimonials-card__bundle {
    margin-bottom: 78px;
    padding-left: 24px;
    padding-right: 24px;
    height: 240px;
  }

  .testimonials-card__buttons {
    padding-left: 24px;
  }

  .testimonials-card__add-to-cart {
    padding: 20px 20px 25px;
    font-size: 24px;
  }

  .testimonials-card__more {
    padding: 20px 20px 25px;
    font-size: 24px;
  }
}
@media (max-width: 601px) {
  .testimonials-card {
    padding: 8px 8px 18px;
  }

  .testimonials-card__review {
    margin-bottom: 28px;
  }

  .testimonials-card__bundle {
    margin-bottom: 39px;
    padding-left: 12px;
    padding-right: 12px;
    height: 140px;
  }

  .testimonials-card__buttons {
    padding-left: 12px;
  }
}
@media (max-width: 420px) {
  .testimonials-card__add-to-cart {
    padding: 7px 13px 9px;
    font-size: 12px;
  }

  .testimonials-card__more {
    padding: 7px 13px 9px;
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .testimonials-card__add-to-cart {
    margin-bottom: 8px;
  }
}
