@charset "UTF-8";

body.lock {
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.scrollbar-none {
  -ms-overflow-style: none; /* IE и Edge */
  scrollbar-width: none; /* Firefox */
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  background: transparent;
}

[data-tab] {
  display: none;
}
[data-tab].active {
  display: block;
}

:root {
  --font-family: "kinetika_regular", sans-serif;
  --second-family: "Play_Regular", sans-serif;
  --third-family: "sf_pro_text_bold", sans-serif;
  --font3: "sf_compact_display_regular", sans-serif;
  --font4: "sf_pro_display_regular", sans-serif;
  --font5: "mulish_regular", sans-serif;
}

._font_family {
  font-family: var(--font-family);
}
._font_second {
  font-family: var(--second-family);
}
._font_third {
  font-family: var(--third-family);
}
._font_3 {
  font-family: var(--font3);
}
._font_4 {
  font-family: var(--font4);
}
._font_5 {
  font-family: var(--font5);
}

body {
  background-color: #f6f6f6;
}

html._overflowHidden,
body._overflowHidden {
  overflow: hidden;
}

.collapse:not(.collapse_show) {
  display: none;
}

.main .container {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

._circle {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._flex_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

._flex_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._flex_col_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._flex_col_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._flex_al_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._flex_sb_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._flex_sb_stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

._flex_start_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._flex_sb_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._black_btn {
  background-color: #000000;
  border: 1px solid transparent;
  width: 100%;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
._black_btn:hover {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}

img {
  width: 100%;
  height: 100%;
}

label,
button {
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 0;
}

body:hover .swiper-button-next, body:hover .swiper-button-prev {
  opacity: 0.7;
}

._text_up {
  text-transform: uppercase;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

._pb_24 {
  padding-bottom: 24px;
}

._pb_12 {
  padding-bottom: 12px;
}

._p_32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

._p_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

._pb_40 {
  padding-bottom: 40px;
}

p,
h2,
h3,
h4,
span,
label,
button,
time,
a {
  font-family: var(--font-family);
  line-height: 140%;
}

._p_abs {
  position: absolute;
}

._p_rel {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .main .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768) {
  h2 {
    font-size: 22px !important;
  }
}
@media screen and (max-width: 600) {
  ._black_btn {
    max-width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media (max-width: 568px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media (max-width: 568px) {
  .tablet {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .mobile {
    display: none;
  }
}
@media (max-width: 568px) {
  .mobile {
    display: block;
  }
}

.pc-tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 568px) {
  .pc-tablet {
    display: none;
  }
}

.tablet-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .tablet-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

._flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

._flex_col {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

._flex_col_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_col_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_col_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

._flex_col_sb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

._flex_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

._flex_al_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_sb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

._flex_sb_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_sb_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_sb_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

._flex_sb_stretch {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
}

._flex_al_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_al_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

._flex_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

._flex_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

._flex_stretch {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
}

._flex_stretch_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

._flex_stretch_sb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

._wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._flex_row_reverse {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

._flex_col_reverse {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
}

._flex_center_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

._flex_center_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_center_sb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_end_sb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_center_sa {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_start_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_end_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_sa {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

._flex_sa_center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

._flex_sa_end {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

._flex_sa_start {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

._wrap_reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

._wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

._flex_grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

._flex_shrink {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

._flex_basis_auto {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

._flex_basis_0 {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 2px;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs__item:not(:last-child):after {
  content: "/";
  margin-left: 2px;
  color: #8e8e8e;
}

.breadcrumbs__link {
  color: #8e8e8e;
  font-size: 12px;
  font-family: var(--font-family);
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs__link {
    font-size: 10px;
  }
}
.card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}

.slider__wrap {
  --swiper-size: 660px;
  max-width: 867px;
  width: 100%;
  max-height: var(--swiper-size);
  min-height: var(--swiper-size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  overflow: hidden;
  position: sticky;
  top: 0;
}
.slider__wrap ._side-slider {
  max-width: 77px;
  width: 100%;
  max-height: var(--swiper-size);
  min-height: var(--swiper-size);
}
.slider__wrap ._side-slider .swiper-slide.swiper-slide-active .side__slider_wrap {
  border-bottom: 1px solid #000000;
}
.slider__wrap ._side-slider .side__slider_wrap {
  cursor: pointer;
  width: 100%;
  max-height: 112px;
  min-height: 112px;
  height: 100%;
}
.slider__wrap ._side-slider .side__slider_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  padding-bottom: 2px;
}
.slider__wrap ._main-slider {
  max-height: var(--swiper-size);
  min-height: var(--swiper-size);
}
.slider__wrap ._main-slider .main__slider_wrap {
  position: relative;
}
.slider__wrap ._main-slider .main__slider_wrap:hover {
  cursor: none;
}
.slider__wrap ._main-slider .main__slider_wrap:hover img {
  cursor: none;
}
.slider__wrap ._main-slider .main__slider_wrap:hover .main__showModal_btn {
  opacity: 1;
  pointer-events: all;
}
.slider__wrap ._main-slider .main__slider_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: var(--swiper-size);
  min-height: var(--swiper-size);
}
.slider__wrap ._main-slider ._main_swipper_btns {
  --width: 60px;
  --height: 100%;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
  top: 0;
}
.slider__wrap ._main-slider ._main_swipper_btns.main-swiper-button-next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider__wrap ._main-slider ._main_swipper_btns svg {
  --width: 13px;
  --height: 24px;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
}
.slider__wrap ._main-slider ._main_swipper_btns svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slider__wrap ._main-slider ._main_swipper_btns::after {
  display: none;
}
.slider__wrap ._main-slider ._main_swipper_btns:hover svg path {
  stroke: #000000;
}
.slider__wrap ._main-slider ._main_swipper_btns:active svg path {
  opacity: 0.8;
}

.main__showModal_btn {
  --size: 34px;
  min-width: var(--size);
  max-width: var(--size);
  width: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  height: var(--size);
  position: absolute;
  padding: 9px;
  background-color: #ffffff;
  top: 153px;
  right: 146px;
  opacity: 0;
  cursor: none;
  pointer-events: none;
}
.main__showModal_btn span {
  --proc: 50%;
  --proc-neg: -50%;
  --br: 2px;
  --width: 12px;
  --height: 2px;
  position: absolute;
  top: var(--proc);
  left: var(--proc);
  -webkit-transform: translate(var(--proc-neg), var(--proc-neg));
      -ms-transform: translate(var(--proc-neg), var(--proc-neg));
          transform: translate(var(--proc-neg), var(--proc-neg));
  width: var(--width);
  height: var(--height);
  background-color: #000000;
  border-radius: var(--br);
}
.main__showModal_btn span::before {
  content: "";
  position: absolute;
  top: var(--proc);
  left: var(--proc);
  -webkit-transform: translate(var(--proc-neg), var(--proc-neg)) rotate(90deg);
      -ms-transform: translate(var(--proc-neg), var(--proc-neg)) rotate(90deg);
          transform: translate(var(--proc-neg), var(--proc-neg)) rotate(90deg);
  width: var(--width);
  height: var(--height);
  background-color: inherit;
  border-radius: var(--br);
}
.main__showModal_btn:active {
  -webkit-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slider__wrap {
    gap: 30px;
    position: static;
    top: unset;
  }
}
@media screen and (max-width: 900px) {
  .main__showModal_btn {
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .card__options_wrap {
    width: 100%;
  }
  .card__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .slider__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
    min-height: 100%;
    gap: 0;
  }
  .slider__wrap ._side-slider {
    padding-top: 15px;
    max-width: 100%;
    max-height: 70px;
    min-height: 70px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .slider__wrap ._side-slider .side__slider_wrap {
    max-height: 50px;
    min-height: 50px;
    min-width: 34px;
    max-width: 34px;
  }
  .slider__wrap ._main-slider {
    max-height: 536px;
    min-height: 100%;
    max-width: 100%;
  }
  .slider__wrap ._main-slider .main__slider_wrap img {
    max-height: 536px;
    min-height: 100%;
  }
  .main__showModal_btn {
    display: none;
  }
  .slider__wrap ._main-slider ._main_swipper_btns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    --width: 30px;
  }
}
.card__options_wrap {
  gap: 28px;
}

.card__option_item {
  gap: 12px;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
.card__option_item p {
  font-family: var(--font-family);
  line-height: 140%;
  font-size: 14px;
}
.card__option_item h3 {
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  font-family: var(--font-family);
}
.card__option_item._item_title span {
  padding: 3px 5px;
  background-color: #0fba7d;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-family);
  text-transform: uppercase;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.card__option_item._item_price_details .card__pricing {
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card__option_item._item_price_details .prev_price {
  padding-left: 12px;
  text-decoration: line-through;
  opacity: 0.4;
}
.card__option_item._item_price_details .card__bonus {
  gap: 8px;
  position: relative;
}
.card__option_item._item_price_details .card__bonus svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}
.card__option_item._item_price_details .card__bonus_description_btn svg g path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_price_details .card__bonus_description_btn:hover svg g path {
  stroke: #000000;
}
.card__option_item._item_price_details .rassrochka__btn {
  padding: 9px 11px;
  background-color: #eeeeee;
  gap: 4px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.card__option_item._item_price_details .rassrochka__btn span {
  font-size: 14px;
  color: #000000;
  font-family: var(--font-family);
}
.card__option_item._item_price_details .rassrochka__btn svg {
  width: var(--svg-size);
  height: var(--svg-size);
  min-width: var(--svg-size);
  min-height: var(--svg-size);
  max-width: var(--svg-size);
  max-height: var(--svg-size);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_price_details .rassrochka__btn:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.card__option_item._item_size .card__size {
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.card__option_item._item_size .card__choose_size_btn {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
  gap: 8px;
  color: #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_size .card__choose_size_btn svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}
.card__option_item._item_size .card__choose_size_btn:hover {
  color: #8e8e8e;
}
.card__option_item._item_size .card__choose_size_btn:hover svg path {
  stroke: #8e8e8e;
}
.card__option_item._item_size .card__size_list {
  gap: 12px;
}
.card__option_item._item_size .card__size_list .card__size_item .card__size_btn {
  --width: 45px;
  --height: 35px;
  padding: 3px 2px;
  max-width: var(--width);
  width: var(--width);
  min-width: var(--width);
  max-height: var(--height);
  height: var(--height);
  min-height: var(--height);
  border: 1px solid #d9d9d9;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_size .card__size_list .card__size_item .card__size_btn span {
  color: #000000;
  font-family: var(--font-family);
  font-size: 16px;
}
.card__option_item._item_size .card__size_list .card__size_item._active button,.card__option_item._item_size .card__size_list .card__size_item:hover button{
    border-color: #000000;
}
.card__option_item._item_size .card__size_list .card__size_item .card__size_btn._active, .card__option_item._item_size .card__size_list .card__size_item .card__size_btn:hover {
  border-color: #000000;
}
.card__option_item._item_size .card__size_list .card__size_item._stock_out button {
  background-color: #eeeeee;
}
.card__option_item._item_size .card__size_list .card__size_item._stock_out button span {
  color: #d9d9d9;
}
.card__option_item._item_size .card__card_count {
  font-size: 14px;
  line-height: 140%;
  font-family: var(--font-family);
  color: #f8975f;
}
.card__option_item._item_addCart .card__cart_btn_wrap {
  gap: 6px;
}
.card__option_item._item_addCart .card__cart_btn_wrap button {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_addCart .card__cart_btn_wrap ._min {
  min-height: 45px;
  padding: 12px;
}
.card__option_item._item_addCart .card__cart_btn_wrap .card__followItem_btn {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  min-width: 45px;
}
.card__option_item._item_addCart .card__cart_btn_wrap .card__followItem_btn:hover {
  background-color: #f7f7f7;
  border-color: #000000;
}
.card__option_item._item_addCart .card__cart_btn_wrap ._arrow_btn {
  color: #000000;
  min-height: 36px;
}
.card__option_item._item_addCart .card__cart_btn_wrap ._arrow_btn svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__option_item._item_addCart .card__cart_btn_wrap ._arrow_btn:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
._item_colors p {
  text-transform: uppercase;
  padding-bottom: 4px;
}
._item_colors p .card__current_color {
  padding-left: 8px;
}
._item_colors .card__color_list {
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
._item_colors .card__color_label {
  --border-size: 24px;
  --proc-50: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: var(--border-size);
  height: var(--border-size);
  min-width: var(--border-size);
  max-width: var(--border-size);
  min-height: var(--border-size);
  max-height: var(--border-size);
  border-radius: var(--proc-50);
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;

}
._item_colors .card__color_label img {
  --circle: 16px;
  position:relative;
    top: 3px;
    left: 3px;
  width: var(--circle);
  height: var(--circle);
  min-width: var(--circle);
  max-width: var(--circle);
  min-height: var(--circle);
  max-height: var(--circle);
  border-radius: var(--proc-50);
}

._item_colors .card__color_label[data-color=colorSky]::after {
  background-color: #042137;
}
._item_colors .card__color_label[data-color=colorBlack]::after {
  background-color: #000000;
}
._item_colors .card__color_label[data-color=colorDarkGreen]::after {
  background-color: #4c531f;
}
._item_colors .card__color_label[data-color=colorDarkSky]::after {
  background-color: #032688;
}
._item_colors .card__color_label:hover {
  border: 1px solid #000000;
}
._item_colors .current .card__color_label {
    border: 1px solid #000000;
}
._item_colors .card__color_radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}
._item_colors .card__color_radio:checked ~ .card__color_label {
  border: 1px solid #000000;
}

.hidden__bonus_description {
  position: absolute;
  width: 224px;
  top: -82px;
  right: -17px;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hidden__bonus_description::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  top: 100%;
  right: 15px;
}
.hidden__bonus_description._show {
  opacity: 1;
  pointer-events: auto;
}
.hidden__bonus_description .hidden__bonus_wrap {
  font-family: var(--font-family);
  padding: 8px 12px;
  background-color: #ffffff;
  line-height: 140%;
}
.hidden__bonus_description .hidden__bonus_wrap p {
  font-size: 12px;
}
.hidden__bonus_description .hidden__bonus_wrap .hidden__bonus_link {
  font-size: 12px;
  color: #8e8e8e;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hidden__bonus_description .hidden__bonus_wrap .hidden__bonus_link:hover {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .card__option_item h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .card__option_item._item_size .card__size_list .card__size_item .card__size_btn {
    --width: 40px;
    --height: 30px;
  }
}
._modal {
  --proc: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--proc);
  height: var(--proc);
  z-index: 1000;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
._modal .fullscreen__img_slider_wrap {
  overflow-y: auto;
  -webkit-transform: translateY(200%) !important;
      -ms-transform: translateY(200%) !important;
          transform: translateY(200%) !important;
}
._modal._show {
  pointer-events: all;
}
._modal._show ._overlay {
  opacity: 1;
}
._modal._show .modal__wrap._side, ._modal._show .stock__map_wrap {
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
}
._modal._show ._toUp, ._modal._show .fullscreen__img_slider_wrap {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
._modal ._modal__header h2 {
  line-height: 130%;
  font-size: 24px;
}
._modal .modal__close {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
}
._modal .modal__close > * {
  width: 100%;
  min-width:24px;
  height: 100%;
}
._modal .modal__close._p_abs {
  top: 20px;
  right: 20px;
  z-index: 1;
}
._modal .modal__wrap {
  width: var(--proc);
  height: var(--proc);
  position: fixed;
  z-index: 1002;
  right: 0;
  top: 0;
  overflow: auto;
}
._modal .modal__wrap._side {
  max-width: calc(var(--proc) - 50%);
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
}
._modal .modal__wrap._toUp {
  opacity: 0;
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
}
._modal .modal__wrap._toUp .modal__overflow {
  padding-top: 32px;
}
._modal .modal__wrap._toUp .modal__contentblock {
  max-width: 1098px;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
}
._modal .modal__overflow {
  min-height: var(--proc);
  height: var(--proc);
}
._modal._map > ._half {
  width: 50%;
}
._modal._map > ._half.stock__map_wrap {
  height: var(--proc);
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-120%);
      -ms-transform: translateX(-120%);
          transform: translateX(-120%);
  overflow: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
._modal._map > ._half.stock__map_wrap > * {
  width: var(--proc);
  height: var(--proc);
  -o-object-fit: cover;
     object-fit: cover;
}
._modal._map > ._half.stock__map_wrap .modal__close {
  display: none;
}

._overlay {
  --proc: 100%;
  width: var(--proc);
  height: var(--proc);
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1001;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal__wrap {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal__contentblock {
  background-color: #ffffff;
  padding: 40px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--proc);
}
.modal__contentblock._gift_content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal__contentblock._gift_content .hidden__gift_img {
  width: var(--proc);
  max-width: 484px;
}
.modal__contentblock._gift_content .hidden__gift_img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hidden__table_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hidden__table_size .hidden__table_header {
  gap: 10px;
  padding-bottom: 40px;
}
.hidden__table_size .hidden__table_body {
  padding-bottom: 40px;
}

._modal_line {
  position: relative;
}
._modal_line::before {
  content: "";
  position: absolute;
  width: var(--proc);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
}

.card_sizing_types {
  gap: 15px;
  position: relative;
  padding-bottom: 8px;
}
.card_sizing_types::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
}
.card_sizing_types p {
  font-size: 14px;
  line-height: 140%;
  position: relative;
}
.card_sizing_types p._current::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000000;
  bottom: -9px;
}

.card__sizing_form_wrap {
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 32px;
}
.card__sizing_form_wrap h3 {
  font-size: 20px;
}
.card__sizing_form_wrap p {
  font-size: 14px;
  color: #8e8e8e;
}

.card__sizing_form {
  gap: 20px;
}
.card__sizing_form .sizing__input_wrap {
  gap: 8px;
}
.card__sizing_form .sizing__input_wrap .sizing__description {
  font-family: var(--font-family);
  font-size: 14px;
}
.card__sizing_form .sizing__input_wrap .sizing__input_field {
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  width: 100%;
  max-width: 166px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card__sizing_form .sizing__input_wrap .sizing__input_field._transparent, .card__sizing_form .sizing__input_wrap .sizing__input_field:hover, .card__sizing_form .sizing__input_wrap .sizing__input_field:focus-within {
  background-color: transparent;
  border: 1px solid #d9d9d9;
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input {
  background-color: transparent;
  width: 100%;
  padding: 12px 40px 12px 12px;
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input::-webkit-input-placeholder {
  color: #8e8e8e;
  font-size: 14px;
  font-family: var(--font-family);
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input::-moz-placeholder {
  color: #8e8e8e;
  font-size: 14px;
  font-family: var(--font-family);
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input:-ms-input-placeholder {
  color: #8e8e8e;
  font-size: 14px;
  font-family: var(--font-family);
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input::-ms-input-placeholder {
  color: #8e8e8e;
  font-size: 14px;
  font-family: var(--font-family);
}
.card__sizing_form .sizing__input_wrap .sizing__input_field .sizing__input::placeholder {
  color: #8e8e8e;
  font-size: 14px;
  font-family: var(--font-family);
}
.card__sizing_form .sizing__input_wrap .sizing__input_field span {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.card__table_size_wrap {
  gap: 16px;
  padding-top: 32px;
}
.card__table_size_wrap .card__table_title {
  gap: 10px;
}
.card__table_size_wrap .card__table_title h3 {
  font-size: 20px;
}
.card__table_size_wrap .card__table_title p {
  color: #8e8e8e;
}

.sizing__table_wrap {
  width: 100%;
  max-width: 680px;
  overflow-x: auto;
  overflow-y: hidden;
}
.sizing__table_wrap .sizing__table {
  width: auto;
  min-width: 680px;
  border-spacing: 0;
  border-collapse: collapse;
}
.sizing__table_wrap .sizing__table tbody {
  font-family: var(--font-family);
}
.sizing__table_wrap .sizing__table tbody tr {
  padding: 10px 20px;
}
.sizing__table_wrap .sizing__table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.sizing__table_wrap .sizing__table tbody tr td {
  padding: 10px 12px;
  white-space: nowrap;
  text-align: center;
}
.sizing__table_wrap .sizing__table tbody tr td:first-child {
  text-align: left;
  padding-left: 20px;
}

.sizing__links_wrap {
  gap: 16px;
}
.sizing__links_wrap .contact__nav {
  gap: 12px;
}
.sizing__links_wrap .contact__nav .contact__link {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  background-color: #000000;
  padding: 6px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sizing__links_wrap .contact__nav .contact__link svg {
  width: 100%;
  height: 100%;
}
.sizing__links_wrap .contact__nav .contact__link svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sizing__links_wrap .contact__nav .contact__link:hover, .sizing__links_wrap .contact__nav .contact__link:active {
  background-color: #ffffff;
}
.sizing__links_wrap .contact__nav .contact__link:hover svg path, .sizing__links_wrap .contact__nav .contact__link:active svg path {
  fill: #000000;
}
.sizing__links_wrap .contact__nav .contact__link:active {
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.hidden__inStock_description {
  padding-top: 24px;
  padding-bottom: 24px;
}
.hidden__inStock_description p {
  max-width: 468px;
  color: #8e8e8e;
}

.inStock__store_list .inStock__store_item {
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.inStock__info_item {
  gap: 20px;
}
.inStock__info_item.__sizes span {
  cursor: pointer;
}
.inStock__info_item h3 {
  font-size: 16px;
}
.inStock__info_item p {
  color: #8e8e8e;
}
.inStock__info_item .inStock__sizes {
  gap: 20px;
}
.inStock__info_item .inStock__sizes ._non_avaible {
  color: #8e8e8e;
}
.inStock__info_item ._non_avaible {
  color: #8e8e8e;
}
.inStock__info_item .inStock__store_phone {
  text-align: right;
}
.inStock__info_item .inStock__store_phone span {
  color: #000000;
  white-space: nowrap;
}
.inStock__info_item .inStock__store_phone svg {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  display: none;
}
.inStock__info_item .inStock__store_phone svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.inStock__info_item time {
  color: #8e8e8e;
  text-align: right;
  white-space: nowrap;
}

.hidden__gift_form_wrap {
  padding: 30px 30px 30px 50px;
}

._fullscreen-slider {
  max-width: calc(100% - 4px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fullscreen__img_slider_wrap {
  width: 100%;
  height: 100%;
  gap: 20px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #f6f6f6;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.fullscreen__img_slider_wrap .modal__close {
  top: 40px;
  right: 50px;
  position: absolute;
  z-index: 1;
}
.fullscreen__img_slider_wrap .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  padding: 12px 40px;
  margin-bottom: 12px;
}
.fullscreen__img_slider_wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  --width: 13px;
  --height: 2px;
  opacity: 1;
  background-color: #d9d9d9;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
  border-radius: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.fullscreen__img_slider_wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --width: 32px;
  background-color: #8e8e8e;
}

._sideModal-slider {
  max-width: 77px;
  max-height: 660px;
  margin-right: unset !important;
  margin-left: 20px !important;
  margin-top: 40px !important;
}
._sideModal-slider .swiper-slide.swiper-slide-active .side__slider_wrap {
  padding-bottom: 3px;
  border-bottom: 1px solid #000000;
}

.fullscreen__img_wrap {
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.fullscreen__img_wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.map__show_list_btn,
.inStock__plawka_btn {
  display: none;
}

@media screen and (max-width: 1200px) {
  .card__sizing_form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card__sizing_form .sizing__input_wrap {
    width: 100%;
    max-width: 46%;
  }
}
@media screen and (max-width: 900px) {
  ._modal .modal__wrap._side {
    max-width: 100%;
  }
  .card__sizing_form .sizing__input_wrap .sizing__input_field {
    max-width: 100%;
  }
  .modal__contentblock._gift_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .modal__contentblock._gift_content .hidden__gift_img {
    display: none;
  }
  ._modal .modal__wrap._toUp .modal__overflow {
    padding-top: 0;
  }
  ._modal .modal__wrap._toUp .modal__contentblock {
    min-height: 100%;
  }
  .hidden__inStock._map > ._half {
    width: 100%;
  }
  .hidden__inStock._map > ._half.stock__map_wrap {
    -webkit-transform: translateY(100%) !important;
        -ms-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
  }
  .hidden__inStock._map > ._half.stock__map_wrap .modal__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hidden__inStock._show > ._half {
    width: 100%;
  }
  .hidden__inStock._show > ._half.stock__map_wrap {
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
  .hidden__inStock._show .map__show_list_btn {
    opacity: 1;
    pointer-events: all;
  }
  .hidden__inStock._show .modal__wrap._side._half._semi_show {
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
  .hidden__inStock .modal__wrap._side._half {
    -webkit-transform: translateY(100%) !important;
        -ms-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
  }
  .hidden__inStock .modal__wrap._side._half._semi_show {
    -webkit-transform: translateY(100%) !important;
        -ms-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
  }
  .hidden__inStock .modal__wrap._side._half .modal__overflow .modal__contentblock {
    padding: 20px 20px 24px;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: auto;
    min-height: auto;
  }
  .map__show_list_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    padding: 13px 20px;
    gap: 10px;
    bottom: 10px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 36px 0 rgba(23, 24, 24, 0.08);
            box-shadow: 0 0 36px 0 rgba(23, 24, 24, 0.08);
    z-index: 1005;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .map__show_list_btn:active {
    -webkit-box-shadow: inset 0px 6px 11px 0 rgba(23, 24, 24, 0.08);
            box-shadow: inset 0px 6px 11px 0 rgba(23, 24, 24, 0.08);
  }
  .map__show_list_btn._active {
    opacity: 0;
    pointer-events: none;
  }
  .map__show_list_btn svg {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    min-height: var(--size);
    max-width: var(--size);
    max-height: var(--size);
    fill: #000000;
  }
  .map__show_list_btn span {
    color: #000000;
  }
  .inStock__plawka_btn {
    --wdith: 36px;
    --height: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2px;
    width: var(--wdith);
    height: var(--height);
    min-width: var(--wdith);
    min-height: var(--height);
    max-width: var(--wdith);
    max-height: var(--height);
    background-color: rgba(28, 28, 30, 0.18);
    position: absolute;
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .inStock__plawka_btn:active {
    background-color: #000000;
  }
  .fullscreen__img_slider_wrap {
    padding-top: 68px;
  }
  .fullscreen__img_slider_wrap .modal__close {
    top: 24px;
    right: 20px;
  }
  .hidden__inStock._map .modal__wrap._semi_show {
    max-height: 180px;
    bottom: 0;
    top: unset;
  }
}
@media screen and (max-width: 768px) {
  .modal__contentblock {
    padding: 20px 24px 24px;
  }
  .card__sizing_form_wrap h3 {
    font-size: 15px;
  }
  .inStock__info_item {
    gap: 8px;
  }
  .inStock__info_item.__address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inStock__info_item .inStock__store_phone span {
    display: none;
  }
  .inStock__info_item .inStock__store_phone svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .card__table_size_wrap .card__table_title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card__table_size_wrap .card__table_title h3 {
    font-size: 15px;
  }
  .card__table_size_wrap .sizing__table tbody tr td:first-child {
    max-width: 135px;
  }
  .card__table_size_wrap .sizing__table tbody tr td {
    padding: 10px;
  }
  .inStock__store_list .inStock__store_item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hidden__inStock .inStock__store_list .inStock__store_item {
    padding-top: 14px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  ._modal ._modal__header h2 {
    font-size: 17px;
  }
  .hidden__gift_form_wrap {
    padding: 20px 24px;
  }
  ._sideModal-slider {
    display: none;
  }
  .fullscreen__img_slider_wrap {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 4px;
  }
  .fullscreen__img_slider_wrap .swiper-pagination {
    position: static !important;
  }
}
.hidden__gift_form {
  gap: 24px;
}

.gift__input_field.__line label {
  color: #8e8e8e;
}
.gift__input_field.__example {
  background-color: #f7f7f7;
  padding: 16px;
}
.gift__input_field.__checkbox label {
  gap: 8px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.gift__input_field.__checkbox label::before {
  --size: 20px;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  border: 1px solid #8e8e8e;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.gift__input_field.__checkbox.error label::before{
    border-color:red;
}
.gift__input_field.__checkbox label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7.5px;
  width: 6px;
  height: 12px;
  -webkit-transform: rotate(45deg) scale(0);
      -ms-transform: rotate(45deg) scale(0);
          transform: rotate(45deg) scale(0);
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.gift__input_field.__checkbox label:hover::before {
  border-color: #000000;
}
.gift__input_field.__checkbox .gift__checkbox {
  position: relative;
  opacity: 0;
  width: 0;
  height: 0;
}
.gift__input_field.__checkbox .gift__checkbox:checked ~ label::before {
  border-color: #000000;
}
.gift__input_field.__checkbox .gift__checkbox:checked ~ label::after {
  -webkit-transform: rotate(45deg) scale(1);
      -ms-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}

.gitf__input {
  padding: 9px 0;
  font-family: var(--font-family);
  border-bottom: 1px solid #d9d9d9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.gitf__input.error{
    border-color:red;
}
.gitf__input:hover, .gitf__input:focus {
  border-color: #000000;
}
.gitf__input::-webkit-input-placeholder {
  font-family: var(--font-family);
}
.gitf__input::-moz-placeholder {
  font-family: var(--font-family);
}
.gitf__input:-ms-input-placeholder {
  font-family: var(--font-family);
}
.gitf__input::-ms-input-placeholder {
  font-family: var(--font-family);
}
.gitf__input::placeholder {
  font-family: var(--font-family);
}

.gift__send_btn {
  width: 100%;
  text-align: justify;
  font-size: 14px;
  font-family: var(--second-family);
  padding: 11px 20px;
  border: 1px solid #8e8e8e;
  color: #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.gift__send_btn:hover {
  border-color: #000000;
}

@media screen and (max-width: 600px) {
  .gift__input_field.__line label {
    font-size: 13px;
  }
  .gitf__input {
    padding: 7px 0;
  }
}
.accordion__content_wrap {
  gap: 12px;
}

.char__item._active {
  padding-bottom: 28px;
}
.char__item._active .char__acc_btn svg .__2 {
  display: none;
}
.char__acc_btn {
  width: 100%;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #d9d9d9;
}
.char__acc_btn h3 {
  font-size: 14px;
  color: #000000;
}
.char__acc_btn svg {
  position: relative;
  width: 16px;
  height: 16px;
  max-width: 16px;
  min-width: 16px;
  max-height: 16px;
  min-height: 16px;
}
.chard__hidden_list_wrap h3 {
  font-size: 14px;
}

.char__hidden_list {
  gap: 2px;
}
.char__hidden_list .char__hidden_item {
  list-style: inside;
  font-family: var(--font-family);
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  .char__acc_btn h3 {
    font-size: 13px;
  }
  .char__acc_btn {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.fashion__swiper_section {
  padding-left: 15px;
}

.fashion__swiper__title {
  position: relative;
  gap: 20px;
}
.fashion__swiper__title .fashion__arrow_wrap {
  gap: 57px;
}
.fashion__swiper__title h2 {
  font-size: 24px;
}
.fashion__swiper__title ._fashion__arrows {
  --width: 13px;
  --height: 23px;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
  inset: unset;
  margin-top: unset;
  position: static;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fashion__swiper__title ._fashion__arrows.__next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.fashion__swiper__title ._fashion__arrows:hover {
  opacity: 1;
}
.fashion__swiper__title ._fashion__arrows:active svg path {
  stroke: #000000;
}
.fashion__swiper__title ._fashion__arrows::after {
  display: none;
}

._fashion-slider .swiper-slide {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fashion__slider_wrap {
  position: relative;
  --width: 612px;
  --height: 660px;
  width: var(--width);
  max-width: var(--width);
  min-width: var(--width);
  height: var(--height);
  max-height: var(--height);
  min-height: var(--height);
}
.fashion__slider_wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.fashion__hidden_block {
  --proc: 100%;
  position: absolute;
  width: var(--proc);
  height: var(--proc);
  top: 0;
  left: 0;
}

.fashion__hidden_item {
  position: absolute;
}
.fashion__hidden_item._headThings {
  top: 77px;
  left: 238px;
}
.fashion__hidden_item._headThings .fashion__hidden_info {
  top: 45px;
}
.fashion__hidden_item._bodyThings {
  top: 244px;
  left: 343px;
}
.fashion__hidden_item._bodyThings .fashion__hidden_info {
  top: 45px;
}
.fashion__hidden_item._handsThings {
  top: 389px;
  left: 174px;
}
.fashion__hidden_item._handsThings .fashion__hidden_info {
  top: -110px;
}
.fashion__hidden_item._legsThings {
  top: 499px;
  left: 310px;
}
.fashion__hidden_item._legsThings .fashion__hidden_info {
  top: -110px;
}
.fashion__hidden_item .fashion__hidden_info {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fashion__hidden_item .fashion__hidden_info._show {
  opacity: 1;
  pointer-events: all;
}

.fashion__hidden_wrap {
  gap: 8px;
  min-width: 237px;
  padding: 12px 16px;
  background-color: #ffffff;
}
.fashion__hidden_wrap p .prev_price {
  padding-left: 4px;
  text-decoration: line-through;
  color: #8e8e8e;
  font-family: var(--second-family);
}

.fashion__color_list {
  gap: 4px;
}
.fashion__color_list .card__color_label {
  --border-size: 14px;
  padding: 2px;
}
.fashion__color_list .card__color_label::after {
  --circle: 10px;
}

.fashion__btn {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  opacity: 0.7;
  pointer-events: all;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fashion__btn img {
  -o-object-fit: fill;
     object-fit: fill;
}
.fashion__btn:hover, .fashion__btn:active, .fashion__btn._active {
  opacity: 1;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.fashion__current_slide {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.fashion__current_slide_link {
  --width: 34px;
  --height: 34px;
  background-color: #ffffff;
  padding: 7px 9px;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
  gap: 6px;
  border-radius: 100px;
  -webkit-transition: drop-shadow 0.2s ease;
  transition: drop-shadow 0.2s ease;
}
.fashion__current_slide_link span {
  display: none;
  color: #000000;
  font-size: 14px;
  font-family: var(--second-family);
}
.fashion__current_slide_link:hover {
  --width: 188px;
}
.fashion__current_slide_link:hover span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  word-break: keep-all;
  white-space: nowrap;
}
.fashion__current_slide_link svg {
  --size: 16px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
}

@media screen and (max-width: 1024px) {
  .fashion__swiper__title h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .fashion__slider_wrap {
    --width: 530px;
    --height: 530px;
  }
  .fashion__current_slide {
    bottom: 19px;
    left: 15px;
  }
  .fashion__hidden_item._headThings {
    top: 40px;
    left: 200px;
  }
  .fashion__hidden_item._bodyThings {
    top: 185px;
    left: 288px;
  }
  .fashion__hidden_item._handsThings {
    top: 300px;
    left: 160px;
  }
  .fashion__hidden_item._handsThings .fashion__hidden_info {
    top: -110px;
  }
  .fashion__hidden_item._legsThings {
    top: unset;
    left: 270px;
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fashion__swiper__title h2 {
    font-size: 17px;
    padding-bottom: 24px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .fashion__slider_wrap {
    --width: 353px;
  }
  .fashion__swiper__title .fashion__arrow_wrap {
    display: none;
  }
  .fashion__hidden_item._headThings {
    top: 40px;
    left: 200px;
  }
  .fashion__hidden_item._headThings .fashion__hidden_info {
    left: unset;
    right: -40px;
  }
  .fashion__hidden_item._bodyThings {
    left: 210px;
  }
  .fashion__hidden_item._bodyThings .fashion__hidden_info {
    left: unset;
    right: -40px;
  }
  .fashion__hidden_item._handsThings {
    left: 70px;
  }
  .fashion__hidden_item._handsThings .fashion__hidden_info {
    left: -35px;
  }
  .fashion__hidden_item._legsThings {
    left: 220px;
    bottom: 75px;
  }
  .fashion__hidden_item._legsThings .fashion__hidden_info {
    left: -115px;
  }
}
.collection__title h2 {
  font-size: 24px;
}

.collection__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.collection__adverting {
  position: absolute;
  top: 19px;
  left: 19px;
  gap: 10px;
}
.collection__adverting > * {
  padding-left: 4px;
  padding-right: 4px;
}
.collection__adverting .collection__count {
  color: #ffffff;
}
.collection__adverting .collection__count._orange {
  background-color: #f89760;
}
.collection__adverting .collection__count._green {
  background-color: #0eba7d;
}
.collection__adverting .collection__online {
  color: #8e8e8e;
  background-color: #e8e8e8;
}

.collection__follow_btn {
  --size: 16px;
  position: absolute;
  top: 19px;
  right: 19px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.collection__follow_btn:hover svg path {
  fill: #8e8e8e;
  stroke: #8e8e8e;
}
.collection__follow_btn:active svg path {
  fill: #000000;
  stroke: #000000;
}

.plawka__price._text_up .prev_price {
    padding-left: 8px;
    text-decoration: line-through;
    color: #8e8e8e;
}


.plawka__choose_size {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}
.plawka__choose_size._show {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  pointer-events: all;
}

.choose__size_wrap {
  background-color: #ffffff;
  padding: 10px 20px;
  gap: 20px;
}
.choose__size_wrap .plawka__price {
  display: none;
}

.choosen__item {
  gap: 10px;
  width: 100%;
  overflow: hidden;
}
.choosen__item .choosen__item_img {
  --width: 44px;
  --height: 59px;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
}
.choosen__item p {
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 130%;
  word-break: keep-all;
  white-space: nowrap;
}

.plawka__name {
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 30px);
}

.plawka__btn_wrap {
  gap: 6px;
}
.plawka__btn_wrap button {
  --height: 45px;
  min-height: var(--height);
  max-height: var(--height);
}

.plawka__followItem_btn {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  min-width: 45px;
  display: none;
}

.choose__size_btn {
  padding: 12px 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 191px;
}

@media screen and (max-width: 1024px) {
  .collection__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection__title h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .collection__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .choose__size_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .choose__size_wrap .plawka__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .choose__size_wrap .choosen__item_img {
    display: none;
  }
  .plawka__followItem_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 45px;
  }
  .plawka__btn_wrap {
    --wdth: 100%;
    gap: 6px;
    width: var(--wdth);
  }
  .plawka__btn_wrap button:first-child {
    max-width: calc(var(--wdth) - 45px);
    min-width: calc(var(--wdth) - 45px);
  }
  .collection__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection__title h2 {
    font-size: 17px;
  }
  .collection__adverting span {
    font-size: 13px;
  }
  .collection__adverting .collection__online {
    display: none;
  }
  .collection__title {
    padding-top: 10px;
    padding-bottom: 24px;
  }
  .choosen__item p {
    font-size: 15px;
  }
  .fashion__swiper__title {
    padding-left: 0;
  }
  .plawka__choose_size {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
  .plawka__choose_size._show {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 600px) {
  .fashion__slider_wrap {
    --width: 343px;
  }
}
._fullImage_content {
  max-height: 600px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.hidden__fullImage_swipper_wrap {
  max-width: 484px;
}
.hidden__fullImage_swipper_wrap .fullImage_arrows {
  --size: 35px;
  border-radius: 100%;
  background-color: rgba(76, 76, 76, 0.4);
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hidden__fullImage_swipper_wrap .fullImage_arrows svg {
  --width: 10px;
  --height: 17px;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
}
.hidden__fullImage_swipper_wrap .fullImage_arrows svg path {
  width: 100%;
  stroke: #ffffff;
}
.hidden__fullImage_swipper_wrap .fullImage_arrows::after {
  display: none;
}
.hidden__fullImage_swipper_wrap .fullImage_arrows.__next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hidden__fullImage_swipper_wrap .fullImage_arrows:hover {
  background-color: rgba(76, 76, 76, 0.7);
}
.hidden__fullImage_swipper_wrap .fullImage_arrows:active {
  background-color: rgb(76, 76, 76);
}

._fullImage-slider {
  height: 100%;
}

.swiper-pagination._fullImage-pagination {
  padding: 5px 12px;
  color: #ffffff;
  font-family: var(--second-family) !important;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  gap: 2px;
  bottom: 24px;
}
.swiper-pagination._fullImage-pagination::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 100px;
  background: rgba(76, 76, 76, 0.4);
  width: 100%;
  max-width: 47px;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.fullImage__slider_wrap {
  --maxHeight: 600px;
  width: 100%;
  height: 100%;
  max-height: var(--maxHeight);
}
.fullImage__slider_wrap img {
  max-height: var(--maxHeight);
  -o-object-fit: cover;
     object-fit: cover;
}

.hidden__fullImage_wrap {
  padding: 30px;
  position: relative;
  width: 100%;
}

.hidden__fullImage_header {
  position: absolute;
  right: 30px;
  top: 30px;
  padding-bottom: 0;
}

.hidden__fullImage_title {
  display: none;
}

.hidden__fullImage_body {
  overflow: hidden;
}

.fullImage__overflow {
  overflow: hidden auto;
  max-height: 540px;
}
.fullImage__overflow::-webkit-scrollbar {
  width: 0;
}

.fullImage__list {
  gap: 12px;
}
.fullImage__list .fullImage__item {
  gap: 20px;
}

.fullImage__item_img {
  --width: 140px;
  --height: 150px;
  background-color: #f6f6f6;
  width: var(--width);
  height: var(--height);
  min-width: var(--width);
  min-height: var(--height);
  max-width: var(--width);
  max-height: var(--height);
}
.fullImage__item_details {
  gap: 8px;
}

.fullImage__colors_wrap .fullImage__colors_list {
  gap: 4px;
}
.fullImage__colors_wrap .card__color_label {
  --border-size: 16px;
  padding: 2px;
}
.fullImage__colors_wrap .card__color_label::after {
  --circle: 10px;
}

.fullImage__price {
  font-family: var(--second-family);
}
.fullImage__price span {
  padding-left: 4px;
  text-decoration: line-through;
  color: #8e8e8e;
}

.fullImage__show_more_btn {
  font-size: 12px;
  font-family: var(--second-family);
  color: #000000;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fullImage__show_more_btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #8e8e8e;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fullImage__show_more_btn:hover::before {
  background-color: #000000;
}

@media screen and (max-width: 900px) {
  .hidden__fullImage_swipper_wrap {
    display: none;
  }
  .hidden__fullImage_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hidden__fullImage_header {
    position: static;
    padding-bottom: 24px;
  }
  .hidden__fullImage_header .hidden__fullImage_title {
    padding-bottom: 0;
  }
  .fullImage__overflow {
    max-height: calc(100vh - 90px);
  }
}
@media screen and (max-width: 600px) {
  .hidden__fullImage_header .modal__close {
    --size: 20px;
  }
  .hidden__fullImage_wrap {
    padding: 20px;
  }
}
.contacts-list-chars li{
    list-style: none!important;
}
.contacts-list-chars a{
    text-decoration: underline;
    color:black;
}
.modal__contentblock._split_content{
    max-width:540px!important;
}
.card__followItem_btn.checked svg{
    fill:black;
}
.plawka__followItem_btn.checked svg{
    fill:black;
}
.modal__contentblock._gift_ok_content{
    max-width:460px!important;
}
.modal__contentblock .success-modal{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
}
.modal__contentblock .success-modal .success-modal-title{
    text-transform: uppercase;
    font-size:20px;
    font-family: var(--font-family);
    font-weight: 400;
}
.modal__contentblock .success-modal .success-modal-text{
    font-size:14px;
    text-align: center;
}
@media screen and (max-width: 450px) {
    ._modal .modal__wrap._toUp .modal__contentblock._gift_ok_content{
        bottom:0px;
        position:fixed;
        min-height: auto;
    }
}
.rees-detail-container .home-arrival__header{
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.rees-detail-container .home-arrival__header .home-arrival__title.title{
    font-size:24px;
    text-transform: uppercase;
    font-family: var(--font-family);
    line-height: 140%;
}
@media screen and (max-width: 1024px) {
    .rees-detail-container .home-arrival__header .home-arrival__title.title {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .rees-detail-container .home-arrival__header .home-arrival__title.title {
        font-size: 17px;
    }
}
@media screen and (max-width: 1200px) {
    section .fashion__swiper__title.container{
        padding-left:0px;
        padding-right:0px;
    }
}
.fashion__color_list .card__color_label img{
    --circle: 10px;
    position: relative;
    top: -1px;
    left: -1px;
    width: var(--circle);
    height: var(--circle);
    min-width: var(--circle);
    max-width: var(--circle);
    min-height: var(--circle);
    max-height: var(--circle);
    border-radius: var(--proc-50);
}
.fashion__hidden_item.left .fashion__hidden_info {
    left: 0;
    right: unset;
}
.fashion__hidden_item.right .fashion__hidden_info {
    left: unset;
    right: 0;
}