/*------------ROOT STYLES---------------*/
:root {
  --color-main: #E20A17;
  --color-main-dark: #C60713;
  --text-color: #2F2F32;
  --text-grey: #8B8B8B;
  --main-bg: #F5F5F5;
  --second-bg: #F2EBEB;
  --color-yellow: #E68026;
  --color-light-green: #E8FFE6;
  --color-green: #009640;
  --color-light-orange: #FBF3EC;
  --color-orange: #E68026;

  --font-main: 'Inter', sans-serif;
  --mfz: 16px;

  --border-radius-main: 16px;
  --border-radius-large: 20px;
  --border-color: #EAEAEA;
  --main-border: 2px solid var(--border-color);

  --delay-main: 0.3s;

  --base-letter-spacing: -.5px;
}
@font-face {
  font-family: 'Inter';
  src: url('/local/templates/main/fonts/Inter-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/local/templates/main/fonts/Inter-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/local/templates/main/fonts/Inter-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1, .title {
  font-size: clamp(2.75rem, 1.0192rem + 3.6058vw, 4.625rem);
  font-weight: 600;
  line-height: 100%;
}
h2 {
  font-size: clamp(1.75rem, 1.2885rem + 0.9615vw, 2.25rem);
  font-weight: 600;
  line-height: 100%;
}
h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
}
h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  color: var(--text-color);

  &.no-scroll,
  &:has(.gmodal-open) {
    scrollbar-gutter: stable;
  }

  &.is-blured .blur-item {
    z-index: 1;
    opacity: 1;
  }
}
body {
  overflow-y: scroll;
  line-height: 100%;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: var(--base-letter-spacing);

  &.is-blured .blur-item {
    z-index: 1;
  }

  .no-scroll &,
  &.gmodal-open {
    overflow: hidden;
  }
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  min-width: 320px;
}
a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--delay-main);

  &:hover {
    color: var(--color-main);
  }
}
.blur-item {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--delay-main);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}
.mb {
  margin-bottom: 120px;
}
.mt {
  margin-top: 120px;
}
.lmb {
  margin-bottom: 80px;
}
.lmt {
  margin-top: 80px;
}
.text-grey {
  color: var(--text-grey);
}
.ps-text {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 100%;
}
.info-text {
  font-size: 20px;
  display: block;
  padding: 16px;
  border-radius: var(--border-radius-main);
  color: var(--color-orange);
  background-color: var(--color-light-orange);
}
.text-center {
  text-align: center;
}
.line-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
.line-items--center {
  justify-content: center;
}
.gallery-item:hover {
  cursor: pointer;
}
.info {
  font-size: 16px;
  background: var(--color-main);
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.warning {
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 600;
  line-height: 40px;
  display: block;
  text-align: center;
  color: var(--color-yellow);
  font-style: italic;
  flex-shrink: 0;
}
.props-container {
  width: 100%;
}
.btn {
  border-radius: var(--border-radius-main);
  padding: 16px;
  background: none;
  font-family: var(--font-main);
  font-size: var(--mfz);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  display: inline-block;
  color: var(--text-color);
  cursor: pointer;
  transition: background-color var(--delay-main), color var(--delay-main);

  &[disabled] {
    opacity: 0.5;
    pointer-events: none;
  }
  &:hover {
    color: var(--text-color);
  }
}
.btn--red {
  background-color: var(--color-main);
  color: #fff;

  svg {
    fill: #fff;
  }

  &:hover {
    color: #fff;
    background-color: var(--color-main-dark);
  }
}
.btn--grey {
  background-color: #F2EBEB;
  color: var(--color-main);
  border: 0;

  &:hover {
    background-color: var(--color-main);
    color: #fff;

    svg {
      fill: #fff;
    }
  }

  svg {
    fill: var(--color-main);
  }
}
.btn--icon {
  display: flex;
  align-items: center;
  gap: 12px;

  svg {
    transition: fill var(--delay-main);
  }
}
.btn--border {
  border: var(--main-border);

  &:hover {
    background-color: var(--border-color);
  }

  &[disabled] {
    background-color: var(--border-color);
  }
}
.btn--border-red {
  background-color: var(--second-bg);
  color: var(--color-main);

  &:hover {
    background-color: var(--main-bg);
  }

  &[disabled] {
    background-color: var(--border-color);
  }
}
.btn--text {
  background:none;
  border: 0;
  color: var(--text-color);

  &:hover {
    color: var(--text-color);
  }
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
  border-radius: var(--border-radius-main);
  border: var(--main-border);
  padding: 12px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  color: var(--text-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-inner-spin-button: none;
  transition: border-color var(--delay-main);

  &::-webkit-input-placeholder {
    opacity: 0;
  }

  &:focus {
    border-color: var(--text-color);
  }
}
textarea {
  resize: none;
  min-height: 100px;
  field-sizing: content;
}
input[type="number"] {
  -moz-appearance: textfield;

  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}
select {
  border-radius: var(--border-radius-main);
  border: var(--main-border);
  padding: 12px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  color: var(--text-color);
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  transition: border-color var(--delay-main);
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  display: flex;
  align-items: center;
  line-height: 125%;

  &::-moz-placeholder {
    color: var(--text-grey);
    font-weight: 500;
  }

  &::placeholder {
    color: var(--text-grey);
    font-weight: 500;
  }

  &::picker-icon {
    content: "";
    background-image: url('/local/templates/main/img/ch_r.svg');
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
    transition: transform var(--delay-main);
  }

  &:open::picker-icon {
    transform: rotate(270deg);
  }

  &::picker(select) {
    -webkit-appearance: base-select;
       -moz-appearance: base-select;
            appearance: base-select;
    border-radius: var(--border-radius-main);
    margin-top: 2px;
    border: var(--main-border);
    background-color: #fff;
    padding: 2px;
  }

  &:focus {
    border-color: var(--text-color);
  }
}
option {
  padding: 14px;
  border-radius: var(--border-radius-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-grey);

  &[hidden] {
    display: none;
  }

  &:hover {
    background-color: var(--main-bg);
  }

  &::checkmark {
    display: none;
  }

  &::before {
    content: '';
    background-color: var(--text-grey);
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }

  &:checked {
    color: var(--color-main);

    &::before {
      background-color: var(--color-main);
    }
  }
}
selectedcontent {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*------------PAGES STYLES---------------*/
.header {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.header__fixed {
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 40px;
  left: 0;
  transition: top var(--delay-main);

  &::before {
    content: '';
    background: var(--color-white-06, rgba(255, 255, 255, 0.6));
    transition: background var(--delay-main);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  &:has(.catalog-drop.is-active)::before {
    background: #fff;
  }
}
.header__top {
  display: flex;
  align-items: center;
  padding: 9px 0;
  padding-bottom: 72px;
}
body:has(.product-detail) .header__top {
  padding-bottom: 0;
}
body:has(.product-detail) .header__fixed {
  position: relative;
  top: 0;
}
.header__middle {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 20px;

  .location {
    display: none;
  }
}
.header__last {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--delay-main);

  &:hover {
    color: var(--color-main);
  }
}
.header__social {
  font-size: 0;
  line-height: 0;

  svg {
    fill: var(--text-grey);
  }
}
.header__search {
  font-size: 0;
  border: 0;
  border-radius: var(--border-radius-main);
  border: var(--main-border);
  padding: 12px;
  line-height: 0;
  max-width: 460px;
  min-width: 50px;
  flex: 1;
  height: 48px;
  cursor: pointer;
  background-color: transparent;
  background-image: url('/local/templates/main/img/search.png');
  background-size: 16px;
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.shop-img {
  border-radius: 32px;
  max-height: 700px;
  max-width: 100%;
}
.footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.footer__blocks {
  display: flex;
  gap: 20px;
  padding-block: 20px;
  flex-wrap: wrap;
}
.footer__item {
  width: calc(25% - 20px);
}
.catalog-block {
  margin-top: 120px;
}
.catalog-block__head {
  display: flex;
  align-items: flex-end;
  gap: 10px;

}
.catalog-block__count {
  font-size: 26px;
  color: var(--text-grey);
}
.catalog-block__controls {
  display: flex;
  align-items: flex-end;
  margin-block: 40px 20px;

  .catalog-block__sort {
    margin-left: auto;
    width: 200px;
    flex-shrink: 0;
  }
}
.catalog-block__list {
  display: grid;
  grid-template-columns: repeat(var(--col-count, 6), 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.catalog-block__more {
  text-align: center;
}
.catalog-block__filter-btn {
  display: none;

  svg {
    transform: rotate(270deg);
  }
}
.content-page {

  .container {
    max-width: 1300px;
  }

  img {
    max-width: 100%;
  }

  h1, .title {
    margin-bottom: 60px;
    text-align: center;
    margin-top: 120px;
  }

  .section-list {
    margin-bottom: 40px;

    .swap-line {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .catalog-section {
      flex: none;
      max-width: unset;
      min-width: unset;
    }
  }

  ul {
    margin-left: 17px;
    margin-bottom: 40px;
  }
}
.content-page__text {
  max-width: 790px;
  margin: 0 auto;
  line-height: 160%;
  font-weight: 400;
}
.radius-image {
  border-radius: 32px;
}
.page-image {
  margin-bottom: 80px;
}
/*------------COMPONENTS STYLES---------------*/
.location {
  position: relative;
  margin-left: auto;

  .location__btn {
    color: var(--text-grey);
    padding: 0;

    &:hover .location__name {
      border-color: var(--text-color);
    }

    &:hover svg {
      fill: var(--text-color);
    }

    svg {
      fill: var(--text-grey);
      transition: fill var(--delay-main);
    }
  }

  .location__name {
    transition: border-color var(--delay-main);
    border-bottom: 1px dotted var(--text-grey);
  }
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-menu__link {
  color: var(--text-grey);
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--delay-main);

  &:hover,
  &.is-active {
    color: var(--text-color);
  }
}
.catalog-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--mfz);
  font-weight: 600;
}
.catalog-menu__img {
  display: none;
}
.catalog-menu__link {
  padding: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--delay-main);

  &:hover {
    color: var(--color-main);
  }
}
.catalog-menu__link--icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bordered-block {
  border: var(--main-border);
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-main);
}
.bordered-block__item {
  padding: 16px;
  transition: background-color var(--delay-main);
  border-radius: calc(var(--border-radius-main) - 2px);

  &:hover {
    background-color: var(--border-color);
  }
}
.cart-block__link {
  display: block;
  font-size: 0;
  line-height: 0;
  position: relative;

  svg {
    fill: var(--text-color);
  }
}
.cart-block__count {
  font-size: 14px;
  font-weight: 600;
  padding: 2px 4px;
  background-color: var(--color-main);
  color: #fff;
  border-radius: 6px;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  line-height: 14px;
}
.cart-block__popup {
  position: absolute;
  right: 0;
  top: 52px;
}
.cart-block__more {
  border-top: 1px solid var(--border-color);
  padding-block: 8px;
  font-size: 14px;
  color: var(--text-grey);
}
.cart-block__total {
  padding-block: 8px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.cart-block__cart {
  display: block;
  text-align: center;
}
.catalog-drop {
  padding: 20px 0;
  position: absolute;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  height: 0;
  background-color: #fff;
  transform: translateY(-20px);
  transition-property: opacity, transform, height, visibility;
  transition-duration: var(--delay-main);

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

  & .container {
    height: 100%;
  }
}
.catalog-section__img {
  width: 175px;
  height: 115px;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog-drop__close {
  display: none;
}
.catalog-drop__item {
  padding-left: 270px;
  display: none;
  height: inherit;
  gap: 20px;

  &.is-active {
    display: flex;
  }
}
.catalog-drop__sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-right: calc(100% / 4);
}
.catalog-drop__right {
  margin-left: auto;
  width: 250px;

  .slider-header {
    margin-bottom: 20px;
  }
}
.catalog-drop__left {
  display: flex;
  flex-direction: column;
}
.catalog-drop__more {
  margin-top: auto;
  display: flex;
  gap: 40px;
}
.catalog-section {
  background-color: var(--main-bg);
  border-radius: var(--border-radius-main);
  position: relative;
  padding: 16px;
  width: 225px;
  padding-bottom: 0;
  transition: transform var(--delay-main);

  &:hover {
    transform: scale(1.03);

    .catalog-section__name {
      color: var(--color-main);
    }

    .catalog-section__count {
      color: var(--text-color);
    }
  }
}
.catalog-section__top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  justify-content: space-between;
}
.catalog-section__name {
  color: var(--text-color);
  transition: color var(--delay-main);
}
.catalog-section__count {
  font-size: 20px;
  color: var(--text-grey);
  transition: color var(--delay-main);
}
.catalog-section__label {
  position: absolute;
  border-radius: 8px;
  font-size: 14px;
  line-height: 14px;
  padding: 6px 8px;
  bottom: 16px;
  transform: translateX(-50%);
  left: 50%;
  white-space: nowrap;
  text-transform: uppercase;
}
.catalog-section__label--new {
  background-color: #009640;
  color: #fff;
}
.catalog-section__label--hit {
  background-color: var(--color-main);
  color: #fff;
}
.catalog-section__label--sale {
  background-color: var(--color-yellow);
  color: #fff;
}
.catalog-section__img {
  font-size: 0;
  margin: 0 auto;
  display: block;
}
.catalog-section--more {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 2px solid var(--border-color);
}
.catalog-section__bottom {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin-top: auto;
}
.slider-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.slider-header__title {

}
.slider-header__btn {
  margin-left: auto;
}
.slider-header__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.slider-header__arrow {
  font-size: 0;
  line-height: 0;
  padding: 12px;
}
.slider-header__arrow--prev {
  transform: scale(-1);
}
.slider-header__arrow--next {

}
.product-item {

  .product-prices {
    margin-bottom: 16px;
    min-height: 24px;
  }
}
.product-item__gallery {
  position: relative;
  display: block;
  margin-bottom: 32px;

  a {
    font-size: 0;
    line-height: 0;
    display: inline-block;
  }
}
.product-item__img {
  height: 175px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  transition: opacity var(--delay-main);

  &.is-fading {
    opacity: .5;
  }
}
.product-item__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  display: flex;
  gap: 8px;
}
.product-item__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ddd;
  transition: background-color var(--delay-main);

  &.is-active {
    background-color: var(--text-color);
  }
}
.product-item__info {

}
.product-item__name {
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  display: block;
  height: 70px;
  overflow: hidden;
}
.product-item__btn {
  width: 100%;
}
.main-banner {
  background-color: var(--main-bg);
}
.main-banner__item {
  position: relative;
}
.main-banner__img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
}
.main-banner__content {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  text-align: center;
}
.main-banner__title {
  margin-bottom: 12px;
}
.main-banner__text {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 120%;
}
.main-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.swap-line {
  display: flex;
  gap: 22px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }

  .catalog-section {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 100%;
  }
}
.swap-line--wrap {
  flex-wrap: wrap;

  .catalog-section {
    flex: 0 0 calc(25% - 17px);
    min-width: 180px;
    max-width: 100%;
  }
}
.slider-controls {

  --btn-size: 48px;
  --btn-bg: #2f2f329e;

  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.slider-controls__arrow {
  background-color: var(--btn-bg);
  width: var(--btn-size);
  height: var(--btn-size);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  border: 0;
  cursor: pointer;
  transition: background-color var(--delay-main);
  border-radius: var(--border-radius-main);

  svg {
    fill: #fff;
  }

  &[disabled] {
    opacity: .5;
    pointer-events: none;
  }

  &:hover {
    background-color: var(--text-color);
  }
}
.slider-controls__arrow--prew {
  transform: scale(-1);
}
.slider-controls__arrow--next {

}
.slider-controls__dots {
  height: var(--btn-size);
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--border-radius-main);
  background-color: var(--btn-bg);
  padding-inline: 20px;
  position: relative;
}
.slider-controls__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  border: 0;
  font-size: 0;
  line-height: 0;
  transition: border-radius var(--delay-main), width var(--delay-main), margin var(--delay-main);
}
.slider-controls__dot.is-active {
  width: 24px;
  border-radius: 4px;
  margin-inline: -8px;
}
.blog-item {

  &:hover .blog-item__icon {
    transform: translate(-50%, -50%) scale(1.5);
  }
}
.blog-item__wrap {
  position: relative;
  margin-bottom: 16px;
}
.blog-item__img {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  max-width: 100%;
  display: block;
}
.blog-item__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background-color: var(--second-bg);
  padding: 16px;
  font-size: 0;
  line-height: 0;
  border-radius: var(--border-radius-main);
  transition: transform var(--delay-main);

  svg {
    fill: var(--color-main);
  }
}
.blog-item__date {
  margin-bottom: 12px;
  color: var(--text-grey);
  font-weight: 500;
}
.blog-item__title {
  font-size: 20px;
}
.fast-service {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fast-service__item {
  padding: 40px;
  background-color: var(--main-bg);
  border-radius: var(--border-radius-large);
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 790px;
}
.fast-service__text {
  font-size: 26px;
  line-height: 120%;
  text-align: center;
}
.fast-service__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.shop-tabs {
  display: flex;
  align-items: center;
  padding: 4px;
  border: var(--main-border);
  border-radius: var(--border-radius-main);
  justify-self: flex-start;
  margin-bottom: 20px;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;

  &::-webkit-scrollbar {
    display: none;
  }
}
.shop-tabs__item {
  white-space: nowrap;
  border-radius: 12px;
  background: none;
  font-family: inherit;
  font-size: inherit;
  border: 0;
  cursor: pointer;
  color: var(--text-grey);
  padding: 12px;
  transition: color var(--delay-main), background-color var(--delay-main);

  &:hover {
    background-color: var(--main-bg);
    color: var(--text-color);
  }

  &.is-active {
    box-shadow: 0px 4px 8px 2px rgba(29, 29, 31, 0.15);
    color: var(--text-color);

    &:hover {
      background-color: #fff;
    }
  }
}
.footer-menu__control {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  svg {
    display: none;
  }
}
.footer-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: flex-start;
}
.footer-menu__title {
  font-weight: 500;
}
.footer-menu__link {
  font-size: 14px;
  color: var(--text-grey);

  &:hover,
  &.is-active {
    color: var(--color-main);
  }
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: flex-start;
}
.footer-contacts__title {
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-contacts__address {
  font-size: 14px;
  color: var(--text-grey);
}
.footer-contacts__link {
  text-align: center;
  align-self: flex-start;
}
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-block: 20px;
  flex-wrap: wrap;

  a {
    color: var(--text-grey);
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }
}
.footer-copy__text {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-grey);
}
.product-prices {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-prices__price {
  font-size: 20px;
}
.product-prices__old-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-grey);
  text-decoration: line-through;
}
.product-prices__sale {
  margin-left: auto;
  background-color: var(--text-color);
  padding: 4px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
}
.product-prices--small {
  .product-prices__price {
    font-size: 16px;
  }
}
.product-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 16px;
}
.product-line__img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-line__content {
  width: 210px;
}
.product-line__name {
  font-weight: 500;
  line-height: 140%;
  color: var(--text-grey);
  margin-bottom: 12px;
}
.product-line__remove {
  width: 48px;
  height: 48px;
}
.popup {
  background-color: #fff;
  position: absolute;
  z-index: 5;
  box-shadow: 0px 4px 30px 0px rgba(8, 76, 149, 0.1);
  border-radius: 32px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 320px;
  transition: opacity var(--delay-main), visibility var(--delay-main);
}
.has-popup {
  position: relative;

  &:hover .popup {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.location-block__search {
  margin-bottom: 40px;
}
.location-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.location-block__city {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 40px;
  cursor: pointer;
  transition: color var(--delay-main);

  &:hover,
  &.is-active {
    color: var(--color-main);
  }
}
.footer-social__title {
  font-weight: 500;
  margin-bottom: 32px;
}
.footer-social__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: flex-start;
  flex-wrap: wrap;
}
.footer-social__link {
  font-size: 14px;
  color: var(--text-grey);
}
.mobil-navbar {
  padding: 15px 8px;
  background-color: #fff;
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  align-items: center;
  gap: 20px;
  display: none;
}
.mobil-navbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-color);
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: color var(--delay-main);

  svg {
    width: 16px;
    height: 16px;
    fill: var(--text-color);
    transition: fill var(--delay-main);
  }
}
.mobil-navbar__close {
  display: none;
}
.mobil-navbar__item.is-active,
.mobil-navbar__item:hover {
  color: var(--color-main);

  svg {
    fill: var(--color-main);
  }
}
.mobil-navbar__item.is-active {
  .mobil-navbar__close {
    display: block;
  }

  .mobil-navbar__menu {
    display: none;
  }
}
.mobil-navbar__text {
  font-size: 14px;
}
.mobil-navbar__wrap {
  position: relative;
}
.mobil-navbar__count {
  font-size: 14px;
  font-weight: 600;
  padding: 2px 4px;
  background-color: var(--color-main);
  color: #fff;
  border-radius: 6px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 5;
  line-height: 14px;
}
.form-group-check {
  margin-right: auto;
  width: 100%;
}
.form-group-check__title {
  font-weight: 500;
  color: var(--text-grey);
  margin-bottom: 8px;

  span {
    color: var(--text-color);
  }
}
.form-group-check__list {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  border: var(--main-border);
  padding: 2px;
  gap: 4px;
  border-radius: var(--border-radius-main);
}
.form-group-check__item {
  white-space: nowrap;
  position: relative;
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color var(--delay-main);

  input[type="checkbox"],
  input[type="radio"] {
    display: none;
  }

  &:has(.info) {
    padding-right: 35px;
  }

  .info {
    position: absolute;
    right: 5px;
    top: 5px;
  }
}
.form-group-check__name {
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 100%;
  transition: color var(--delay-main);

  svg {
    fill: var(--text-grey);
    transition: fill var(--delay-main);
  }
}
.form-group-check__item:has(input:checked),
.form-group-check__item:hover {
  box-shadow: 0px 4px 8px 2px #1D1D1F0F;
  background-color: var(--main-bg);

  .form-group-check__name {
    color: var(--text-color);

    svg {
      fill: var(--text-color);
    }
  }
}
.form-group-check--images {
  .form-group-check__list {
    border: 0;
  }

  .form-group-check__item {
    padding: 0;
    border: 2px solid transparent;
    transition: border-color var(--delay-main);
  }

  .form-group-check__item:has(input:checked), .form-group-check__item:hover {
    background-color: transparent;
    box-shadow: none;
    border: 2px solid var(--text-color);
  }

  .form-group-check__img-wrap {
    padding: 8px;

    img {
      width: 64px;
      height: 64px;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
}
.politic-form {
  position: relative;

  label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  input[type="checkbox"] {
    width: 1px;
    height: 1px;
    position: absolute;
    left: 10px;
    top: 20px;
    opacity: 0;
  }
}
.politic-form__check {
  width: 22px;
  height: 22px;
  font-size: 0;
  line-height: 0;
  border: var(--main-border);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--delay-main), background-color var(--delay-main);

  &:hover {
    border-color: var(--text-grey);
  }

  svg {
    fill: #fff;
    opacity: 0;
    transition: opacity var(--delay-main);
  }
}
.politic-form:has(input:checked) {
  .politic-form__check {
    border-color: var(--color-main);
    background-color: var(--color-main);

    svg {
      opacity: 1;
    }
  }
}
.politic-form__text {
  font-weight: 500;
  line-height: 140%;
  color: var(--text-grey);

  a {
    color: var(--text-color);
  }
}
.catalog-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gmodal__body .catalog-filter {
  align-items: flex-start;
}
.catalog-filter__item {

  select {
    width: 250px;
  }
}
.catalog-filter__name {
  color: var(--text-grey);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.catalog-filter__content--inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-filter__price {
  position: relative;
  width: 140px;
}
.column-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.catalog-filter__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.column-form__large-text {
  font-size: 36px;
  margin-block: 20px 40px;
  line-height: 140%;

  &:empty {
    display: none;
  }
}
.column-form {
  .catalog-filter__btns {
    justify-content: space-between;
    width: 100%;
  }
}
.breadcrumbs {
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;

  svg {
    fill: var(--text-grey);
  }
}
.breadcrumbs__item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);

  &:last-child {
    color: #ddd;
  }
}
.product-detail {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;

  h1 {
    width: 100%;
    margin-bottom: 20px;
    display: none;
  }

  h2 {
    margin-block: 32px;
  }
}
.product-detail__gallery {
  width: 57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-detail-image {

  img {
    max-width: 100%;
    align-self: center;
    -o-object-fit: contain;
       object-fit: contain;
    width: 510px;
    height: 510px;
    display: block;
    margin: 0 auto;
  }

  .slider-controls {
    display: none;
  }
}
.product-detail__carusel {
  padding-inline: 68px;
  margin: 80px auto 0;
  position: relative;
  width: 68%;

  .splide__track {
    position: relative;
    z-index: 1;
    padding-inline: 10px !important;
  }
}
.product-detail__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: calc(-48px / 2);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail__dot {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: block;
  border: 0;
  padding: 8px;
  background: none;
  margin-left: 2px !important;
  border-radius: var(--border-radius-main);
  border: 2px solid transparent;
  transition: border-color var(--delay-main);
  cursor: pointer;

  &:hover {
    border-color: var(--border-color);
  }

  &.is-active {
    border-color: var(--text-color);
  }
}
.product-detail__dot-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__detail {
  width: calc(43% - 40px);

  h1 {
    font-size: 36px;
    margin-block: 32px;
  }
}
.product-detail__labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.product-detail__label {
  border-radius: var(--border-radius-main);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-detail__label--original {
  color: var(--text-color);
  background-color: var(--main-bg);

  svg {
    fill: var(--text-color);
  }
}
.product-detail__label--in-stock {
  color: var(--color-green);
  background-color: var(--color-light-green);

  svg {
    fill: var(--color-green);
  }
}
.product-detail__moneys {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
}
.product-detail__money {
  padding: 20px;
  border-radius: 20px;
  align-self: stretch;
  flex: 1;

  .product-prices {
    gap: 8px;
  }
  .product-prices__sale {
    margin-left: 0;
  }
}
.product-detail__money--cash {
  background-color: var(--color-light-orange);
  position: relative;

  .product-detail__money-text {
    color: var(--color-orange);
  }
}
.product-detail__money-text {
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
.product-detail__money--terminal {
  background-color: var(--main-bg);

  .product-detail__money-text {
    color: var(--text-grey);
  }
}
.product-detail__money--info {
  width: 100%;
  flex: auto;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  gap: 20px;

  .product-detail__money-text {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
  }
}
.product-detail__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.product-detail__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.product-detail__info-item {
  display: flex;
  align-items: center;
  gap: 16px;

  svg {
    fill: var(--text-color);
    flex-shrink: 0;
  }
}
.product-detail__info-text {
  span {
    color: var(--text-grey);
  }
}
.service-item {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 32px;
  background-color: var(--main-bg);
  gap: 16px;
  height: 560px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  .product-prices {
    margin-top: auto;
  }
}
.service-item__name {

}
.service-item__info {
  color: var(--text-grey);
  font-weight: 500;

  p {
    margin-bottom: 12px;
  }

  ul {
    margin-left: 17px;
    margin-bottom: 12px;

    li:not(:last-child) {
      margin-bottom: 12px;
    }
  }

  *:last-child {
    margin-bottom: 0;
  }
}
.service-item__btn {

}
.product-props {

}
.product-props__wrap {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}
.product-props__tabs {
  margin-top: 20px;
  width: 50%;
}
.product-props__desc {
  width: 50%;
  padding-top: 105px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;

  *:not(:last-child) {
    margin-bottom: 20px;
  }
}
.product-props__table {
  width: 100%;

  td {
    width: 50%;
    font-weight: 500;
    padding-block: 16px;
    vertical-align: top;

    &:first-child {
      color: var(--text-grey);
    }
  }

  tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
  }

  .prop-line:not(:last-child) {
    margin-bottom: 12px;
    display: block;
  }
}
.tabs__controls {
  gap: 4px;
  border-radius: var(--border-radius-main);
  display: flex;
  align-items: center;
  border: var(--main-border);
  padding: 4px;

}
.tabs__control {
  white-space: nowrap;
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  color: var(--text-grey);
  transition: background-color var(--delay-main), box-shadow var(--delay-main), color var(--delay-main);

  &:hover,
  &.is-active {
    box-shadow: 0px 4px 8px 2px #1D1D1F0F;
    background-color: var(--main-bg);
    color: var(--text-color);
  }
}
.tabs__contents {
  margin-top: 20px;
}
.tabs__content {
  display: none;

  &.is-active {
    display: block;
  }
}
.product-more-info {

  h2 {
    text-align: center;
    font-size: clamp(2.75rem, 1.0192rem + 3.6058vw, 4.625rem);
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
  }

  h4 {
    margin-bottom: 20px;
  }

  .container {
    max-width: 1300px;
  }

  iframe {
    margin: 0 auto 20px;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: unset;
    height: unset;
    max-height: 580px;
    display: block;
  }

  img {
    max-width: 100%;
  }
}
.product-more-info__img {
  max-width: 100%;
  display: block;
  margin: 0 auto 80px;
}
.product-more-info__content {
  max-width: 790px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;

  *:not(:last-child) {
    margin-bottom: 20px;
  }
}
.cart-section {
  display: flex;
  align-items: flex-start;
  gap: 155px;
  margin-top: 40px;

  .product-prices {
    gap: 8px;
  }
}
.cart-section__left {
  width: calc(100% - 155px - 385px);
}
.cart-section__item {
  padding-block: 40px;
  border-bottom: 2px solid var(--main-bg);
}
.cart-section__head {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cart-section__img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-section__info {

}
.cart-section__name {
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 16px;
}
.cart-section__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-section__controls {
  display: flex;
  align-items: center;
}
.cart-section__offers {
  width: 100%;
  padding-left: calc(100px + 16px);
}
.cart-section__title {
  margin-bottom: 8px;
}
.cart-section__offers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  .cart-offer {
    width: calc(33.3333% - 5.4px);
  }
}
.counter {
  display: flex;
  align-items: center;
  gap: 4px;
}
.counter__btn {
  font-size: 0;
  flex-shrink: 0;
}
input.counter__input {
  width: 62px;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 14px;
}
.btn__btn--trash {
  display: none;
}
.btn__btn--minus {
}
.btn__btn--plus {

}
.counter:has(input[value="1"]) {
  .btn__btn--minus {
    display: none;
  }
  .btn__btn--trash {
    display: block;
  }
}
.cart-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: var(--border-radius-main);
  transition: border-color var(--delay-main), box-shadow var(--delay-main);

  &:hover {
    border-color: var(--main-bg);
    box-shadow: 0px 4px 8px 2px #1D1D1F0F;
  }

  &.is-active {
    border-color: var(--color-main);

    &::after {
      content: '';
      background-image: url('/local/templates/main/img/cart-active.svg');
      background-repeat: no-repeat;
      width: 16px;
      height: 16px;
      display: block;
      position: absolute;
      right: 10px;
      bottom: 10px;
    }
  }
}
.cart-offer__img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.cart-offer__info {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.cart-offer__name {
  color: var(--text-grey);
  font-size: 14px;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-offer__price {
  font-size: 14px;
}
.cart-offer:hover .offer-popup {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.cart-offer .offer-popup {
  .product-prices__price {
    font-size: 16px;
  }
}
.offer-popup {
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(100% + 2px);
  border-radius: 32px;
  padding: 16px;
  background-color: #fff;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 8px 2px #1D1D1F0F;
  transition: visibility var(--delay-main), opacity var(--delay-main);
}
.offer-popup__name {
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 140%;
}
.offer-popup__btn {
  margin-top: 16px;
  width: 100%;
}
.popup-drag-area {
  visibility: hidden;
  width: 100%;
  height: 30px;
  cursor: grab;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  &::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--border-color);
    border-radius: 1px;
  }
}
.offer-popup__btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-sidebar {
  width: 385px;
  position: sticky;
  top: 76px;
}
.order-sidebar__table {
  width: 100%;
  padding-block: 40px;
  margin-bottom: 20px;

  td {
    padding-block: 16px;
    width: 50%;
    font-weight: 500;
    color: var(--text-grey);
  }

  tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
  }

  tr:last-child td {
    font-weight: 600;
    color: var(--text-color);
    font-size: 20px;
  }
}
.order-sidebar__total {
  color: var(--text-color);
}
.order-sidebar__sale {
  color: var(--color-green);
}
.order-sidebar__total {}
.order-sidebar__btn {
  width: 100%;
  display: block;
  text-align: center;
}
.radio-item {
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 150px;
  padding: 20px;
  cursor: pointer;
  background-color: var(--main-bg);
  border-radius: var(--border-radius-large);
  border: 2px solid transparent;
  transition: border-color var(--delay-main), transform var(--delay-main);

  input[type="radio"] {
    display: none;
  }

  &:has(input:checked) {
    border-color: var(--color-main);

    .radio-item__name {
      color: var(--color-main);
    }
  }

    &:not(:has(input:checked)):hover {
    .radio-item__name {
      color: var(--color-main);
    }
  }
}
.radio-item.radio-item--mini {
  height: auto;
  width: 140px !important;
  padding: 16px;
  padding-bottom: 0;
  flex: 1 0 140px;

  .radio-item__img {
    width: auto;
    margin: 0 auto;
    margin-top: 12px;
  }
}
.radio-item__name {
  transition: color var(--delay-main);
  font-size: 14px;
}
.radio-item__img {
  width: 60px;
  height: 60px;
  margin-top: auto;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.order-form__blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-form__city {
  color: var(--color-main);
  border-bottom: 1px dashed var(--color-main);
  display: inline-block;
  cursor: pointer;
}
.order-form__line {
  width: 100%;
}
.order-form__line--flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
.order-form__line--address {
  .form-label:first-child {
    flex: 0 0 60%;
  }

  input:not(:first-child) {
    flex: 1;
  }
}
.order-form__line--radio {
  display: flex;
  align-items: center;
  gap: 20px;
}
.order-form__info {
  font-weight: 500;
  line-height: 140%;
  background-color: var(--color-light-orange);
  border-radius: 8px;
  padding: 12px;
}
.product-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-block: 20px 80px;

  .cart-offer {
    width: calc(33.3333% - 11px);
  }
}
.advantages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
}
.advantages__item {
  width: calc(33.3333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--border-radius-large);
  background-color: var(--main-bg);
  padding: 40px;
  height: 400px;
  align-items: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;

  .btn {
    margin-top: auto;
  }
}
.advantages--dual .advantages__item {
  width: calc(50% - 14px);
  height: 500px;
}
.advantages__name {
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
}
.advantages__text {
  text-align: center;
  color: var(--text-grey);
  font-weight: 500;
}
.blog-page {
  h1 {
    margin-top: 0;
    font-size: clamp(2.75rem, 1.0192rem + 3.6058vw, 4.625rem);
  }

}
.blog-page__detail {
  a {
    color: var(--color-main);

    &:hover {
      color: var(--color-main-dark);
    }
  }
}
.blog-page__date {
  text-align: center;
  margin-top: 80px;
  color: var(--text-grey);
  font-weight: 500;
}
.blog-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.form-group {
  width: 100%;

  label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-grey);
    display: block;
  }
}
.forn-group--skip {

}
.faq-item {
  font-weight: 600;
  font-family: inherit;

  summary {
    line-height: 120%;
    font-size: 20px;
    padding: 16px;
    color: var(--text-color);
    cursor: pointer;
    transition: color var(--delay-main);
    position: relative;
    padding-block: 28px;

    &:hover {
      color: var(--color-main);
    }
  }

  p {
    padding: 16px;
    padding-right: 68px;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
  }

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

  summary::marker {
    content: '';
  }

  summary::before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(28px / 2);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: var(--main-border);
    transition: background-color var(--delay-main);
  }

  summary::after {
    content: '';
    background-image: url('/local/templates/main/img/plus.svg');
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    right: 16px;
    top: calc(28px / 2 + 16px);
    position: absolute;
  }

  &[open] summary {
    color: var(--color-main);

    &::before {
      background-color: var(--border-color);
    }
  }
}
.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.social-list__link {

}
.contacts-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: var(--main-border);
}
.contacts-line__item {
  width: 50%;
}
.contacts-line__desc {
  color: var(--text-grey);
  margin-bottom: 12px;
}
.contacts-line__text {
  font-size: 36px;
}
.contacts-time {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contacts-time__name {
  font-size: 26px;
  line-height: 120%;
  width: 50%;
}
.contacts-time__table {
  width: 50%;
}
.contacts-time__line {
  padding-block: 16px;

  &:not(:last-child) {
    border-bottom: var(--main-border);
    border-width: 1px;
  }
}
.contacts-time__title {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-grey);
}
.contacts-time__desc {
  display: flex;
  align-items: center;
}
.contacts-time__item {
  width: 50%;
}
.form-label {
  position: relative;
  width: 100%;
  display: block;

  span {
    position: absolute;
    left: 15px;
    top: 12px;
    color: var(--text-grey);
    font-weight: 500;
    pointer-events: none;
    padding: 4px;
    background-color: transparent;
    transition-property: font-size, top, background-color;
    transition-duration: var(--delay-main);
    font-size: 16px;
    line-height: 100%;

    .is-focus & {
      background-color: #fff;
      font-size: 14px;
      top: -12px;
    }
  }

}
.modal-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
  padding-block: 20px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 4px 8px 2px #1D1D1F0F;
  transition: opacity var(--delay-main), visibility var(--delay-main);

  &.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.modal-search__line {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}
