* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
textarea {
  font-family: inherit;
  color: inherit;
}

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
  opacity: 0;
}

button {
  color: inherit;
  background: inherit;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  transition: color .2s ease-in-out;
  text-decoration: none;
}

ul li {
  list-style: none inside none;
}

ol li {
  list-style-position: inside;
}

img,
svg {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.wrapper > .content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.main {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100%;
  /* @media (max-width: 1600px) {
    max-width: 1186px;
  }

  @media (max-width: 1280px) {
    max-width: calc(100% - 16px);
  } */
}

.section {
  margin: 7.5rem 0;
}
.section.is-fill {
  padding: 3.125rem 0;
}
.section.have-margin-s {
  margin: 80px 0;
}
@media (max-width: 767px) {
  .section {
    margin: 80px 0;
  }
  .section.have-margin-s {
    margin: 60px 0;
  }
}

.socials {
  display: flex;
  align-items: center;
}
.socials__item {
  margin-right: 1.25rem;
}
.socials__item:last-child {
  margin-right: 0;
}
.socials__link {
  --size: auto;
  --icon-color: var(--c-text-grey-2);
  width: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  display: block;
  font-size: var(--fz, 1.25rem);
  line-height: 1.2;
  transition: .3s;
  fill: var(--icon-color);
}
.socials__link--has-stroke {
  stroke: var(--icon-color);
}
.socials__link:last-of-type {
  margin-right: 0;
}
.socials__link:hover {
  --icon-color: #5f6c75;
  color: #a1aeb2;
}
.socials--icons .socials__link {
  --size: 2.25rem;
  margin-right: .5rem;
  padding: .3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 100%;
}
.socials__icon--google {
  height: 1rem;
}
.socials__icon--vk {
  height: .76rem;
}
.socials__icon--yandex {
  height: 1rem;
}
@media (max-width: 767px) {
  .socials__item {
    margin-right: 9px;
  }
  .socials__link {
    font-size: var(--fz, 14px);
  }
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .pagination {
    margin-bottom: 2rem;
    padding-left: .4rem;
    padding-right: .4rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.nav-page {
  margin-right: .33em;
  padding: .625em .66em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
  border-radius: 0.5rem;
  transition: all .4s ease;
}
.nav-page.current-page {
  color: white;
  background-color: #5e6c75;
}
.nav-page:last-child {
  margin-right: 0;
}

@media (any-hover: hover) {
  .nav-page:not(.nav__gap):hover {
    color: #ffffff;
    background-color: #5f6c75;
  }
}
.nav-arrow {
  padding: .625em .66em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 600;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
  border-radius: 0.5rem;
  transition: all .3s ease;
  cursor: pointer;
}
.nav-arrow:hover {
  color: #ffffff;
  background-color: #5f6c75;
}
.nav-arrow.disabled {
  display: none;
}

.nav-prev {
  margin-right: 1.25rem;
}
.nav-prev:before {
  content: '';
  margin-right: .5rem;
  margin-bottom: -2px;
  width: 1rem;
  height: 1rem;
  display: block;
  background-color: #000000;
  transform: rotate(-90deg);
  transition: all .3s ease;
  -webkit-mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.nav-prev:hover:before {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .nav-prev {
    text-indent: -9999px;
  }
  .nav-prev:before {
    margin: 0 !important;
  }
}

@media (min-width: 602px) and (max-width: 767px) {
  .nav-prev:before {
    margin-right: 16px;
    margin-bottom: -4px;
    width: 32px;
    height: 32px;
  }
}
.nav-next {
  margin-left: 1.25rem;
}
.nav-next:after {
  content: '';
  margin-left: .5rem;
  margin-bottom: -0.125rem;
  width: 1rem;
  height: 1rem;
  display: block;
  background-color: #000000;
  transform: rotate(90deg);
  -webkit-mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.nav-next:hover:after {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .nav-next {
    text-indent: -9999px;
  }
  .nav-next:after {
    margin: 0 !important;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .nav-next:after {
    margin-left: 16px;
    margin-bottom: -4px;
    width: 32px;
    height: 32px;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.75rem;
  color: #a1aeb3;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 1.25rem;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 1.25rem;
}

.has-show-more .categories-nav__list-item:nth-child(n+7):not(.show-more) {
  display: none;
}

@media (max-width: 767px) {
  .has-show-more .categories-nav__list-item:nth-child(n+7):not(.show-more) {
    display: inline-block;
  }
}
.show-more {
  cursor: pointer;
}
.show-more > * {
  pointer-events: none;
}
@media (max-width: 767px) {
  .show-more {
    display: none;
  }
}

.white-bg .categories-nav__list-link {
  color: black;
  background: white;
}
.white-bg .categories-nav__list-link:hover {
  color: var(--categories-nav-link-color-hover, #ffffff);
  background-color: #5f6c75;
}

.section-map ~ .callback-cards {
  padding-top: 0.5rem;
}
.section-map__frame {
  width: 100%;
  height: calc(var(--index) * 34.7);
  border-radius: 0.75rem;
}
@media (max-width: 767px) {
  .section-map__frame {
    height: 590px;
  }
}

.flex {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.flex--center {
  justify-content: center;
  align-items: center;
}
.flex--column {
  flex-direction: column;
}

@media (max-width: 786px) {
  ._only-desktop {
    display: none !important;
  }
}
@media (min-width: 769px) {
  ._only-mobile {
    display: none !important;
  }
}
.page__cart .page-heading {
  margin-bottom: 1.625rem;
}
.page__cart .page-heading__title {
  margin-bottom: 0;
}

.fancybox__thumbs {
  padding-bottom: 1.375rem;
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
  display: none;
}

.fancybox__thumbs .carousel__slide {
  padding: .375rem;
  border-radius: .375rem;
}

.fancybox__thumbs .carousel__slide.is-nav-selected {
  border: 0.0625rem solid #ffffff;
}

.fancybox__thumbs .carousel__slide {
  width: var(--fancybox-thumbs-width, 6rem);
}

.fancybox__thumbs .carousel__slide.has-video:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 3.75rem;
  height: 2.625rem;
  display: block;
  background-color: #ffffff;
  background-image: url("/local/templates/main/assets/img/common/play-icon-mask.svg");
  background-repeat: no-repeat;
  background-position: 1.375rem;
  background-size: 1.25rem;
  border-radius: 3.75rem;
}

.fancybox__nav svg {
  display: none;
}

.fancybox__nav .carousel__button {
  width: 3.75rem;
  height: 2.5rem;
  background-color: #ffffff;
  border-radius: 3.75rem;
  transition: .3s all ease;
}

@media (max-width: 767px) {
  .fancybox__nav .carousel__button {
    display: none;
  }
}
.fancybox__nav .carousel__button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  -webkit-mask: url("/local/templates/main/assets/img/common/arrow-left-mask.svg");
  mask: url("/local/templates/main/assets/img/common/arrow-left-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.fancybox__nav .carousel__button.is-next:after {
  transform: scaleX(-1);
}

.fancybox__nav .carousel__button.is-prev {
  left: 1.25rem;
}

.fancybox__nav .carousel__button.is-next {
  right: 1.25rem;
}

@media (any-hover: hover) {
  .fancybox__nav .carousel__button:hover {
    background-color: #000000;
  }
}
@media (any-hover: hover) {
  .fancybox__nav .carousel__button:hover:after {
    background-color: #ffffff;
  }
}
.carousel__button svg {
  opacity: 0;
}

@media (min-width: 769px) {
  .page__about .about-features__columns {
    grid-template-columns: .85fr .9fr;
    column-gap: 48px;
  }
}
@media (min-width: 769px) {
  .page__about .about-features {
    margin-bottom: 67px;
  }
}
.search-results__title {
  margin-bottom: .3125rem;
  font-size: 1.6875rem;
}

.nav-dynamic-content__section {
  /* padding-top: 130px;
  margin-top: -130px; */
}

.gallery-accordion__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-accordion__content {
  margin-bottom: 1.625rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-accordion__item {
  height: auto;
  max-height: 0.0625rem;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.gallery-accordion__item--visible {
  max-height: 62.5rem;
  overflow: initial;
  opacity: 1;
  pointer-events: initial;
}
.gallery-accordion .button--light {
  --button-color: #000000;
}
.gallery-accordion__button-more {
  margin-left: auto;
  margin-right: auto;
  --button-color: #a1aeb3;
  font-size: .875rem;
}
.gallery-accordion__button-more--hidden {
  opacity: 0;
  pointer-events: none;
}
.gallery-accordion-modal {
  display: none;
}
@media (max-width: 1600px) {
  .gallery-accordion .gallery-accordion__container {
    max-width: 75rem;
  }
}

@media (min-width: 602px) and (max-width: 767px) {
  .gallery-accordion__content {
    margin-bottom: 52px;
  }
}
@media (max-width: 767px) {
  .has-labels .gallery-accordion__item--visible {
    margin-bottom: 50px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .gallery-accordion__button-more {
    padding-top: 1.5714285714em;
    padding-bottom: 1.5714285714em;
    font-size: 14px;
  }

  .related-products .gallery-accordion__content ~ .container .button {
    margin-top: 40px !important;
  }
}
.message {
  min-height: calc(100vh - 8.125rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .message__container {
    width: 100%;
  }
}

.stepper {
  width: 100%;
  max-width: 5.4375rem;
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  border: 0.0625rem solid var(--line-color);
  border-radius: 6.25rem;
  --bg: transparent;
  --line-color: #a1aeb3;
}

@media (min-width: 602px) and (max-width: 767px) {
  .stepper {
    width: 100%;
    max-width: 5.4375rem;
  }
}
.stepper__button {
  position: relative;
  width: 1.375rem;
  height: var(--stepper-button-height, 1.75rem);
  background-color: var(--bg);
}

@media (min-width: 602px) and (max-width: 767px) {
  .stepper__button {
    width: 2.75rem;
    height: var(--stepper-button-height, 56px);
  }
}
.stepper__button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: .5rem;
  height: .1rem;
  display: block;
  background-color: var(--stepper-button-color, #a1aeb3);
  transform: translateY(-50%);
}

@media (min-width: 602px) and (max-width: 767px) {
  .stepper__button:before {
    width: 16px;
    height: 3.2px;
  }
}
.stepper__button-plus:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: .1rem;
  height: .5rem;
  display: block;
  background-color: #a1aeb3;
  transform: translateY(-50%);
}

@media (min-width: 602px) and (max-width: 767px) {
  .stepper__button-plus:after {
    width: 3.2px;
    height: 16px;
  }
}
.stepper__value {
  width: 100%;
  max-width: .8rem;
  max-width: 30%;
  font-size: .875rem;
  line-height: 1.2142;
  font-weight: 400;
  text-align: center;
  color: var(--stepper-value-color, #ffffff);
  background-color: transparent;
}

@media (min-width: 602px) and (max-width: 767px) {
  .stepper__value {
    max-width: 24px;
    font-size: 28px;
  }
}
@media (max-width: 601px) {
  .stepper__value {
    font-size: 14px;
  }
}
.tabs__toggler-container {
  margin-bottom: 22px;
}

@media (min-width: 602px) and (max-width: 767px) {
  .tabs__toggler-container {
    margin-bottom: 44px;
  }
}
.tabs__toggler {
  margin-right: 1em;
  font-size: .75rem;
  line-height: 1.166;
  font-weight: 700;
  text-transform: uppercase;
  color: #a1aeb3;
}

@media (min-width: 602px) and (max-width: 767px) {
  .tabs__toggler {
    margin-right: 24px;
    font-size: 24px;
  }
}
.tabs__toggler.tab--active {
  color: #ffffff;
}

.tabs__page {
  display: none;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.tabs__page.tab--active {
  display: unset;
  overflow: initial;
  opacity: 1;
}

.hide {
  display: none !important;
}

.section-title {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-family: 'RF Dewi Extended', serif;
  font-size: 1.6875rem;
  line-height: 110%;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

@media (min-width: 602px) and (max-width: 767px) {
  .section-title {
    margin-bottom: 36px;
    font-size: 40px;
  }
}
@media (max-width: 601px) {
  .section-title {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
.section-desc {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 400;
  color: #a1aeb3;
}

@media (min-width: 602px) and (max-width: 767px) {
  .section-desc {
    font-size: 24px;
  }
}
.section-text--center {
  text-align: center;
}

.section-text--right {
  text-align: right;
}

.section-heading {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: var(--w-container);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes headershow {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}
.captions {
  margin-bottom: 1.875rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .captions {
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 601px) {
  .captions {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .captions--mobile-fold {
    max-height: 114px;
  }
}
@media (max-width: 767px) {
  .captions--mobile-fold {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: all .3s ease;
  }
}
@media (max-width: 601px) {
  .captions--mobile-fold {
    max-height: 57px;
  }
}
@media (min-width: 602px) {
  .captions .callback-cards {
    padding-top: 74px;
  }
}
.captions--fold-opened {
  max-height: 125rem;
}

.captions__button-opener {
  position: absolute;
  right: 0.625rem;
  bottom: 0;
  font-size: 0.75rem;
  background-color: #f0f3f5;
}

@media (min-width: 602px) and (max-width: 767px) {
  .captions__button-opener {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .captions__button-opener {
    display: none;
  }
}
.captions__button-opener:before {
  content: '...';
  position: absolute;
  top: 0.0625rem;
  left: -0.875rem;
  padding-right: 0.375rem;
  color: #c8d2d5;
  background-color: #f0f3f5;
}

@media (min-width: 602px) and (max-width: 767px) {
  .captions__button-opener:before {
    left: -23px;
  }
}
.captions-1-1 {
  column-count: 2;
  column-gap: 0.5rem;
}

@media (max-width: 767px) {
  .captions-1-1 {
    column-count: unset;
  }
}
.captions-1-1__desc {
  max-width: 93%;
  opacity: .6;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.214;
  font-weight: 400;
  color: #a1aeb3;
  break-inside: avoid;
}

@media (min-width: 602px) and (max-width: 767px) {
  .captions-1-1__desc {
    margin-bottom: 28px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .captions-1-1__desc {
    max-width: 100%;
    line-height: 1.2;
  }
}
@media (max-width: 601px) {
  .captions-1-1__desc {
    margin-bottom: 14px;
    font-size: 12px;
  }
}
@media (max-width: 601px) {
  .captions-1-1__desc:last-child {
    margin-bottom: 0;
  }
}
.captions-1-1__desc--big {
  font-size: 1.25rem;
  line-height: 120%;
}

@media (min-width: 602px) and (max-width: 767px) {
  .captions-1-1__desc--big {
    margin-bottom: 36px;
    font-size: 36px;
  }
}
@media (max-width: 601px) {
  .captions-1-1__desc--big {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.link {
  --link-color: #5f6c75;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--link-color);
}

@media (min-width: 602px) and (max-width: 767px) {
  .link {
    font-size: 24px;
  }
}
.link:before {
  margin-right: .5rem;
  width: 1rem;
  height: 1.125rem;
  display: block;
  background-color: #5f6c75;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (min-width: 602px) and (max-width: 767px) {
  .link:before {
    margin-right: 16px;
    width: 32px;
    height: 36px;
  }
}
.link--geo:before {
  content: '';
  -webkit-mask: url("/local/templates/main/assets/img/common/icon-geo.svg");
  mask: url("/local/templates/main/assets/img/common/icon-geo.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.link--time:before {
  content: '';
  -webkit-mask: url("/local/templates/main/assets/img/common/icon-time.svg");
  mask: url("/local/templates/main/assets/img/common/icon-time.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.link--phone:before {
  content: '';
  -webkit-mask: url("/local/templates/main/assets/img/common/icon-tel.svg");
  mask: url("/local/templates/main/assets/img/common/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.page-heading {
  margin-left: -0.5rem;
  margin-bottom: 3rem;
  padding-top: 3.25rem;
  width: calc(100% + 1rem);
}

@media (max-width: 767px) {
  .page-heading {
    margin-bottom: 32px;
    padding-top: 28px;
  }
}
.page-heading.categories__page-heading {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-heading.categories__page-heading {
    margin-bottom: 25px;
  }
}
.page-heading--sticky {
  position: sticky;
  z-index: 12;
  transition: all .3s ease;
}

.page-heading--sticky-run {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(95, 108, 117, 0.2);
}

.page-heading--sticky-run .page-heading__nav-list {
  transform: translateY(-0.15rem);
}

.page-heading__title {
  margin-bottom: 2.0625rem;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #000000;
}

@media (max-width: 767px) {
  .page-heading__title {
    font-size: 27px;
  }
}
@media (max-width: 767px) and (min-width: 602px) {
  .page-heading__title {
    font-size: 48px;
  }
}
.page-heading__title:only-child {
  margin-bottom: 4rem;
}

@media (max-width: 767px) and (min-width: 602px) {
  .page-heading__title:only-child {
    margin-bottom: 65px;
  }
}
@media (max-width: 601px) {
  .page-heading__title:only-child {
    margin-bottom: 32px;
  }
}
.page-heading__desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 809px;
  display: block;
  font-size: .875rem;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  color: #a1aeb3;
}

@media (min-width: 602px) and (max-width: 767px) {
  .page-heading__desc {
    font-size: 28px;
  }
}
@media (max-width: 601px) {
  .page-heading__desc {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.2;
  }
}
.page-heading__nav {
  /* padding-bottom: 1rem; */
}

@media (max-width: 767px) {
  .page-heading__nav {
    padding-bottom: 0;
    overflow: hidden;
  }
}
.page-heading__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .page-heading__nav-list {
    padding-left: 20px;
    justify-content: flex-start;
    overflow-y: auto;
    white-space: nowrap;
  }
}
.page-heading__nav-item {
  margin-left: 19px;
  margin-right: 19px;
  padding: 20px 0;
}

@media (max-width: 767px) {
  .page-heading__nav-item {
    margin-left: 8px;
    margin-right: 8px;
    padding: 20px 0;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .page-heading__nav-item {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.page-heading__nav-link {
  font-size: .875rem;
  line-height: 1.214;
  font-weight: 600;
  text-align: center;
  color: #a1aeb3;
}

@media (min-width: 602px) and (max-width: 767px) {
  .page-heading__nav-link {
    font-size: 28px;
  }
}
.page-heading__nav-link--current {
  color: #000000;
}

.page-heading__captions {
  color: #000000;
  column-gap: 3.125rem;
}

.page-heading__captions .captions-1-1__desc {
  opacity: 1;
  color: inherit;
}

.input {
  --border-color: transparent;
  --border-radius: var(--brad-half);
  --text-color: #000000;
  --fz: .76rem;
  --lh: 1;
  --padding: 1em 1.66em 1.33em;
  --label-color: #ffffff;
  --message-color: var(--c-text);
  --message-transform: scale(1, 0);
  --message-offset: -1.2em;
  --error-icon-transform: scale(0);
  position: relative;
  margin-bottom: .66em;
  width: 100%;
  display: block;
  font-family: 'RF Dewi Extended', sans-serif;
}

@media (max-width: 601px) {
  .input {
    --padding: 12px 20px 16px 20px;
    --fz: 12px;
    --lh: 14px;
  }
}
.input:last-of-type {
  margin-bottom: 0;
}

.input--invalid {
  --label-color: #ff3b30;
  --message-transform: scale(1);
  --message-color: #ff3b30;
  --message-offset: rem(9px);
  --error-icon-transform: scale(1);
}

.input__field {
  position: relative;
  z-index: 2;
  padding: var(--padding);
  width: 100%;
  font-size: var(--fz);
  line-height: var(--lh);
  color: var(--text-color);
  background-color: var(--input-bg, #f0f3f5);
  border: 0.0625rem solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all .3s ease;
}

.input__field::placeholder {
  color: rgba(0, 0, 0, 0.19);
}

.input__icon {
  position: absolute;
  top: 1.6875rem;
  left: 2.375rem;
  z-index: 3;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

@media (max-width: 767px) {
  .input__icon {
    top: 18px;
    left: 24px;
    width: 14px;
    height: 14px;
  }
}
.input__error-icon {
  position: absolute;
  top: 50%;
  right: .6875rem;
  z-index: 2;
  margin-top: -.65rem;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  transform: var(--error-icon-transform);
  transition: all .45s ease;
}

.input__message {
  z-index: 1;
  margin-top: var(--message-offset);
  padding: .4166666667em .8333333333em .6666666667em;
  min-height: 1.2em;
  display: inline-block;
  font-size: .75rem;
  line-height: 1.1666666667;
  font-weight: 400;
  color: #ffffff;
  background: #a1aeb3;
  border-radius: 1rem;
  transform: var(--message-transform);
  transform-origin: top;
  transition: all .3s ease;
}

.textarea {
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100px;
  display: block;
}

.textarea__field {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.625rem;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 500;
  resize: none;
  color: #000000;
  background: #f0f3f5;
  border-radius: 0.375rem;
}

.textarea__field::placeholder {
  color: #a1aeb2;
}

.textarea__resizer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 1.5rem;
  height: 1rem;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  cursor: row-resize;
}

.textarea__resizer:before {
  content: '';
  width: 100%;
  height: 0.125rem;
  display: block;
  background: #a1aeb3;
}

.radio {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 602px) and (max-width: 767px) {
  .radio {
    margin-bottom: 40px;
  }
}
.radio:last-of-type {
  margin-bottom: 0;
}

.radio__input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  appearance: none;
}

.radio__check {
  position: relative;
  margin-right: 1rem;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  border: 0.0625rem solid #f0f3f5;
  border-radius: var(--size);
  transition: all .3s ease;
  --size: 1.75rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .radio__check {
    --size: 56px;
  }
}
.radio__check:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 1.125rem);
  height: calc(100% - 1.125rem);
  display: block;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all .3s ease;
}

@media (min-width: 602px) and (max-width: 767px) {
  .radio__check:after {
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }
}
.radio__check:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: #5f6c75;
  border-radius: 100%;
  transition: all .3s ease;
}

.radio__input:checked ~ .radio__check {
  border-color: #5f6c75;
}

.radio__input:checked ~ .radio__check:before {
  opacity: 1;
  transform: scale(1.05);
}

.radio__title {
  margin-bottom: .5rem;
  display: block;
  font-size: 1rem;
  line-height: 1.1875;
  font-weight: 400;
  color: #000000;
}

@media (min-width: 602px) and (max-width: 767px) {
  .radio__title {
    margin-bottom: 12px;
    font-size: 32px;
  }
}
.radio__title:only-child {
  margin-bottom: .2rem;
}

.radio__desc {
  display: block;
  font-family: 'RF Dewi', sans-serif;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

@media (min-width: 602px) and (max-width: 767px) {
  .radio__desc {
    font-size: 24px;
  }
}
.phone-placeholder {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  z-index: 1;
  font-family: inherit;
  font-size: inherit;
  transition: opacity 0.2s;
}

.filled .phone-placeholder {
  opacity: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
}

.select {
  position: relative;
  --value-color: #ffffff;
  --bg: #79868d;
  --angle-color: #ffffff;
  --brad: 62px;
  --maxw: initial;
  --fz: .875rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select {
    --fz: 28px;
  }
}
@media (max-width: 601px) {
  .select {
    --fz: 12px;
  }
}
.select.is-selected {
  --value-color: #ffffff;
  --bg: #79868d;
}

.select > .select {
  --color: inherit;
  --bg: inherit;
  --angle-color: inherit;
  --value-color: inherit;
  --brad: inherit;
  --maxw: inherit;
}

.select .choices__inner {
  min-width: 2.5625rem;
  max-width: var(--maxw);
  min-height: 2.4375rem;
  display: flex;
}

@media (max-width: 601px) {
  .select .choices__inner {
    min-height: 46.8px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .select .choices__inner {
    min-height: 79px;
  }
}
.select__list .select__item.is-selected.select__item--selectable {
  background-color: #f0f3f5 !important;
}

.select__list--dropdown {
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 3;
  padding: 0 1.625rem 0 1.25rem;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: #ffffff;
  border-radius: var(--brad-half);
  box-shadow: 0 0 1.25rem rgba(95, 108, 117, 0.2);
  transform-origin: top;
  transition: all .3s ease;
}

.select--has-search .select__list--dropdown {
  padding-top: 1.25rem;
}

.select.is-open .select__list--dropdown {
  opacity: 1;
  pointer-events: initial;
}

@media (max-width: 767px) {
  .select__list--dropdown .select__list {
    height: 100%;
    overflow-y: auto;
  }
}
.select--has-search .select__list--dropdown:before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2.25rem;
  width: 1.375rem;
  height: 1.375rem;
  display: block;
  pointer-events: none;
  background-color: #000000;
  -webkit-mask: url("/local/templates/main/assets/img/common/search-mask.svg");
  mask: url("/local/templates/main/assets/img/common/search-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select--has-search .select__list--dropdown:before {
    top: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
  }
}
.select__list--dropdown:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: calc(100% - 0.3125rem);
  height: 1rem;
  display: block;
  pointer-events: none;
  background: linear-gradient(0deg, #ffffff 24.79%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 0.875rem 0.875rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__list--dropdown:after {
    width: calc(100% - 10px);
  }
}
.select__list--dropdown .select__list {
  position: relative;
  margin-left: -1.25rem;
  padding-bottom: .625rem;
  width: calc(100% + 2.875rem);
  max-height: 30.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}

.select__list--dropdown .select__list::-webkit-scrollbar {
  width: .75rem;
  background-color: #ffffff;
}

.select__list--dropdown .select__list::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: .75rem;
}

.select__list--dropdown .select__list::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: .25rem solid #ffffff;
  border-radius: .75rem;
}

.select__list--dropdown .select__list::-webkit-scrollbar-button {
  display: none;
}

.select__list--dropdown .select__list:before {
  content: '';
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  margin-bottom: 0;
  width: calc(100% - 0.875rem);
  height: 1.875rem;
  display: block;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 24.79%, rgba(255, 255, 255, 0) 100%);
}

.select__item {
  padding: .5rem 1.25rem .76rem;
  font-size: var(--fz);
  line-height: 140%;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__item {
    padding: 20px 22px 22px 37px;
  }
}
.select__list--single > .select__item {
  margin-left: unset;
  padding: .623rem 2.9375rem .623rem 1.0625rem;
  width: 100%;
  min-height: 2.4375rem;
  display: flex;
  align-items: center;
  font-size: var(--fz);
  color: var(--value-color);
  background: var(--bg);
  border-radius: var(--brad);
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__list--single > .select__item {
    padding: 20px 60px 22px 37px;
  }
}
@media (max-width: 601px) {
  .select__list--single > .select__item {
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 46.8px;
  }
}
.select__list--single {
  position: relative;
  width: 100%;
}

.select__list--multiple:after,
.select__list--single:after {
  content: '';
  position: absolute;
  top: 50%;
  right: .5rem;
  margin-top: -.62rem;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  pointer-events: none;
  background-color: var(--angle-color);
  transform: rotate(180deg);
  transition: all .3s ease;
  -webkit-mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  mask: url("/local/templates/main/assets/img/common/arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__list--multiple:after,
  .select__list--single:after {
    top: 50%;
    right: 16px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
}
.is-selected .select__list--multiple:after {
  display: none;
}

.select__list--multiple {
  max-width: 6.25rem;
  display: flex;
}

.is-multiple input[name=search_terms], .is-multiple .choices__inner input {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}

.select__list--multiple .select__item {
  padding-left: 0;
  padding-right: 0;
  max-width: 2.5625rem;
  max-height: 2rem;
  opacity: 0;
}

.is-multiple .choices__inner {
  max-width: 3.125rem;
}

.select__button-reset {
  content: '';
  position: absolute;
  top: 50%;
  right: .5rem;
  z-index: 10;
  margin-top: -.64rem;
  width: 1.25rem;
  height: 1.25rem;
  display: none;
  pointer-events: none;
  background-color: #ffffff;
  transform: rotate(180deg);
  transition: all .3s ease;
  -webkit-mask: url("/local/templates/main/assets/img/common/clear.svg");
  mask: url("/local/templates/main/assets/img/common/clear.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__button-reset {
    top: 50%;
    right: 16px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
}
.is-selected.row-filters__select .select__button-reset {
  display: block;
  pointer-events: initial;
  cursor: pointer;
}

.select.is-open .select__list--multiple:after,
.select.is-open .select__list--single:after {
  transform: rotate(0);
}

.select__item.is-highlighted {
  background-color: #f0f3f5;
}

.select__list .select__input[type=text]::placeholder {
  color: #a1aeb3;
}

.select__list .select__input[type=text] {
  padding: .875rem 1.25rem 1rem;
  width: 100%;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 600;
  color: #a1aeb3;
  background: #f0f3f5;
  border-radius: calc(1rem / 2);
}

@media (min-width: 602px) and (max-width: 767px) {
  .select__list .select__input[type=text] {
    padding: 24px 40px 32px;
    font-size: 24px;
    border-radius: 12px;
  }
}
.select__item--selectable {
  overflow: hidden;
}

.select--grey {
  --maxw: 100%;
  --bg: #5f6c75;
  --value-color: #ffffff;
  --angle-color: #ffffff;
  --brad: calc(1rem / 2);
  margin-right: 0;
  margin-bottom: 1.25rem;
}

@media (min-width: 602px) and (max-width: 767px) {
  .select--grey {
    --brad: 12px;
  }
}
@media (max-width: 601px) {
  .select--grey {
    margin-bottom: 18px;
  }
}
.chips {
  margin-bottom: 2.5rem;
  --chips-fz: 1.14rem;
  --chips-fw: 400;
  --chips-lh: 1.25;
  --chips-padding: .9285714285714286em 1.42em 1.0714em;
  --chips-border: none;
  --chips-item-mr: .285em;
  --chips-item-mb: .57em;
  --chips-bg: #ffffff;
  --chips-active-bg: #5f6c75;
  --chips-hover-bg: #6c7982;
  --chips-color: #000000;
  --chips-active-color: #ffffff;
  --chips-hover-color: #ffffff;
}

.chips--ghost {
  --chips-bg: transparent;
  --chips-active-bg: #a1aeb2;
  --chips-color: #ffffff;
  --chips-border: 1px solid var(--chips-active-bg);
  --chips-fz: .76rem;
  --chips-padding: 1.08em 1.66em 1.25em;
}

.chips__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.chips__item {
  margin-right: var(--chips-item-mr);
  margin-bottom: var(--chips-item-mb);
  white-space: nowrap;
  cursor: pointer;
}

.chips__caption {
  padding: var(--chips-padding);
  display: block;
  font-size: var(--chips-fz);
  line-height: var(--chips-lh);
  font-weight: var(--chips-fw);
  text-align: center;
  color: var(--chips-color);
  background: var(--chips-bg);
  border: var(--chips-border);
  border-radius: .375rem;
  transition: .3s;
}

.chips__input:checked ~ .chips__caption {
  color: var(--chips-active-color);
  background: var(--chips-active-bg);
}

.chips__input:disabled ~ .chips__caption {
  color: #a1aeb3;
  cursor: default;
}

@media (any-hover: hover) {
  .chips__caption:hover {
    color: var(--chips-hover-color);
    background: var(--chips-hover-bg);
  }

  .chips__input:disabled ~ .chips__caption:hover {
    background-color: var(--chips-bg);
  }
}
@media (max-width: 767px) {
  .chips {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .chips--has-scroll {
    margin-left: -16px;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% + 24px);
    overflow: hidden;
  }

  .chips--has-scroll .chips__track {
    margin-bottom: -40px;
    overflow-x: auto;
  }

  .chips--has-scroll .chips__content {
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 40px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .chips {
    --chips-padding: 26px 40px 30px;
    --chips-item-mr: 16px;
  }

  .chips__caption {
    border-radius: 12px;
  }
}
@media (max-width: 601px) {
  .chips--has-scroll {
    margin-left: -8px;
    width: calc(100% + 16px);
  }

  .chips--has-scroll .chips__track {
    margin-bottom: -20px;
  }

  .chips--has-scroll .chips__content {
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 20px;
  }
}
.button {
  padding: 0.75rem 0.625rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fz-button);
  line-height: 1.21;
  font-weight: 600;
  text-align: center;
  color: var(--button-color);
  background: var(--button-bg, transparent);
  border-radius: 6.25rem;
  transition: all .3s ease;
  cursor: pointer;
}
.button[disabled] {
  opacity: .6;
  pointer-events: none;
  cursor: default;
}
.button[disabled].button--dark {
  opacity: 1;
  color: #a9b5b9;
  background: #f0f3f5;
}
.button--primary {
  --icon-color: #000000;
  --button-color: #000000;
  --button-bg: #f0f3f5;
  font-weight: 500;
}
.button--dark {
  --button-bg: #000000;
  --button-color: #ffffff;
  --icon-color: var(--button-color);
}
.button--on.button--primary {
  --button-color: #ffffff;
  color: #5f6c75;
}
.button--secondary {
  --button-color: #5b5b5b;
  color: var(--button-color);
}
.button--on.button--secondary {
  --button-color: #ffffff;
}
.button__text {
  width: 100%;
  font-size: inherit;
}
.button__icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  background-color: transparent;
  transition: all .3s ease;
  fill: var(--icon-color);
  stroke: none;
}
.button--icon-stroke .button__icon {
  fill: transparent;
  stroke: var(--icon-color);
}
.button__icon ~ .button__text {
  margin-left: .5rem;
}
.button__icon--selected {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(40px);
}
.button--icon-left .button__icon {
  margin-right: .57em;
  order: -1;
}
.button--icon-right .button__icon {
  margin-left: .57em;
  order: 5;
}
.button__icon path {
  stroke: var(--button-color);
}
.button--icon-plus .button__icon {
  -webkit-mask: url("/local/templates/main/assets/img/icon/plus.svg");
  mask: url("/local/templates/main/assets/img/icon/plus.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.button-cart__counter {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: black;
  background: #f0f3f5;
  border-radius: 100%;
  transition: top .3s ease, transform .3s ease, opacity .2s ease;
}
@media (min-width: 768px) {
  .button:active {
    opacity: .6;
  }
}
@media (min-width: 768px) {
  .button--on.button--primary:hover {
    --button-color: #6c7982;
  }
  .button--secondary:hover {
    color: #ffffff;
    background-color: var(--button-color);
  }
  .button--on.button--secondary:hover {
    color: #5f6c75;
  }
  .button--icon-plus:hover .button__icon {
    transform: rotate(180deg);
  }
  .button--icon-plus:hover {
    --icon-color: #5f6c75;
    --button-color: #5f6c75;
  }
}
@media (max-width: 767px) {
  .button-cart__counter {
    top: -6px;
    right: -3px;
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}
@media (max-width: 767px) and (min-width: 602px) {
  .button__icon {
    width: var(--button-icon-size, 26px);
    min-width: var(--button-icon-size, 26px);
    max-width: var(--button-icon-size, 26px);
    height: 26px;
  }
  .button__icon ~ .button__text {
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .button {
    font-size: 12px;
  }
}

.button-cart--empty .button-cart__counter {
  opacity: 0;
}

.button--circle {
  border-radius: 50%;
}

.button--fullsize {
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5714285714em;
  padding-bottom: 1.5714285714em;
  width: 100%;
  display: block;
}
@media (min-width: 602px) and (max-width: 767px) {
  .button--fullsize {
    padding-top: 41px;
    padding-bottom: 44px;
    font-size: 28px;
  }
}
@media (max-width: 601px) {
  .button--fullsize {
    font-size: 14px;
  }
}

.button--light {
  --button-bg: #ffffff;
}

@media (any-hover: hover) {
  .button--primary:hover {
    --button-bg: #6c7982;
    --button-color: #ffffff;
    --icon-color: #ffffff;
  }
}
.button--thirdly, .product-details__desc a, .doc-card__desc a {
  padding: 0;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--button-color);
  border-bottom: 1px solid var(--button-color);
  border-radius: 0;
  --button-color: #5f6c75;
  --button-bg: transparent;
}

@media (min-width: 602px) and (max-width: 767px) {
  .button--thirdly, .product-details__desc a, .doc-card__desc a {
    font-size: 24px;
  }
}
.button--fw-bold {
  font-weight: 600;
}

.button--disabled {
  --button-bg: #f0f3f5;
  --button-color: #5f6c75;
}

.button-auth .button__icon {
  transform: translateY(-0.05rem);
}

.breadcrumbs {
  margin-left: -.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  padding-left: 1.625rem;
  padding-right: 1.25rem;
  width: calc(100% + .8rem);
  overflow: hidden;
  font-family: 'RF Dewi', sans-serif;
  font-size: .76rem;
  line-height: 1.16;
  font-weight: 400;
  color: #a1aeb3;
  border-top: 0.0625rem solid #c5cacf;
}

.breadcrumbs__list {
  margin-bottom: -1.25rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumbs__item {
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumbs__item:after {
  content: '';
  margin-left: .625rem;
  margin-right: .625rem;
  width: .75rem;
  height: .75rem;
  display: block;
  background-image: url("/local/templates/main/assets/img/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: .5625rem;
}

.breadcrumbs__item:last-of-type:after {
  content: none;
}

.breadcrumbs ~ .page-heading {
  margin-left: 0;
  padding-top: 0;
  width: 100%;
  border: none;
}

.breadcrumbs ~ .page-heading--sticky-run {
  margin-left: -0.5rem;
  width: calc(100% + 1rem);
}

@media (max-width: 767px) {
  .breadcrumbs__list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 601px) {
  .breadcrumbs {
    margin-bottom: 40px;
    padding-top: 12px;
    font-size: 12px;
  }

  .breadcrumbs__item:after {
    margin-left: 7px;
    margin-right: 6px;
  }
}
.sidebar {
  position: relative;
}

.sidebar__sticky {
  position: sticky;
  top: 6.125rem;
  bottom: 0.5rem;
}

.sidebar-card {
  margin-bottom: .5rem;
  padding: 2.5rem;
  color: #ffffff;
  background-color: #5f6c75;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .sidebar-card {
    padding: 30px 32px;
  }
}
.sidebar-card--autoheight {
  min-height: initial;
}

.sidebar-card__desc {
  margin-bottom: 1.9285714286em;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.2142857143;
  font-weight: 400;
  font-style: normal;
  color: #a1aeb3;
}

.sidebar-card__desc:last-of-type {
  margin-bottom: 0;
}

.sidebar-card__link {
  --link-color: #ffffff;
  margin-bottom: .6875rem;
}

.sidebar-card__link:first-of-type {
  margin-top: 1.6875rem;
}

@media (max-width: 767px) {
  .sidebar-card__link:first-of-type {
    margin-top: 16px;
  }
}
.sidebar-card__link:before {
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .side-navigation {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.25rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    transition: all .3s ease;
  }

  .side-navigation--visible:before {
    content: '';
    position: fixed;
    top: 0.625rem;
    right: 1.5625rem;
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    pointer-events: none;
    background: url(/local/templates/main/assets/img/common/cross.png) center no-repeat;
    background-size: cover;
  }

  .side-navigation > * {
    pointer-events: all;
  }
}
@media (max-width: 767px) and (max-width: 601px) {
  .side-navigation {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .side-navigation--visible .side-navigation__button-mobile {
    z-index: -2;
  }
}
@media (max-width: 767px) {
  .side-navigation__list {
    position: fixed;
    bottom: -100%;
    z-index: 11;
    padding: 1.25rem;
    width: 100vw;
    max-height: 70vh;
    overflow: auto;
    background-color: #ffffff;
    transition: all .3s ease;
  }
}
@media (max-width: 767px) {
  .side-navigation--visible .side-navigation__list {
    bottom: 0;
    display: none;
  }
}
@media (max-width: 767px) {
  .side-navigation--visible:after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: initial;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
.side-navigation__item {
  margin-bottom: 0.6875rem;
  width: 100%;
  display: block;
}

.side-navigation__item--disabled {
  color: #bfbfbf;
}

@media (min-width: 602px) and (max-width: 767px) {
  .side-navigation__item {
    margin-bottom: 22px;
  }
}
.side-navigation__item--highlighted {
  font-weight: 700;
}

.side-navigation__item--current {
  color: #ffffff;
  background: #5f6c75;
  border-radius: var(--brad-half);
}

@media (min-width: 602px) and (max-width: 767px) {
  .side-navigation__item--current {
    border-radius: 12px;
  }
}
.side-navigation__link {
  padding: .4375rem 1.25rem .3125rem;
  width: 100%;
  display: block;
  font-size: .76rem;
  transition: all .3s ease;
}

@media (min-width: 602px) and (max-width: 767px) {
  .side-navigation__link {
    padding: 14px 40px 10px;
    font-size: 24px;
  }
}
@media (any-hover: hover) {
  .side-navigation__link:hover {
    color: #6c7982;
  }
}
.side-navigation__item--current .side-navigation__link {
  padding-top: .4375rem;
  padding-bottom: .5625rem;
}

@media (min-width: 692px) and (max-width: 767px) {
  .side-navigation__item--current .side-navigation__link {
    padding-top: 14px;
    padding-bottom: 18px;
  }
}
@media (any-hover: hover) {
  .side-navigation__item--current .side-navigation__link:hover {
    color: #ffffff;
  }
}
.side-navigation__button-mobile {
  position: sticky;
  top: 87vh;
  bottom: 1rem;
  z-index: 1;
  display: none;
  border-radius: var(--brad-half);
  --button-bg: #5f6c75;
  --button-color: #ffffff;
}

@media (max-width: 767px) {
  .side-navigation__button-mobile {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 359px;
    display: flex;
    justify-content: center;
    pointer-events: auto;
  }

  .side-navigation__button-mobile .button__text {
    width: auto;
  }

  .side-navigation__button-mobile * {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .side-navigation__button-mobile {
    max-width: calc(50% - 15px);
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .side-navigation__button-mobile {
    border-radius: 12px;
  }
}
.side-navigation__button-mobile--half {
  max-width: 46%;
}

@media (min-width: 602px) and (max-width: 767px) {
  .side-navigation__button-mobile--half {
    margin-left: 16px;
  }
}
.promo-carousel {
  --max-height: 42.5rem;
  margin-bottom: 0.5rem;
  max-height: 42.5rem;
}

.promo-carousel .promo-carousel__img,
.promo-carousel .promo-carousel__pic,
.promo-carousel .promo-carousel__hero,
.promo-carousel .promo-carousel__slide,
.promo-carousel .swiper-wrapper {
  max-height: var(--max-height);
}

.promo-carousel__slide {
  display: grid;
  grid-template-columns: 75.4213483146% auto;
  border-radius: 1rem 0 0 1rem;
}

.promo-carousel__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.promo-carousel__pic {
  --img-brad: 1rem 0 0 1rem;
  position: static;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f8f8f8;
  border-radius: var(--img-brad);
}

.promo-carousel__img {
  width: 100%;
  border-radius: var(--img-brad);
  object-fit: cover;
}

.promo-carousel__info {
  --info-brad: 0 1rem 1rem 0;
  padding: 1.25rem 0.75rem 5.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: var(--info-brad);
}

.promo-carousel__category {
  margin-bottom: 2rem;
  font-family: 'RF Dewi', sans-serif;
  font-size: .76rem;
  line-height: 1.166;
  font-weight: 400;
  color: #a1aeb3;
}

.promo-carousel__title {
  margin-bottom: .885rem;
  font-size: 1.6875rem;
  line-height: 110%;
  font-weight: 400;
  color: #000000;
}

.promo-carousel__desc {
  font-size: .875rem;
}

@media (any-hover: hover) {
  .promo-carousel__button:hover {
    --button-bg: #6c7982;
  }
}
.promo-carousel__pagination {
  position: absolute;
  left: calc(75.4213483146% + 1.25rem);
  bottom: 1.875rem !important;
  z-index: 2;
  width: 100%;
  max-width: 17.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all .3s ease;
}

.promo-carousel__pagination .swiper-pagination-bullet {
  margin-right: 0.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  width: 100%;
  max-width: 2.25rem;
  display: block;
  cursor: pointer;
}

.promo-carousel__pagination .swiper-pagination-bullet:before {
  content: '';
  width: 100%;
  height: 0.125rem;
  display: block;
  background: #eceff1;
  border-radius: 6.25rem;
}

.promo-carousel__pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}

.promo-carousel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: #000000;
}

.promo-carousel-card {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  padding: 1.5rem .9375rem 1.75rem 1.25rem;
  max-width: 16.1111111111vw;
  display: none;
  background-color: #5f6c75;
  border-radius: var(--brad-half);
}

.promo-carousel-card--singular {
  display: grid;
}

.promo-carousel-card__title {
  margin-bottom: 1.6875rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 400;
  color: #f0f3f5;
}

.promo-carousel-card__desc {
  margin-bottom: 2.4375rem;
  font-family: 'RF Dewi', sans-serif;
  font-size: .875rem;
  line-height: 1.21;
  font-weight: 400;
  color: #a1aeb3;
}

@media (min-width: 768px) {
  .promo-carousel {
    height: 80vh;
    min-height: initial;
  }
}
@media (min-width: 768px) {
  .promo-carousel .promo-carousel__img,
  .promo-carousel .promo-carousel__pic,
  .promo-carousel .promo-carousel__hero,
  .promo-carousel .promo-carousel__slide,
  .promo-carousel .swiper-wrapper {
    height: 80vh;
    max-height: var(--max-height);
  }
}
@media (max-width: 767px) {
  .promo-carousel {
    min-height: 30rem;
  }
}
@media (max-width: 767px) {
  .promo-carousel {
    min-height: 42.5rem;
    --max-height: 42.5rem;
  }
}
@media (max-width: 767px) {
  .promo-carousel__slide {
    grid-template-columns: 70.4213483146% auto;
  }

  .promo-carousel__pagination {
    left: calc(70.921348% + 1.25rem);
  }
}
@media (max-width: 767px) {
  .promo-carousel {
    min-height: initial;
    --max-height: 483px;
  }
}
@media (max-width: 767px) {
  .promo-carousel {
    min-height: initial;
    --max-height: initial;
  }

  .promo-carousel__slide {
    grid-template-columns: 1fr;
  }

  .promo-carousel__pic {
    --img-brad: 12px 12px 0 0;
  }

  .promo-carousel__info {
    --info-brad: 0 0 12px 12px;
    padding-bottom: 77px;
  }

  .promo-carousel__category {
    margin-bottom: 12px;
    font-family: unset;
  }

  .promo-carousel__title {
    margin-bottom: 1rem;
  }

  .promo-carousel__desc {
    margin-bottom: 3.75rem;
  }

  .promo-carousel__pagination {
    left: 24px;
  }

  .promo-carousel-card__title {
    margin-bottom: 0;
    font-size: .875rem;
  }

  .promo-carousel-card__desc {
    display: none;
  }

  .promo-carousel-card__button {
    margin-top: auto;
    margin-left: auto;
    margin-right: .25rem;
    max-width: fit-content;
  }

  .promo-carousel__info-bottom .button {
    font-size: 14px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .promo-carousel {
    margin-bottom: 16px;
  }

  .promo-carousel__pic {
    --img-brad: 24.5px 24.5px 0 0;
  }

  .promo-carousel__info {
    --info-brad: 0 0 24.5px 24.5px;
    padding: 40px 68px 161px 40px;
  }

  .promo-carousel__category {
    font-family: unset;
  }

  .promo-carousel__button {
    --fz-button: 28px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .promo-carousel__pagination {
    left: 48px;
    bottom: 200px;
  }

  .promo-carousel__pagination .swiper-pagination-bullet {
    margin-right: 16px;
    max-width: 72px;
  }

  .promo-carousel-card {
    position: static;
    margin-top: 8px;
    padding: 16.75px 16.75px 22px;
    width: 100%;
    max-width: 100%;
    display: none;
    grid-template-columns: 52.9749303621% auto;
    align-items: center;
    border-radius: 1rem;
    column-gap: 26px;
  }

  .promo-carousel-card {
    margin-top: 16px;
    padding: 34px 34px 38px;
    border-radius: 12px;
  }

  .promo-carousel-card__title {
    font-size: 28px;
  }

  .promo-carousel-card__button {
    margin-right: 8px;
    padding: 14px 34px 18px;
    font-size: 24px;
  }
}
.promo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: .5rem;
}

@media (max-width: 767px) {
  .promo-gallery {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .promo-gallery {
    row-gap: 16px;
  }
}
.grabber-carousel {
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: calc(100% - 8.2638888889vw);
  overflow: visible;
}

.grabber-carousel .swiper-wrapper {
  overflow-x: visible;
}

.grabber-carousel__slide {
  max-width: 32.6388888889vw;
}

.grabber-carousel__slide-media {
  margin-bottom: 1.25rem;
  max-width: 100%;
  height: calc(var(--index) * 22);
  display: block;
}

.grabber-carousel__slide-pic {
  --brad: 1rem;
  height: 100%;
  display: block;
  border-radius: var(--brad);
}

.grabber-carousel__slide-img {
  height: 100%;
  display: block;
  border-radius: var(--brad);
  object-fit: cover;
}

.grabber-carousel__slide-title {
  margin-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.1875;
  font-weight: 400;
  color: #000000;
}

.grabber-carousel__slide-desc {
  opacity: .6;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 400;
  color: #5f6c75;
}

@media (max-width: 767px) {
  .grabber-carousel__slide {
    max-width: 470px;
  }

  .grabber-carousel__slide-media {
    height: calc(var(--index) * 42);
  }

  .grabber-carousel__slide-title {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .grabber-carousel__slide-desc {
    font-family: 'RF Dewi', sans-serif;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .grabber-carousel {
    padding-right: 40px;
  }
}
@media (min-width: 602px) and (max-width: 767px) {
  .grabber-carousel__slide-pic {
    --brad: 25px;
  }
}
@media (max-width: 601px) {
  .grabber-carousel {
    padding-right: 20px;
    max-width: calc(100% - 45px);
  }

  .grabber-carousel__slide-media {
    margin-bottom: 8px;
  }

  .grabber-carousel__slide-title {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .grabber-carousel__slide-desc {
    font-size: 12px;
  }
}
.poppa__storage {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1234567890;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.poppa__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all .3s ease;
}

.poppa__overlay._show {
  opacity: 1;
  pointer-events: initial;
}

.poppa__aligner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poppa {
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  max-width: 900px;
  border-radius: 2em;
  transform: scale(0.86);
  transition: all .3s ease;
}

._show .poppa {
  transform: scale(1);
}

.poppa__closer, .fancybox__button--close {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2.5em;
  height: 2.5em;
  display: block;
  font-size: 0;
  background-color: transparent;
  transition: all .3s ease;
  --closer-color: #ffffff;
}

@media (min-width: 602px) and (max-width: 767px) {
  .poppa__closer, .fancybox__button--close {
    font-size: 24px;
  }
}
.poppa__closer:before, .fancybox__button--close:before,
.poppa__closer:after, .fancybox__button--close:after {
  content: '';
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 10%;
  display: block;
  background-color: var(--closer-color);
  border-radius: 1em;
  transition: all .3s ease;
}

.poppa__closer:before, .fancybox__button--close:before {
  transform: rotate(45deg);
}

.poppa__closer:after, .fancybox__button--close:after {
  transform: rotate(-45deg);
}

.poppa__closer:hover:before, .fancybox__button--close:hover:before,
.poppa__closer:hover:after, .fancybox__button--close:hover:after {
  background-color: #ff3b30;
}

.poppa {
  padding: 1.5rem 1.125rem 2.3125rem;
  width: 100%;
  max-width: 18.75rem;
  color: #ffffff;
  border-radius: 0;
}

@media (min-width: 768px) {
  .poppa {
    max-width: 31.25rem;
  }
}
.poppa--wide {
  padding-top: 5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.poppa--overlay {
  background: rgba(0, 0, 0, 0.8);
}

.poppa__closer, .fancybox__button--close {
  --closer-color: #ffffff;
  font-size: 1.25rem;
  color: transparent;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
}

@media (max-width: 767px) {
  .poppa__closer, .fancybox__button--close {
    font-size: .75rem;
  }
}
.poppa__title {
  margin-bottom: 1.25rem;
  font-family: 'Poiret One', sans-serif;
  font-size: 1.125rem;
  line-height: 126%;
  text-align: center;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.poppa__title-link {
  color: inherit;
}

@media (min-width: 1100px) {
  .poppa__title-link:hover {
    color: #5f6c75;
  }
}
.poppa__button {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .poppa__button {
    padding-top: 15px;
    padding-bottom: 16px;
  }
}
.poppa__closer, .fancybox__button--close {
  top: .75rem;
  right: 1.5rem;
}

@media (max-width: 601px) {
  .poppa__closer, .fancybox__button--close {
    top: 1.375rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}
@media (min-width: 768px) {
  body:not(.os-linux):not(.os-macos) .poppa__closer, body:not(.os-linux):not(.os-macos) .fancybox__button--close {
    right: 27px;
  }
}
.poppa__closer:before, .fancybox__button--close:before,
.poppa__closer:after, .fancybox__button--close:after {
  top: 44%;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  height: 5%;
}

@media (max-width: 767px) {
  .poppa__closer:before, .fancybox__button--close:before,
  .poppa__closer:after, .fancybox__button--close:after {
    top: 46%;
    width: 70%;
  }
}
.poppa__overlay--address-pop .poppa-aligner {
  height: 100%;
}
