@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
.tabs-section {
  padding: var(--default-padding) 0;
}
.tabs-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--default-gap);
}
.tabs-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.3284vw, 4.5rem);
  border-radius: clamp(16px, 1.4793vw, 2rem);
  background: var(--bg-d);
  padding: clamp(20px, 2.8107vw, 3.8rem) clamp(16px, 3.5503vw, 4.8rem) clamp(16px, 3.5503vw, 4.8rem);
}
.tabs-section__nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 min(1.9231vw, 2.6rem) clamp(16px, 1.6272vw, 2.2rem);
  position: relative;
  z-index: 1;
}
.tabs-section__nav-list::before {
  content: "";
  width: 100%;
  z-index: 1;
  height: 0.1rem;
  position: absolute;
  pointer-events: none;
  background: rgba(33, 35, 36, 0.1);
  bottom: 0;
  left: 0;
}
.tabs-section__nav-list .tabs-section__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.tabs-section__nav-list::-webkit-scrollbar {
  display: none;
}
.tabs-section__wrapper {
  gap: 2.4rem;
  grid-template-columns: clamp(300px, 29.5858vw, 40rem) 1fr;
  align-items: center;
}
.tabs-section__wrapper.active {
  display: grid;
}
.tabs-section__wrapper .editor {
  gap: clamp(16px, 1.4793vw, 2rem);
}
.tabs-section__wrapper .editor .main-button {
  margin-top: 1.2rem;
}
.tabs-section__image {
  display: flex;
  justify-self: end;
  width: clamp(350px, 45.2663vw, 61.2rem);
  height: clamp(176px, 24.3343vw, 32.9rem);
  border-radius: clamp(7px, 0.8876vw, 1.2rem);
  border: 0.1rem solid rgba(73, 73, 73, 0.06);
  background: var(--bg-q);
  box-shadow: 0 0.4rem 1.09rem 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.tabs-section__image img, .tabs-section__image picture, .tabs-section__image svg, .tabs-section__image .sprite {
  width: 100%;
  height: auto;
}
.tabs-section__btn {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  color: rgba(33, 35, 36, 0.3);
  text-align: center;
  font-family: var(--font-family);
  font-size: clamp(15px, 1.1834vw, 1.6rem);
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: clamp(-0.09rem, -0.071vw, -0.096rem);
  position: relative;
  padding: 0 0.5rem;
  height: 100%;
}
.tabs-section__btn::before {
  content: "";
  height: 0.4rem;
  background: #8c8c8c;
  top: calc(100% + clamp(16px, 1.6272vw, 2.2rem));
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -100%);
  width: 100%;
  opacity: 0;
}
.tabs-section__btn-icon {
  display: flex;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
}
.tabs-section__btn-icon .sprite {
  width: 100%;
  height: auto;
}
.tabs-section__btn-icon svg,
.tabs-section__btn-icon img, .tabs-section__btn-icon .sprite {
  width: 100%;
  height: auto;
}
.tabs-section__btn span {
  max-width: 15.7rem;
}
.tabs-section__btn.active {
  color: var(--cl-b);
}
.tabs-section__btn.active .tabs-section__btn-icon {
  opacity: 1;
}
.tabs-section__btn.active::before {
  opacity: 1;
}
@media (min-width: 1024px){
  .tabs-section__nav {
    display: contents;
  }
}
@media (max-width: 1239.98px) and (min-width: 1024px){
  .tabs-section__nav-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1023.98px){
  .tabs-section__nav-list::before {
    content: none;
  }
  .tabs-section__nav-list .tabs-section__item {
    scroll-snap-align: start;
  }
  .tabs-section__nav-list {
    overflow-x: scroll;
    width: calc(100% + clamp(16px, 3.5503vw, 4.8rem) * 2);
    margin-left: calc(clamp(16px, 3.5503vw, 4.8rem) * -1);
    gap: 3.4rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding: clamp(16px, 3.5503vw, 4.8rem);
    padding: 0 clamp(16px, 3.5503vw, 4.8rem) clamp(16px, 1.6272vw, 2.2rem);
  }
  .tabs-section__nav-list .tabs-section__item {
    min-width: 95px;
  }
  .tabs-section__nav {
    position: relative;
    z-index: 1;
  }
  .tabs-section__nav::before {
    content: "";
    width: 100%;
    z-index: 1;
    height: 0.1rem;
    position: absolute;
    pointer-events: none;
    background: rgba(33, 35, 36, 0.1);
    bottom: 0;
    left: 0;
  }
  .tabs-section__btn-icon {
    opacity: 0.3;
  }
}
@media (max-width: 767.98px){
  .tabs-section__wrapper {
    grid-template-columns: 100%;
  }
  .tabs-section__image {
    order: -1;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    height: clamp(176px, 42.84vw, 32.9rem);
  }
}
@media (max-width: 575.98px){
  .tabs-section__image {
    box-shadow: 0 2.15px 5.86px 0 rgba(0, 0, 0, 0.04);
  }
}
/*# sourceMappingURL=section-tabs.css.map */