.modal-search__clear {
  display: none;

  &.is-active {
    display: block;
  }
}
.modal-search__list {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;

  .cart-offer {
    width: calc(25% - 8px);
  }
}
.phone-block {

  &:hover {
    .icon {
      transform: rotate(-90deg);
    }
  }
}
.phone-block__line {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;

  .icon {
    transition: transform var(--delay-main);
    transform: rotate(90deg);
  }
}
.phone-block__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;

  &:not(:last-child) {
    margin-bottom: 20px;
  }
}
.phone-block__title {
  font-size: 16px;
  font-weight: 500;
}
.phone-block__location {
  color: var(--text-grey);
  font-size: 14px;
  font-weight: 600;
}
.phone-block__tel {
  padding: 16px;
  display: inline-block;
}
.bonus-block {
  padding: 30px 150px;
  background-size: cover;
  font-size: 20px;
  line-height: 140%;
  border-radius: 30px;

  p {
    margin-bottom: 20px;
  }

  ul {
    background-color: #000000b5;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    list-style: none;
    padding: 20px;
    font-weight: 400;
    border-radius: 30px;

    strong {
      color: var(--color-yellow);
    }

    li:not(:last-child) {
      margin-bottom: 15px;
    }
  }
}
.catalog-action {
  padding: 100px;
  background: var(--main-bg);
  border-radius: 30px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;

  &::before,
  &::after {
    position: absolute;
    top: 50%;
    content: '';
    height: 21vw;
    width: 16vw;
    background-repeat: no-repeat;
    margin-top: calc(-21vw / 2);
    background-size: cover;
  }

  &::before {
    background-image: url('/local/templates/main/img/ff1.webp');
    left: 0;
  }

  &::after {
    background-image: url('/local/templates/main/img/ff2.webp');
    right: 0;
  }
}
.catalog-action__text {
  font-size: 40px;
  width: 600px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
}
/*------------PLUGINS STYLES---------------*/
.splide__container {
  box-sizing: border-box;
  position: relative
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto
}
.splide:not(.is-overflow) .splide__pagination {
  display: none
}
.splide__progress__bar {
  width: 0
}
.splide {
  position: relative;
  visibility: hidden
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative
}
.splide__slide img {
  vertical-align: bottom;
  max-width: 100%;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0
}
@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none
}
.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0
}
.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1
}
.splide--rtl {
  direction: rtl
}
.splide__track--ttb>.splide__list {
  display: block
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__progress__bar {
  background: #ccc;
  height: 3px
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
.splide__slide:focus {
  outline: 0
}
@supports(outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
@supports(outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
.splide__toggle {
  cursor: pointer
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000
}
.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0
}
.toasti {
  position: fixed;
  right: 0;
  left: 0;
  width: auto;
  min-width: 300px;
  max-width: 550px;
  margin: 0 auto;
  padding: 15px;
  font-family: var(--font-base);
  font-weight: 500;
  color: #fff;
  background-color: #323232;
  box-sizing: border-box;
  will-change: transform, opacity;
  font-size: 16px;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  border-radius: 10px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toasti.success {
  background-color: var(--color-green);
}
.toasti.alert {
  background-color: var(--color-main);
}
.toasti.info {
  background-color: var(--color-green);
}
.toasti--bottom-right {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}
.toasti--bottom-center {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}
.toasti--bottom-left {
  bottom: 0;
  transform: translate3d(0, calc(100% + 20px), 0);
}
.toasti--top-right {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti--top-center {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti--top-left {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti.toasti-enter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@font-face {
  font-family: 'lg';
  src: url("/local/templates/main/fonts/lg.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'lg' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
  background-color: transparent;
}
.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  animation: lg-left-end 0.3s;
  position: relative;
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  background: none;
  border: none;
  box-shadow: none;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}
.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}
.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}
.lg-hide-items .lg-prev {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toggle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toggle-thumb:hover {
  color: #FFF;
}
.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}
.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}
.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transform-origin: 0 0;
  backface-visibility: hidden;
}
#lg-zoom-in:after {
  content: "\e311";
}
#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}
#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}
.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}
.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}
.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  transition-delay: 0s;
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}
.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 5px, 0);
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}
.lg-outer .lg-dropdown>li:last-child {
  margin-bottom: 0px;
}
.lg-outer .lg-dropdown>li:hover a,
.lg-outer .lg-dropdown>li:hover .lg-icon {
  color: #333;
}
.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}
.lg-outer #lg-share {
  position: relative;
}
.lg-outer #lg-share:after {
  content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e904";
}
.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e907";
}
.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e905";
}
.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e906";
}
.lg-outer .lg-img-rotate {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.lg-rotate-left:after {
  content: "\e900";
}
.lg-rotate-right:after {
  content: "\e901";
}
.lg-icon.lg-flip-hor,
.lg-icon.lg-flip-ver {
  font-size: 26px;
}
.lg-flip-hor:after {
  content: "\e902";
}
.lg-flip-ver:after {
  content: "\e903";
}
.lg-group {
  *zoom: 1;
}
.lg-group:before,
.lg-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.lg-group:after {
  clear: both;
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  outline: none;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  transition-duration: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url("/local/templates/main/img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
body {
  box-sizing: border-box;
}
body.gmodal-open {
  padding-right: 0 !important;
}
.gmodal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.3);
}
.gmodal-backdrop.has-animate {
  transition: opacity 0.15s linear;
  will-change: opacity;
  opacity: 0;
}
.gmodal-backdrop.has-animate.is-shown {
  opacity: 1;
}
.gmodal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.gmodal *,
.gmodal *::before,
.gmodal *::after {
  box-sizing: border-box;
}
.gmodal.has-animate .gmodal__container {
  will-change: transform, opacity;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.15s linear;
  transform: scale(0.97);
}
.gmodal.has-animate.is-shown .gmodal__container {
  opacity: 1;
  transform: none;
}
.gmodal.is-hidden {
  z-index: -1 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.gmodal__dialog {
  position: absolute;
  min-height: 100vh;
  width: 100%;
  padding: 40px;
  opacity: 1;
  transition: transform var(--delay-main);
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gmodal__header,
.gmodal__body,
.gmodal__footer {
  position: relative;
}
.gmodal__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.gmodal__footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.gmodal__title {
  font-size: 26px;
  font-weight: 600;
  font-family: inherit;
  line-height: 140%;
}
.gmodal__close {
  margin-left: auto;
  padding: 14px;

  svg {
    fill: var(--text-color);
  }
}
.modal-drag-area {
  width: 100%;
  height: 30px;
  cursor: grab;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-drag-area::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--border-color);
  border-radius: 1px;
}
.tipster {
  position: absolute;
  padding: .7rem 1rem;
  max-width: 320px;
  font-size: .8em;
  font-family: inherit;
  text-align: left;
  letter-spacing: 0.03rem;
  color: #fff;
  background: #2a2a2a;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .15s linear;
  box-sizing: border-box;
  z-index: 999;
  pointer-events: none;
}
.tipster.is-show {
  opacity: 1;
}
.tipster__arrow {
  position: absolute;
  left: 0;
  right: auto;
  width: 14px;
  height: 14px;
  z-index: -1;
}
.tipster[data-placement="top"] .tipster__arrow {
  bottom: 0;
}
.tipster[data-placement="bottom"] .tipster__arrow {
  top: 0;
}
.tipster[data-placement="top"] .tipster__arrow::before {
  bottom: -6px;
  border-top-color: #2a2a2a;
  border-width: 7px 7px 0;
}
.tipster[data-placement="bottom"] .tipster__arrow::before {
  top: -6px;
  border-bottom-color: #2a2a2a;
  border-width: 0 7px 7px;
}
.tipster__arrow::before {
  content: '';
  position: absolute;
  left: 0;
  border: solid transparent;
}
.tipster {
  background-color: #fff;
  color: var(--text-color);
  font-weight: 500;
  border-radius: 12px;
  font-size: 16px;
  letter-spacing: unset;
  box-shadow: 0px 4px 30px 0px rgba(8, 76, 149, 0.1);

  p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  ul {
    margin-left: 17px;
    font-size: 14px;
  }
}
.tipster__arrow {
  display: none;
}
@media (width > 400px) {
  .radio-item {
    height: 200px;

    &:not(:has(input:checked)):hover {
      transform: scale(1.03);
    }
  }
}
@media (min-width: 480px) {
  .gmodal__container {
    position: relative;
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 60px);
    margin: 30px auto;
    padding-right: 15px;
    padding-left: 15px;

    &::before {
      content: "";
      display: block;
      height: calc(100vh - 60px);
    }
  }

  .gmodal__container--lg {
    max-width: 940px;
  }
  .gmodal__dialog {
    position: relative;
    min-height: auto;
  }
}
@media (min-width: 550px) {
  .toasti {
    border-radius: 3px;
  }

  .toasti--bottom-right {
    left: auto;
    right: 20px;
    bottom: 20px;
    transform: translate3d(0, calc(100% + 20px), 0);
  }

  .toasti--bottom-center {
    right: auto;
    left: 50%;
    bottom: 20px;
    transform: translate3d(-50%, 100%, 0);
  }

  .toasti--bottom-left {
    right: auto;
    left: 20px;
    bottom: 20px;
  }

  .toasti--top-right {
    left: auto;
    right: 20px;
    top: 20px;
    transform: translate3d(0, calc(-100% - 20px), 0);
  }

  .toasti--top-center {
    right: auto;
    left: 50%;
    top: 20px;
    transform: translate3d(-50%, -100%, 0);
  }

  .toasti--top-left {
    right: auto;
    left: 20px;
    top: 20px;
    transform: translate3d(0, calc(-100% - 20px), 0);
  }

  .toasti.toasti-enter {
    transform: translate3d(-5%, 0, 0);
  }
}
@media (600px < width < 900px) {
.footer__blocks--contacts {
    .footer__item {
      width: calc(50% - 20px);
    }
  }
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    transition: border-color 0.25s ease;
  }
}
@media (max-width: 1600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (width <= 1600px) {
  .breadcrumbs {
    padding: 0;
  }
}
@media (max-width: 1500px) {
  .catalog-drop__more {
    flex-wrap: wrap;
  }
  .offer-popup {
    width: auto;
    top: auto;
    pointer-events: all;
    position: fixed;
    left: 50%;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(100px);
    bottom: -100%;
    transition: transform var(--delay-main), visibility var(--delay-main);

    .show-popup & {
      bottom: 80px;
      transform: translateX(-50%);
    }
  }

  .offer-popup__name {
    padding-top: 23px;
  }

  .popup-drag-area {
    visibility: visible;
  }
}
@media (max-width: 1480px) {
  .header__middle {
    gap: 20px;
  }
}
@media (max-width: 1460px) {
  .catalog-block__list {
    --col-count: 5;
  }
}
@media (max-width: 1420px) {
  .catalog-drop__item {
    padding-left: 0;
  }
  .catalog-drop__sections {
    gap: 20px;
    padding-right: 0;

  }
}
@media (max-width: 1350px) {
  .product-detail__carusel {
    width: 100%;
    padding-inline: 45px;
  }
}
@media (max-width: 1320px) {
  .header__phone {
    display: none;
  }
}
@media (max-width: 1300px) {
  .cart-section {
    gap: 20px;
  }

  .cart-section__left {
    width: calc(100% - 20px - 300px);
  }
  .order-sidebar {
    width: 300px;
  }
}
@media (max-width: 1240px) {
  .catalog-block__list {
    --col-count: 4;
  }
}
@media (max-width: 1200px) {
  .header__social {
    display: none;
  }
  .header__fixed {
    top: 67px;
  }
  .product-props__wrap {
    flex-direction: column;
  }

  .product-props__tabs {
    width: 100%;
  }

  .product-props__desc {
    width: 100%;
    padding-top: 0;
  }

  .tabs__controls {
    width: 100%;
  }
}
@media (width <= 1200px) {
  .modal-search__list .cart-offer {
    width: calc(33.3333% - 8px);
  }
}
@media (max-width: 1110px) {
  .header-menu {
    gap: 15px;
  }
}
@media (max-width: 1050px) {
  .btn {
    padding: 14px;
  }
  .btn--icon {
    gap: 8px;
  }
  .catalog-menu__link {
    padding: 8px;
  }
}
@media (max-width: 1024px) {
  .fast-service__item {
    min-height: 482px;
    padding: 20px;
  }

  .fast-service__text {
    font-size: 20px;
  }
  .product-detail {
    flex-direction: column;

    h1 {
      display: block;
      margin-bottom: 0;
      font-size: 28px;
    }
  }

  .product-detail__gallery {
    width: 100%;
  }

  .product-detail__detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;

    h2 {
      display: none;
    }
  }

  .product-detail__moneys {
    margin-bottom: 0;
  }
  .product-more-info {
    .slider-controls {
      bottom: 0;
    }
  }
  .blog-page__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-page__date {
    margin-top: 40px;
  }
}
@media (width < 1024px) {
  body {
    padding-top: 40px;
  }
  body:has(.product-detail) {
    padding-top: 0;
  }
  .header__top {
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: -1;
    bottom: -100%;
    transition: bottom var(--delay-main);
  }
  .show-header-menu .header__top {
    bottom: 80px;
    z-index: 1;
  }
  .header__top .location {
    display: none;
  }

  .header__fixed {
    top: 0;
  }

  .header__logo {
    img {
      width: 126px;
    }
  }

  .header__last {
    display: none;
  }

  .header__middle {
    padding: 8px 0;

  .location {
      display: block;
    }
  }
  .catalog-block__controls {
    flex-wrap: wrap;

    .catalog-block__sort {
      width: 100%;
    }
  }

  .catalog-block__filter-btn {
    display: flex;
    z-index: 1;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .content-page {
    h1, title {
      margin-top: 40px;
    }
    .section-list {
      .swap-line {
        display: flex;
      }
    }
  }
  .header-menu {
    gap: 0;
  }

  .header-menu__link {
    color: var(--text-color);
    padding-block: 16px;
    font-size: 16px;
  }

  .header-menu {
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    width: calc(100% - 20px);
    left: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px #084C951A;
    padding: 16px;
  }
  .catalog-filter {
    display: none;
  }
  .gmodal__body .catalog-filter {
    display: flex;
  }
  .catalog-filter__item {
      width: 100%;
  }
  .product-content {
    margin-block: 40px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    .cart-offer {
      width: 300px;
    }
  }
  .advantages {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 40px;
  }

  .advantages__item {
    width: 350px;
    flex: 1 0 auto;
    min-width: 180px;
    max-width: 100%;
  }

  .advantages__name {
    font-size: 20px;
  }
}
@media (width <= 1024px) {
  .catalog-menu {
    position: fixed;
    bottom: -100%;
    flex-direction: column;
    width: calc(100% - 20px);
    left: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px #084C951A;
    background: #fff;
    align-items: flex-start;
    transform: translateY(80px);
    z-index: -1;
    padding: 16px;
    pointer-events: none;
    transition: transform var(--delay-main), bottom var(--delay-main);
  }
  .show-catalog-menu .catalog-menu {
    bottom: 80px;
    z-index: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .catalog-menu__img {
    display: block;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .catalog-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
  }
  .catalog-menu__link--icons {
    svg {
      display: none;
    }
  }
  .catalog-menu__link--drop {

    &::after {
      content: '';
      background-image: url('/local/templates/main/img/ch_r.svg');
      display: block;
      width: 16px;
      height: 16px;
      margin-left: auto;
    }
  }
  .catalog-drop__close {
    display: flex;
    position: sticky;
    top: 0;
  }
  .catalog-drop__left {
    flex-direction: row;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;

    svg {
      transform: scale(-1);
    }
  }
  .catalog-drop__right {
    width: 100%;
    height: 132px;

    .slider-header__title {
      font-size: 16px;
    }
    .slider-header__arrows {
      display: block;
    }
    .slider-header__arrow {
      padding: 12px;
    }
    .slider-header {
      margin-bottom: 8px;
    }
    .product-item {
      padding: 8px;
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .product-item__gallery {
      flex-shrink: 0;
      margin-bottom: 0;
    }
    .product-item__dots {
      display: none;
    }
    .product-item__img {
      width: 60px;
      height: 60px;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .product-item__btn {
      display: none;
    }
    .product-item__name {
      margin-bottom: 0;
      color: var(--text-grey);
      font-size: 14px;
    }
    .product-prices {
      margin-bottom: 0;
    }
    .product-item__info {
      display: flex;
      flex-direction: column;
    }
    .product-prices__sale {
      display: none;
    }
    .product-prices__old-price {
      display: none;
    }
  }

  .catalog-drop__more {
    display: none;
  }

  .catalog-drop__sections {
    flex-direction: column;
    display: flex;
    gap: 0;

    .catalog-section {
      background-color: transparent;
      display: flex;
      align-items: center;
      padding-inline: 0;
      padding-block: 10px;
      gap: 12px;

      &:hover {
        transform: unset;
      }
    }
    .catalog-section__top {
      order: 2;
      margin-bottom: 0;
    }
    .catalog-section__img {
      margin: 0;
      order: 1;
      width: 60px;
      height: 60px;
      -o-object-fit: contain;
         object-fit: contain;
    }
    .catalog-section--more {
      border: 0;
      align-items: center;
      flex-direction: row;
      justify-content: space-between;

      .catalog-section__count {
        font-size: 16px;
      }

      .catalog-section__top {
        order: 1;
      }
      .catalog-section__bottom {
        order: 2;
        padding: 0;

        svg {
          display: none;
        }
      }
    }
  }

  .catalog-drop__item {
    flex-direction: column;
    gap: 0;
  }

  .catalog-drop {
    bottom: -100%;
    padding: 16px;
    position: fixed;
    z-index: 2;
    height: unset;
    visibility: unset;
    opacity: unset;
    left: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px #084C951A;
    width: calc(100% - 20px);
    transition: bottom var(--delay-main);

    &.is-active {
      bottom: 80px;
      height: auto;
    }

    .container {
      padding-left: 0;
      padding-right: 0;
      min-width: auto;
    }
  }
  .mobil-navbar {
    display: flex;
  }
}
@media (max-width: 1023px) {
  .cart-section__left {
    width: 100%;
  }

  .cart-section {
    flex-wrap: wrap;
  }

  .cart-section__offers {
    padding-left: 0;
  }

  .cart-section__offers-list {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;

    &::-webkit-scrollbar {
      display: none;
    }

    .cart-offer {
      width: 240px;
    }
  }

  .cart-section__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-section__name {
    font-size: 16px;
    font-weight: 500;
  }
  .order-sidebar {
    width: 100%;
  }
  .order-form__line--flex {
    flex-direction: column;
    gap: 20px;
  }

  .order-form__line--radio {
    gap: 20px;
    flex-wrap: wrap;

    .radio-item {
      width: calc(50% - 10px);
    }
  }
}
@media (max-width: 980px) {
  .catalog-block__list {
    --col-count: 3;
  }
}
@media (width <= 980px) {
  .bonus-block {
    padding: 20px;
  }
  .catalog-action__text {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (width <=980px) {
  .bonus-block {
    font-size: 18px;
  }
}
@media (width <= 900px) {
  .swap-line--wrap {
    flex-wrap: nowrap;

    .catalog-section {
      flex: 1 0 0%;
    }
  }
  .contacts-line {
    flex-direction: column;
  }
  .contacts-line__item {
    width: 100%;
  }
  .contacts-line__text {
    font-size: 28px;
  }
  .contacts-time {
    flex-direction: column;
  }

  .contacts-time__name,
  .contacts-time__table {
    width: 100%;
  }
}
@media (width <= 800px) {
  .modal-search__list {
    overflow-y: auto;
    height: 550px;
  }
  .modal-search__list .cart-offer {
    width: calc(50% - 8px);
  }
}
@media (width <=770px) {
  .slider-controls {
    bottom: 10px;
  }
}
@media (width <= 769px) {
  .main-banner {
    .slider-controls__arrow {
      display: none;
    }
  }

  .main-banner__content {
    background: #ffffffe3;
    padding: 10px;
    border-radius: 15px;

    .btn {
      background-color: var(--color-main);
      color: #fff;
      font-weight: 500;
    }
  }

  .main-banner__img {
    height: 330px;
  }

  .main-banner__title {
    font-size: 20px;
  }

  .main-banner__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .catalog-block__list {
    --col-count: 2;
  }
  .fast-service {
    flex-direction: column;
  }
  .fast-service__item {
    min-height: 350px;
  }
  .blog-page__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (width < 768px) {
  .mb {
    margin-bottom: 80px;
  }
  .mt {
    margin-top: 80px;
  }
  .lmb {
    margin-bottom: 40px;
  }
  .lmt {
    margin-top: 40px;
  }
  .column-form__large-text {
    font-size: 28px;
    margin-block: 20px;
  }
  .advantages--dual .advantages__item {
    height: 350px;
    width: 350px;
  }
}
@media (width <= 768px) {
  .slider-header__arrows {
    display: none;
  }
  .product-prices__price {
    font-size: 16px;
  }
  .gmodal__dialog {
    transform: translateY(100px);
    padding: 20px;
    padding-top: 40px;
  }

  .gmodal.is-shown .gmodal__dialog {
    transform: translateY(0);
  }

  .gmodal__container {
    align-items: flex-end;
    max-width: 350px;
  }
  .gmodal__close {
    display: none;
  }

  .gmodal__header {
    margin-bottom: 12px;
  }
}
@media (width <=768px) {
  .location-block__list {
    padding-top: 20px;
    -moz-columns: unset;
         columns: unset;
    -moz-column-gap: unset;
         column-gap: unset;
    height: 400px;
    overflow-y: auto;
  }

  .location-block__city {
    margin-bottom: 20px;
  }

  .location-block__search {
    margin-bottom: 4px;
  }
}
@media (max-width: 700px) {
  .product-detail__money {
    width: 100%;
    flex: auto;
  }

  .product-detail__arrows {
    display: none;
  }

  .product-detail__carusel {
    display: none;
  }
  .product-detail-image {
    padding-bottom: 60px;
  }
  .product-detail-image .slider-controls {
    display: flex;
    bottom: 0;

    .slider-controls__arrow {
      display: none;
    }
  }
}
@media (width <= 600px) {
  .footer__item {
    width: 100%;
  }
  .footer-menu__control {
    margin-bottom: 0;
    padding: 16px 0;

    svg {
      display: block;
      fill: var(--text-color);
      transform: rotate(90deg);
      transition: transform var(--delay-main);
    }
  }

  .footer-menu__list {
    display: none;
  }

  .footer-menu {
    border-bottom: 1px solid var(--border-color);
  }

  .footer-menu.is-active {
    svg {
      transform: rotate(270deg);
    }

    .footer-menu__list {
      margin-top: 12px;
      padding-left: 16px;
      display: flex;
      padding-bottom: 16px;
    }
  }
  .footer-social__link {
    width: calc(50% - 8px);
  }
  .footer-social__list {
    flex-direction: row;
  }
}
@media (width <=600px) {
  .catalog-action {
    padding: 20px;

    &::before,
    &::after {
      display: none;
    }
  }

  .catalog-action__text {
    width: 100%;
  }
}
@media (width <= 560px) {
  .modal-search__list .cart-offer {
    width: 100%;
  }
}
@media (width <= 500px) {
  .product-prices__sale {
    display: none;
  }
  .offer-popup {
    width: 98%;
  }
}
@media (max-width: 430px) {
  .product-detail__img {
    height: 320px;
    margin-bottom: 20px;
  }
}
@media (width <= 400px) {
  .order-form__line--radio {
    gap: 20px;
    flex-wrap: wrap;

    .radio-item {
      width: 100%;
    }
  }
}
@media (max-width: 390px) {
  .catalog-block__list {
    --col-count: 1;
  }
}
@media (width < 390px) {
  .contacts-line__text {
    font-size: 24px;
  }
  .contacts-time__desc {
    flex-direction: column;
    gap: 20px;
  }
  .contacts-time__item {
    width: 100%;
  }
}
@media (width <= 350px) {
  .footer-social__link {
    width: 100%;
  }
}
@media (width <= 340px) {
  .cart-section__head {
    flex-direction: column;
    text-align: center;
  }
  .cart-section__bottom {
    align-items: center;
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf
  }
}

