/* System Configuration */
@layer reset, base, utilities, components, overrides;

/* Core Dependencies */
/*----------RESPONSIVE MEDIA-----------*/
/*----------DEFAULT Z-INDEXES-----------*/
/*----------BORDER RADIUS-----------*/
/*----------BORDER WIDTH-----------*/
/*----------OUTLINE WIDTH-----------*/
/*----------OUTLINE OFFSET-----------*/
/*----------ICON SIZE-----------*/
/*----------TRANSITIONS-----------*/
/*----------TEXT TRUNCATE-----------*/
/*----------FLEX LAYOUT-----------*/
/*----------GRID LAYOUT-----------*/
/*----------CENTER ELEMENT-----------*/
/*----------SPACING-----------*/
/*----------GAP-----------*/
/*----------PADDING-----------*/
/*----------MARGIN-----------*/
/*----------SCROLLBAR-----------*/
/*----------HARDWARE ACCELERATION (ONLY USE WHEN NEEDED)-----------*/
/*----------BREAKPOINTS-----------*/
/*----------GRAY-----------*/
/*----------COLOR1-----------*/
/*----------COLOR2-----------*/
/*----------GRADIENT-----------*/
/*----------BACKGROUND-----------*/
/*----------ERROR-----------*/
/*----------ALERT-----------*/
/*----------SUCCESS-----------*/
/*----------DISABLE-----------*/
/*----------TRANSPARENT-----------*/
/*----------SOCIALS-----------*/
/*----------UNIQUE-----------*/
/*----------HEADINGS-----------*/
/*----------BODY TEXT-----------*/
/*----------UNIQUE TEXT-----------*/
/* Reset Layer */
@layer reset {
  /* Box sizing rules
============================================= */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Reset margins and paddings
============================================= */
  * {
    margin: 0;
    padding: 0;
    outline: 0;
  }
  /* Document defaults
============================================= */
  :root {
    font-style: normal;
    font-optical-sizing: auto;
    font-synthesis: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  html, body:host {
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    tab-size: 4;
    -moz-tab-size: 4;
    scroll-behavior: smooth;
  }
  body {
    min-height: 100vh;
  }
  body > :is(header, footer), section, article, main {
    container-type: inline-size;
  }
  /* Hide "tap" highlights on iOS and iPadOS for offending elements */
  a, details summary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  /* Typography reset
============================================= */
  p, li, figcaption {
    text-wrap: pretty;
  }
  body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote {
    margin: 0;
    font: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  i, em {
    font-style: italic;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  code, kbd, samp, pre {
    font-family: FiraCode, SFMono-Regular, Consolas, Liberation Mono, Menlo, Monaco, Courier, monospace;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-feature-settings: "ss01" off, "ss02" off, "ss03" off, "ss04" on, "ss05" off, "ss06" on, "ss07" off, "zero" off, "onum" off;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    min-width: 0;
  }
  small {
    font-size: 80%;
  }
  /* List reset
============================================= */
  ul[role="list"], ol[role="list"], li {
    list-style: none;
    padding: 0;
  }
  /* Anchor reset
============================================= */
  a {
    color: inherit;
    text-decoration: none;
  }
  a:active, a:hover {
    outline: 0;
  }
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  /* Table reset
============================================= */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Media elements reset
============================================= */
  img, picture, svg, audio, canvas, iframe, video {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    object-fit: cover;
    overflow: hidden;
  }
  svg, svg path, svg circle, svg polygon, svg rect, svg line {
    shape-rendering: geometricprecision;
  }
  /* Form elements reset
============================================= */
  input, button, textarea, select, optgroup {
    font: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
    vertical-align: middle;
  }
  input, textarea {
    resize: none;
  }
  button {
    padding: 0;
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  ::-webkit-search-decoration, ::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  :-moz-focusring {
    outline: none;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  progress {
    vertical-align: baseline;
  }
  /* Autofill styles
============================================= */
  input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: black !important;
  }
  input:-moz-autofill, input:-moz-autofill:focus, input:-moz-autofill:hover, input:-moz-autofill:active {
    -moz-box-shadow: 0 0 0 30px white inset !important;
    -moz-text-fill-color: black !important;
  }
  input:-ms-autofill, input:-ms-autofill:focus, input:-ms-autofill:hover, input:-ms-autofill:active {
    -ms-box-shadow: 0 0 0 30px white inset !important;
    -ms-text-fill-color: black !important;
  }
  /* Dialog reset
============================================= */
  dialog {
    background-color: transparent;
    border: none;
    color: inherit;
    height: fit-content;
    width: fit-content;
    margin: auto;
    padding: 0;
    position: fixed;
    left: 0;
    right: 0;
  }
  dialog[open] {
    display: block;
    translate: 0 0;
    opacity: 1;
    transition: opacity, translate 0.2s ease-in-out;
  }
  @starting-style {
    dialog[open] {
      opacity: 0;
      translate: 0 -25vh;
    }
  }
  dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }
  /* Focus styles
============================================= */
  :focus:not(:focus-visible) {
    outline: none;
  }
  /* Reduce motion
============================================= */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}
/* Base Design System */
@layer base {
  :root {
    /*----------FONT FAMILY SETTINGS-----------*/
    --font-family-heading: "YesevaOne", Georgia, "Times New Roman", Times, serif;
    --font-family-body: "IBMPlexSans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /*----------ROOT STYLES-----------*/
    color-scheme: light;
    accent-color: var(--color1-main);
    scrollbar-gutter: stable;
  }
  body {
    position: relative;
    font-family: var(--font-family-body);
  }
  h1, h2, h3 {
    font-family: var(--font-family-heading);
  }
  h4, h5, h6 {
    font-family: var(--font-family-body);
  }
  :target {
    scroll-margin-top: 7.3958333333vw;
  }
  @media screen and (width <= 1440px) {
    :target {
      scroll-margin-top: 9.663250366vw;
    }
  }
  @media screen and (width <= 1025px) {
    :target {
      scroll-margin-top: 8.4635416667vw;
    }
  }
  @media screen and (width <= 481px) {
    :target {
      scroll-margin-top: 17.3333333333vw;
    }
  }
  @view-transition {
    navigation: auto;
  }
  ::selection {
    background-color: var(--color1-light);
    color: var(--color1-darker);
  }
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal-overlay.active {
    opacity: 1;
  }
  .modal {
    background: var(--gray-white);
  }
  .modal-lite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibility 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1025px) {
    .modal-lite {
      z-index: 2004;
    }
  }
  .modal-lite.active {
    opacity: 1;
    visibility: visible;
  }
  .modal_dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    max-height: 90dvh;
    z-index: 2001;
    display: none;
    opacity: 0;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal_dialog.active {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  @media screen and (width <= 1025px) {
    .modal_dialog {
      height: calc(100vh - env(safe-area-inset-bottom));
      max-height: unset;
    }
  }
  .modal_message {
    max-width: 26.0416666667vw;
    width: 100%;
    z-index: 2003;
  }
  @media screen and (width <= 1440px) {
    .modal_message {
      max-width: 35.1390922401vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message {
      max-width: none;
      height: fit-content;
      transform: none;
      top: auto;
      left: auto;
      bottom: -25%;
      opacity: 0;
      transition: bottom 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
    }
  }
  @media screen and (width <= 1025px) and (width <= 1025px) {
    .modal_message.active {
      bottom: 0;
      opacity: 1;
    }
  }
  .modal_message .modal__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__wrapper {
      padding: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__wrapper {
      padding: 2.1333333333vw;
    }
  }
  .modal_message .modal__content {
    padding: 2.0833333333vw;
    display: flex;
    flex-direction: column;
    background: var(--gray-white);
    gap: 1.0416666667vw;
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__content {
      gap: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__content {
      gap: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__content {
      gap: 5.3333333333vw;
    }
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__content {
      padding: 2.9282576867vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__content {
      padding: 2.6041666667vw 0 9.1145833333vw;
      border-top: solid var(--gray-lighter);
      border-width: max(0.1041666667vw, 2px);
    }
  }
  @media screen and (width <= 1025px) and (width <= 1440px) {
    .modal_message .modal__content {
      border-width: max(0.1464128843vw, 2px);
    }
  }
  @media screen and (width <= 1025px) and (width <= 1025px) {
    .modal_message .modal__content {
      border-width: max(0.2604166667vw, 2px);
    }
  }
  @media screen and (width <= 1025px) and (width <= 481px) {
    .modal_message .modal__content {
      border-width: max(0.5333333333vw, 2px);
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__content {
      padding: 5.3333333333vw 0 18.6666666667vw;
    }
  }
  .modal_message .modal__top {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-template-rows: min-content 1fr;
    grid-auto-columns: 1fr;
    gap: 0.625vw 1.0416666667vw;
    grid-auto-flow: row;
    grid-template-areas: "marker title" "marker text";
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__top {
      gap: 0.878477306vw 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__top {
      gap: 1.5625vw 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__top {
      gap: 3.2vw 5.3333333333vw;
    }
  }
  .modal_message .modal__marker {
    grid-area: marker;
  }
  .modal_message .modal__marker-success {
    background: var(--success-light) !important;
    color: var(--gray-white) !important;
  }
  .modal_message .modal__marker-error {
    background: var(--error-light) !important;
    color: var(--error-dark) !important;
  }
  .modal_message .modal__title {
    color: var(--gray-black);
    grid-area: title;
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    font-family: var(--font-family-body);
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__title {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__title {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__title {
      font-size: 5.3333333333vw;
    }
  }
  .modal_message .modal__text {
    color: var(--gray-dark);
    grid-area: text;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__text {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__text {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__text {
      font-size: 4.2666666667vw;
    }
  }
  .modal_message .modal__desc {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
    color: var(--gray-dark);
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__desc {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__desc {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__desc {
      font-size: 4.2666666667vw;
    }
  }
  .modal_message .modal__button-confirm {
    width: 100%;
  }
  .modal_message .modal__button-close {
    position: absolute;
    top: 0;
    right: -3.125vw;
  }
  @media screen and (width <= 1440px) {
    .modal_message .modal__button-close {
      right: -4.39238653vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_message .modal__button-close {
      background: var(--gray-lighter);
      color: var(--gray-darker);
      margin-bottom: 1.0416666667vw;
      position: static;
      align-self: flex-end;
      top: 1.0416666667vw;
      right: 1.0416666667vw;
    }
    .modal_message .modal__button-close:active {
      background: var(--color1-lighter);
      color: var(--color1-darker);
    }
  }
  @media screen and (width <= 481px) {
    .modal_message .modal__button-close {
      margin-bottom: 2.1333333333vw;
    }
  }
  .modal_sheet, .modal_drawer {
    position: fixed;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: calc(100vh - env(safe-area-inset-bottom));
    z-index: 2002;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal_sheet.active, .modal_drawer.active {
    transform: none;
  }
  .modal_drawer {
    left: 0;
    bottom: 0;
  }
  .modal_sheet {
    top: 0;
    width: 25vw;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet {
      width: 35.1390922401vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet {
      width: 100%;
    }
  }
  .modal_sheet_right {
    transform: translateX(100%);
    right: 0;
    padding: 1.0416666667vw 4.375vw 2.0833333333vw 2.0833333333vw;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet_right {
      padding: 1.4641288433vw 3.0014641288vw 2.9282576867vw 2.9282576867vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet_right {
      padding: 2.6041666667vw 1.5625vw 5.3385416667vw 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet_right {
      padding: 5.3333333333vw 3.2vw 10.9333333333vw 3.2vw;
    }
  }
  .modal_sheet_left {
    transform: translateX(-100%);
    left: 0;
    padding: 1.0416666667vw 2.0833333333vw 2.0833333333vw 4.375vw;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet_left {
      padding: 1.4641288433vw 2.9282576867vw 2.9282576867vw 3.0014641288vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet_left {
      padding: 2.6041666667vw 5.3385416667vw 1.5625vw 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet_left {
      padding: 5.3333333333vw 10.9333333333vw 3.2vw 3.2vw;
    }
  }
  .modal_sheet .modal__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .modal_sheet .modal__content::-webkit-scrollbar {
    display: none;
  }
  .modal_sheet .modal__content::-webkit-scrollbar-thumb {
    display: none;
  }
  .modal_sheet .modal__top {
    padding: 0.4166666667vw 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4166666667vw;
    width: 100%;
    height: fit-content;
    border-bottom: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__top {
      border-width: max(0.1464128843vw, 2px);
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__top {
      border-width: max(0.2604166667vw, 2px);
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__top {
      border-width: max(0.5333333333vw, 2px);
    }
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__top {
      gap: 0.5856515373vw;
      padding: 0.5856515373vw 0;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__top {
      gap: 1.0416666667vw;
      padding: 1.0416666667vw 0;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__top {
      gap: 2.1333333333vw;
      padding: 2.1333333333vw 0;
    }
  }
  .modal_sheet h3 {
    padding: 0.625vw 0;
    color: var(--gray-black);
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    font-family: var(--font-family-body);
    font-weight: 400;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet h3 {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet h3 {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet h3 {
      font-size: 5.3333333333vw;
    }
  }
  @media screen and (width <= 1440px) {
    .modal_sheet h3 {
      padding: 0.878477306vw 0;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet h3 {
      padding: 1.5625vw 0;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet h3 {
      padding: 3.2vw 0;
    }
  }
  .modal_sheet .modal__info {
    padding: 1.0416666667vw 0 1.25vw;
    width: 100%;
    color: var(--gray-dark);
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__info {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__info {
      font-size: 1.6927083333vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__info {
      font-size: 3.4666666667vw;
    }
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__info {
      padding: 1.4641288433vw 0 1.756954612vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__info {
      padding: 2.6041666667vw 0 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__info {
      padding: 5.3333333333vw 0 6.4vw;
    }
  }
  .modal_sheet .modal__socials {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__socials {
      margin-bottom: 7.8125vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__socials {
      margin-bottom: 16vw;
    }
  }
  .modal_sheet .modal__socials span {
    color: var(--gray-dark);
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__socials span {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__socials span {
      font-size: 1.6927083333vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__socials span {
      font-size: 3.4666666667vw;
    }
  }
  .modal_sheet .modal__socials span:nth-child(2n) {
    margin-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__socials span:nth-child(2n) {
      margin-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__socials span:nth-child(2n) {
      margin-bottom: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__socials span:nth-child(2n) {
      margin-bottom: 5.3333333333vw;
    }
  }
  .modal_sheet .modal__socials ul {
    display: flex;
  }
  .modal_sheet .modal__socials li:not(:last-child) {
    margin-right: 0.4166666667vw;
  }
  @media screen and (width <= 1440px) {
    .modal_sheet .modal__socials li:not(:last-child) {
      margin-right: 0.5856515373vw;
    }
  }
  @media screen and (width <= 1025px) {
    .modal_sheet .modal__socials li:not(:last-child) {
      margin-right: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .modal_sheet .modal__socials li:not(:last-child) {
      margin-right: 2.1333333333vw;
    }
  }
  .modal_drawer {
    transform: translateY(100%);
  }
  .modal__mask {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal__mask.active {
    opacity: 1;
    visibility: visible;
  }
  .slider {
    padding: 4.1666666667vw 0 4.1666666667vw 4.375vw;
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "title buttons" "slider slider";
    gap: 2.0833333333vw;
    overflow: hidden;
  }
  @media screen and (width <= 1440px) {
    .slider {
      padding: 5.8565153734vw 0 5.8565153734vw 3.0014641288vw;
      gap: 2.9282576867vw 0;
    }
  }
  @media screen and (width <= 1025px) {
    .slider {
      padding: 5.2083333333vw 0 2.6041666667vw 1.5625vw;
      gap: 4.1666666667vw;
      grid-template-columns: 1fr;
      grid-template-areas: "title" "slider" "buttons";
    }
  }
  @media screen and (width <= 481px) {
    .slider {
      padding: 10.6666666667vw 3.2vw;
      gap: 8.5333333333vw;
    }
  }
  .slider__title {
    grid-area: title;
    font-size: 2.1875vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .slider__title {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 1025px) {
    .slider__title {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .slider__title {
      font-size: 7.4666666667vw;
    }
  }
  .slider__buttons {
    padding-right: 4.375vw;
    display: flex;
    gap: 0.625vw;
    justify-self: end;
    grid-area: buttons;
  }
  @media screen and (width <= 1440px) {
    .slider__buttons {
      padding-right: 3.0014641288vw;
      gap: 0.878477306vw;
    }
  }
  @media screen and (width <= 1025px) {
    .slider__buttons {
      padding-right: 1.5625vw;
      justify-self: start;
      gap: 0;
    }
  }
  @media screen and (width <= 481px) {
    .slider__buttons {
      padding-right: 3.2vw;
      width: 100%;
    }
  }
  @media screen and (width <= 481px) {
    .slider__button-link {
      width: 100% !important;
      background: var(--gray-lighter) !important;
      color: var(--gray-darker) !important;
    }
    .slider__button-link:active {
      background: var(--color1-lighter) !important;
      color: var(--color1-darker) !important;
    }
  }
  @media screen and (width <= 481px) and (hover: hover) and (pointer: fine) {
    .slider__button-link:hover {
      background: var(--gray-lighter) !important;
      color: var(--color1-main) !important;
    }
  }
  .slider__button-link {
    background: var(--gray-lighter);
    color: var(--gray-darker);
  }
  @media (hover: hover) and (pointer: fine) {
    .slider__button-link:hover {
      background: var(--gray-lighter);
      color: var(--color1-main);
    }
  }
  .slider__button-link:active {
    background: var(--color1-lighter);
    color: var(--color1-darker);
  }
  @media screen and (width <= 1025px) {
    .slider__button-link {
      background: var(--gray-lighter) !important;
      color: var(--gray-darker) !important;
    }
    .slider__button-link:active {
      background: var(--color1-lighter) !important;
      color: var(--color1-darker) !important;
    }
  }
  @media screen and (width <= 1025px) and (hover: hover) and (pointer: fine) {
    .slider__button-link:hover {
      background: var(--gray-lighter) !important;
      color: var(--color1-main) !important;
    }
  }
  .slider__swiper-wrapper {
    grid-area: slider;
    overflow: hidden;
    height: fit-content;
  }
  @media screen and (width <= 1025px) {
    .slider__button-next.btn-secondary, .slider__button-prev.btn-secondary {
      display: none !important;
    }
  }
  .swiper-button-lock {
    display: none !important;
  }
  .catalog-getscroll {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 23.4375vw;
    background: var(--gray-lighter);
    color: var(--gray-darker);
    padding-block: 0.625vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
  }
  @media screen and (width <= 1440px) {
    .catalog-getscroll {
      width: 32.9428989751vw;
    }
  }
  @media screen and (width <= 1025px) {
    .catalog-getscroll {
      width: 37.7604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .catalog-getscroll {
      width: 120vw;
    }
  }
  @media screen and (width <= 1440px) {
    .catalog-getscroll {
      padding-block: 0.878477306vw;
    }
  }
  @media screen and (width <= 1025px) {
    .catalog-getscroll {
      padding-block: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .catalog-getscroll {
      padding-block: 3.2vw;
    }
  }
  @media screen and (width <= 1440px) {
    .catalog-getscroll {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .catalog-getscroll {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .catalog-getscroll {
      font-size: 4.2666666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .catalog-getscroll {
      width: 100%;
    }
  }
  .catalog-getscroll[hidden] {
    display: none !important;
  }
  @font-face {
    font-family: "YesevaOne";
    src: url("/assets/fonts/YesevaOne/YesevaOne-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "IBMPlexSans";
    src: url("/assets/fonts/IBMPlexSans/IBMPlexSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "IBMPlexSans";
    src: url("/assets/fonts/IBMPlexSans/IBMPlexSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "IBMPlexSans";
    src: url("/assets/fonts/IBMPlexSans/IBMPlexSans-Italic.ttf") format("truetype");
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
  }
  :root {
    /*----------GRAY-----------*/
    --gray-black: #0D0D0D;
    --gray-darker: #262626;
    --gray-dark: #4D4D4D;
    --gray-medium: #8C8C99;
    --gray-light: #D9D9D9;
    --gray-lighter: #F7F7F7;
    --gray-white: #FFFFFF;
    /*----------COLOR1-----------*/
    --color1-darker: #4c3c34;
    --color1-dark: #8F7F6E;
    --color1-main: #A89076;
    --color1-light: #E3DCD4;
    --color1-lighter: #F7F5F2;
    /*----------COLOR2-----------*/
    --color2-darker: #331E17;
    --color2-dark: #4D3026;
    --color2-main: #734839;
    --color2-light: #A67B6C;
    --color2-lighter: #F2D7CE;
    /*----------GRADIENT-----------*/
    --gradient1-dark: linear-gradient(90deg, #4C3C34 0%, #A89076 100%);
    --gradient1-main: linear-gradient(90deg, #A89076 0%, #F7F5F2 100%);
    --gradient1-light: linear-gradient(90deg, #E3DCD4 0%, #F7F5F2 100%);
    /*----------BACKGROUND-----------*/
    --bg-light: #FFFFFF;
    --bg-dark: #262626;
    --bg-gradient: linear-gradient(90deg, #D9F2FF 0%, #B6D4F2 100%);
    /*----------ERROR-----------*/
    --error-dark: #CC2929;
    --error-medium: #FFA6A6;
    --error-light: #FCC;
    /*----------ALERT-----------*/
    --alert-dark: #BFBF00;
    --alert-medium: #D9D998;
    --alert-light: #E5E573;
    /*----------SUCCESS-----------*/
    --success-dark: #0E8C0E;
    --success-medium: #98D998;
    --success-light: #C3E5C3;
    /*----------DISABLE-----------*/
    --disable-dark: #343434;
    --disable-medium: #8C8C8C;
    --disable-light: #D9D9D9;
    /*----------TRANSPARENT-----------*/
    --transparent: transparent;
    /*----------SOCIALS-----------*/
    --socials-in: radial-gradient(230.93% 230.93% at 102.01% 2.03%, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 60%, #1B2AF0 83%, #002AFF 88%);
    --socials-wt: #48C95F;
    --socials-tg: #27A6E5;
    --socials-vk: #0077FF;
    --socials-ya: #FC3F1D;
    /*----------UNIQUE-----------*/
    --uniq-dark: #332E31;
    --uniq-green: #1F6739;
    --uniq-blue: #515ECC;
    --uniq-violet: #7D31DE;
    --uniq-purple: #C279A3;
    --uniq-pink: #F9AFCA;
    --uniq-red: #E34530;
    --uniq-orange: #E57A45;
    --uniq-gold: #D9BA21;
    --uniq-light: #D9D9D7;
  }
  :root {
    --shadow-near: 0px 0px 10px 2px #000B401A;
    --shadow-medium: 0px 0px 25px 5px #000B4012;
    --shadow-far: 0px 0px 40px 5px #000B400D;
  }
}
/* Utility Classes */
@layer utilities {
  .debug * {
    outline: 1px solid rgba(255, 0, 0, 0.2);
  }
  .container {
    margin-inline: 4.375vw;
  }
  @media screen and (width <= 1440px) {
    .container {
      margin-inline: 3.0014641288vw;
    }
  }
  @media screen and (width <= 1025px) {
    .container {
      margin-inline: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .container {
      margin-inline: 3.2vw;
    }
  }
  .wrapper {
    padding-inline: 4.375vw;
  }
  @media screen and (width <= 1440px) {
    .wrapper {
      padding-inline: 3.0014641288vw;
    }
  }
  @media screen and (width <= 1025px) {
    .wrapper {
      padding-inline: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .wrapper {
      padding-inline: 3.2vw;
    }
  }
  .hidden {
    display: none !important;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  .scroll-lock {
    overflow: hidden;
  }
  .accent-color {
    color: var(--color1-main);
  }
  .underline {
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-underline-offset: 0.2083333333vw;
    color: var(--color1-dark);
    transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1440px) {
    .underline {
      text-underline-offset: 0.2928257687vw;
    }
  }
  @media screen and (width <= 1025px) {
    .underline {
      text-underline-offset: 0.5208333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .underline {
      text-underline-offset: 1.0666666667vw;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .underline:hover {
      color: var(--color1-main);
    }
  }
  .underline:active {
    color: var(--color1-darker);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .w-full {
    width: 100% !important;
  }
  .w-fit {
    width: fit-content !important;
  }
  .h-full {
    height: 100% !important;
  }
  .h-fit {
    height: fit-content !important;
  }
  .content table {
    width: 100%;
    text-align: left;
    margin-bottom: 2.0833333333vw;
    border-spacing: 0.1041666667vw;
  }
  @media screen and (width <= 1440px) {
    .content table {
      border-spacing: 0.1464128843vw;
      margin-bottom: 2.9282576867vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table {
      border-spacing: 0.2604166667vw;
      margin-bottom: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table {
      border-spacing: 0.5333333333vw;
      margin-bottom: 10.6666666667vw;
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
  .content table th {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
    color: var(--gray-black);
    background-color: var(--gray-darker);
  }
  @media screen and (width <= 1440px) {
    .content table th {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table th {
      font-size: 1.6927083333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th {
      font-size: 3.4666666667vw;
    }
  }
  .content table th:first-child {
    border-top-left-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1440px) {
    .content table th:first-child {
      border-top-left-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table th:first-child {
      border-top-left-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:first-child {
      border-top-left-radius: 2.1333333333vw;
    }
  }
  .content table th:last-child {
    border-top-right-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1440px) {
    .content table th:last-child {
      border-top-right-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table th:last-child {
      border-top-right-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:last-child {
      border-top-right-radius: 2.1333333333vw;
    }
  }
  .content table tr:last-child td {
    border: none !important;
  }
  .content table th, .content table td {
    padding: 0.4166666667vw 0.625vw;
    border-bottom: 0.1041666667vw solid var(--gray-lighter);
  }
  .content table th > p, .content table td > p {
    width: auto !important;
  }
  @media screen and (width <= 1440px) {
    .content table th, .content table td {
      padding: 0.5856515373vw 0.878477306vw;
      border-width: 0.1464128843vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table th, .content table td {
      padding: 1.0416666667vw 1.5625vw;
      border-width: 0.2604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th, .content table td {
      padding: 2.1333333333vw 3.2vw;
      border-width: 0.5333333333vw;
    }
  }
  .content table td {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-color: var(--gray-white);
    color: var(--Gray-Dark);
  }
  @media screen and (width <= 1440px) {
    .content table td {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content table td {
      font-size: 1.6927083333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table td {
      font-size: 3.4666666667vw;
    }
  }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    color: var(--gray-darker);
    margin-top: 2.0833333333vw;
    margin-bottom: 1.25vw;
  }
  .content h1 span, .content h2 span, .content h3 span, .content h4 span, .content h5 span, .content h6 span {
    color: var(--gray-darker);
  }
  @media screen and (width <= 1440px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      margin-top: 2.9282576867vw;
      margin-bottom: 1.756954612vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      margin-top: 5.2083333333vw;
      margin-bottom: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      margin-top: 10.6666666667vw;
      margin-bottom: 6.4vw;
    }
  }
  .content h1 {
    font-size: 3.3333333333vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h1 {
      font-size: 4.6852122987vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h1 {
      font-size: 5.46875vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1 {
      font-size: 11.2vw;
    }
  }
  .content h1 span {
    font-size: 3.3333333333vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h1 span {
      font-size: 4.6852122987vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h1 span {
      font-size: 5.46875vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1 span {
      font-size: 11.2vw;
    }
  }
  .content h2 {
    font-size: 2.1875vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h2 {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h2 {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h2 {
      font-size: 7.4666666667vw;
    }
  }
  .content h2 span {
    font-size: 2.1875vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h2 span {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h2 span {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h2 span {
      font-size: 7.4666666667vw;
    }
  }
  .content h3 {
    font-size: 1.4583333333vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    font-family: var(--font-family-body);
  }
  @media screen and (width <= 1440px) {
    .content h3 {
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h3 {
      font-size: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h3 {
      font-size: 6.4vw;
    }
  }
  .content h3 span {
    font-size: 1.4583333333vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h3 span {
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h3 span {
      font-size: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h3 span {
      font-size: 6.4vw;
    }
  }
  .content h4 {
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h4 {
      font-size: 1.756954612vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h4 {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h4 {
      font-size: 5.3333333333vw;
    }
  }
  .content h4 span {
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1440px) {
    .content h4 span {
      font-size: 1.756954612vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h4 span {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h4 span {
      font-size: 5.3333333333vw;
    }
  }
  .content h5, .content h6 {
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    font-family: var(--font-family-body);
  }
  @media screen and (width <= 1440px) {
    .content h5, .content h6 {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h5, .content h6 {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h5, .content h6 {
      font-size: 5.3333333333vw;
    }
  }
  .content h5 span, .content h6 span {
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    font-family: var(--font-family-body);
  }
  @media screen and (width <= 1440px) {
    .content h5 span, .content h6 span {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content h5 span, .content h6 span {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h5 span, .content h6 span {
      font-size: 5.3333333333vw;
    }
  }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 :first-child {
    margin-top: 0;
  }
  .content p, .content span, .content div {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
    color: var(--gray-dark);
  }
  @media screen and (width <= 1440px) {
    .content p, .content span, .content div {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content p, .content span, .content div {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content p, .content span, .content div {
      font-size: 4.2666666667vw;
    }
  }
  .content a {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
    color: var(--color1-main);
    transition: color 0.3s ease;
    text-decoration: none;
  }
  @media screen and (width <= 1440px) {
    .content a {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content a {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content a {
      font-size: 4.2666666667vw;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .content a:hover {
      color: var(--color1-dark);
    }
  }
  .content a:active {
    transition: color 0.1s ease;
    color: var(--color1-darker);
  }
  .content li {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
    color: var(--gray-dark);
    list-style: disc;
    margin-left: 1.0416666667vw;
  }
  @media screen and (width <= 1440px) {
    .content li {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content li {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content li {
      font-size: 4.2666666667vw;
    }
  }
  @media screen and (width <= 1440px) {
    .content li {
      margin-left: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content li {
      margin-left: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content li {
      margin-left: 5.3333333333vw;
    }
  }
  .content ul {
    list-style-position: inside;
  }
  .content ul li {
    list-style: disc;
  }
  .content ol {
    list-style-position: inside;
    padding-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1440px) {
    .content ol {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content ol {
      padding-bottom: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .content ol {
      padding-bottom: 3.2vw;
    }
  }
  .content ol li {
    list-style: decimal;
    line-height: 165%;
  }
  .content img, .content video, .content iframe {
    width: 100%;
    object-fit: cover;
    user-select: none;
    z-index: 10;
  }
  .content p {
    text-align: left !important;
    padding-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1440px) {
    .content p {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content p {
      padding-bottom: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .content p {
      padding-bottom: 3.2vw;
    }
  }
  .content p:last-child {
    padding-bottom: 0;
  }
  .content iframe {
    height: 20.8333333333vw;
  }
  @media screen and (width <= 1440px) {
    .content iframe {
      height: 26.0614934114vw;
    }
  }
  @media screen and (width <= 1025px) {
    .content iframe {
      height: 35.15625vw;
    }
  }
  @media screen and (width <= 481px) {
    .content iframe {
      height: 51.7333333333vw;
    }
  }
  @media screen and (width <= 1025px) {
    .__jivoMobileButton {
      bottom: 8.3333333333vw !important;
    }
  }
  @media screen and (width <= 481px) {
    .__jivoMobileButton {
      bottom: 17.0666666667vw !important;
    }
  }
}
/* Component Library */
@layer components {
  /*----------FADE IN-----------*/
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  /*----------SLIDE IN-----------*/
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(-100%);
      opacity: 0;
    }
  }
  /*----------BOUNCE-----------*/
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-25px);
    }
  }
  /*----------PULSE-----------*/
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(0.95);
    }
  }
  /*----------ROTATE-----------*/
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  /*----------SHAKE-----------*/
  @keyframes shake {
    10%, 90% {
      transform: translateX(-1px);
    }
    20%, 80% {
      transform: translateX(2px);
    }
    30%, 50%, 70% {
      transform: translateX(-4px);
    }
    40%, 60% {
      transform: translateX(4px);
    }
  }
  /*----------FLIP-----------*/
  @keyframes flip {
    0% {
      transform: perspective(400px) rotateY(0);
    }
    100% {
      transform: perspective(400px) rotateY(360deg);
    }
  }
  /*----------SWING-----------*/
  @keyframes swing {
    20% {
      transform: rotate(15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    60% {
      transform: rotate(5deg);
    }
    80% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* Component imports */
}
/* Override Layer - for project-specific modifications */
@layer overrides {
  /* Project-specific overrides */
}
/* Development/Temporary Fixes */
.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.honey-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.swiper-pagination-bullets {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-bullets .swiper-pagination-bullet-active {
  margin: 0 !important;
  width: 1.0416666667vw;
  height: 0.2083333333vw;
  border-radius: 0;
  opacity: 1;
}
@media screen and (width <= 1440px) {
  .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 1.4641288433vw;
    height: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 2.6041666667vw;
    height: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 5.3333333333vw;
    height: 1.0666666667vw;
  }
}
.swiper-pagination-bullets:not(.product-details__pagination) {
  bottom: 2.2916666667vw !important;
}
@media screen and (width <= 1440px) {
  .swiper-pagination-bullets:not(.product-details__pagination) {
    bottom: 3.2210834553vw !important;
  }
}
@media screen and (width <= 1025px) {
  .swiper-pagination-bullets:not(.product-details__pagination) {
    bottom: 2.6041666667vw !important;
  }
}
@media screen and (width <= 481px) {
  .swiper-pagination-bullets:not(.product-details__pagination) {
    bottom: 5.3333333333vw !important;
  }
}
.swiper-pagination-bullets:not(.product-details__pagination) .swiper-pagination-bullet, .swiper-pagination-bullets:not(.product-details__pagination) .swiper-pagination-bullet-active {
  background-color: var(--gray-medium);
}
.swiper-pagination-bullets:not(.product-details__pagination) .swiper-pagination-bullet-active {
  background-color: var(--gray-lighter);
}
.swiper-pagination-bullets.product-details__pagination {
  top: auto !important;
  bottom: 0 !important;
}
.swiper-pagination-bullets.product-details__pagination .swiper-pagination-bullet, .swiper-pagination-bullets.product-details__pagination .swiper-pagination-bullet-active {
  background-color: var(--gray-medium);
}
.swiper-pagination-bullets.product-details__pagination .swiper-pagination-bullet-active {
  background-color: var(--gray-dark);
}
.date-input__input, .time-input__input {
  padding: 0.625vw;
  height: 2.5vw;
  align-self: flex-start;
  border: solid transparent;
  background: var(--gray-lighter);
  color: var(--color1-darker);
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  border-width: max(0.1041666667vw, 2px);
  transition: border-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .date-input__input, .time-input__input {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .date-input__input, .time-input__input {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .date-input__input, .time-input__input {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .date-input__input, .time-input__input {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .date-input__input, .time-input__input {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .date-input__input, .time-input__input {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1440px) {
  .date-input__input, .time-input__input {
    padding: 0.878477306vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .date-input__input, .time-input__input {
    padding: 1.5625vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .date-input__input, .time-input__input {
    padding: 3.2vw;
    height: 12.8vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .date-input__input:hover, .time-input__input:hover {
    border-color: var(--gray-light);
  }
}
.date-input__input:active, .date-input__input:focus, .time-input__input:active, .time-input__input:focus {
  background: var(--gray-white);
  border-color: var(--gray-light);
}
.date-input__input::-webkit-calendar-picker-indicator, .time-input__input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(38%) sepia(6%) saturate(10%) hue-rotate(180deg) brightness(90%) contrast(90%);
}
.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.fancybox__container {
  z-index: 2000 !important;
}
.header {
  position: fixed;
  height: 7.3958333333vw;
  z-index: 1098;
  top: 0;
  width: 100%;
  transition: top 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header {
    height: 9.663250366vw;
  }
}
@media screen and (width <= 1025px) {
  .header {
    height: 8.4635416667vw;
    z-index: 2002;
  }
}
@media screen and (width <= 481px) {
  .header {
    height: 17.3333333333vw;
  }
}
.header__content {
  position: relative;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibility 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.header__overlay.visible {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  visibility: visible;
}
.header__wrapper {
  display: flex;
  align-items: center;
}
.header__wrapper-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: var(--gray-light);
  z-index: 2;
}
@media screen and (width <= 1025px) {
  .header__wrapper-top {
    display: none;
  }
}
.header__wrapper-bottom {
  position: relative;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 5.3125vw;
  background-color: var(--gray-white);
  z-index: 1;
}
@media screen and (width <= 1440px) {
  .header__wrapper-bottom {
    height: 6.7349926794vw;
  }
}
@media screen and (width <= 1025px) {
  .header__wrapper-bottom {
    padding-inline: 1.0416666667vw;
    height: 8.4635416667vw;
  }
}
@media screen and (width <= 481px) {
  .header__wrapper-bottom {
    padding-inline: 2.1333333333vw;
    height: 17.3333333333vw;
  }
}
.header__top {
  padding: 0.2083333333vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (width <= 1440px) {
  .header__top {
    padding: 0.2928257687vw 0;
  }
}
@media screen and (width <= 1025px) {
  .header__top {
    display: none;
  }
}
.header__top-info {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .header__top-info {
    gap: 0.5856515373vw;
  }
}
.header__top-nav {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .header__top-nav {
    gap: 0.5856515373vw;
  }
}
.header__top-nav span {
  display: inline-flex;
  align-items: center;
  gap: 0.4166666667vw;
  cursor: pointer;
}
@media screen and (width <= 1440px) {
  .header__top-nav span {
    gap: 0.5856515373vw;
  }
}
.header__top li {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
}
@media screen and (width <= 1440px) {
  .header__top li {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .header__top li {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .header__top li {
    font-size: 3.4666666667vw;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .header__contacts {
    gap: 0.878477306vw;
  }
}
.header__bottom {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: min-content min-content 1fr max-content;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .header__bottom {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .header__bottom {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .header__bottom {
    padding: 1.0416666667vw 0;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: solid var(--gray-lighter);
    border-width: max(0.0520833333vw, 1px);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .header__bottom {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .header__bottom {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .header__bottom {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .header__bottom {
    padding: 2.1333333333vw 0;
  }
}
.header__bottom nav {
  padding: 1.0416666667vw 0;
  display: flex;
  align-items: center;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  gap: 0.625vw;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibility 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header__bottom nav {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .header__bottom nav {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom nav {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .header__bottom nav {
    padding: 1.4641288433vw 0;
  }
}
@media screen and (width <= 1025px) {
  .header__bottom nav {
    display: none;
  }
}
.header__bottom nav.visible {
  opacity: 1;
  visibility: visible;
}
.header__bottom-nav {
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .header__bottom-nav {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .header__bottom-nav {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom-nav {
    gap: 3.2vw;
  }
}
.header__bottom-link {
  text-transform: uppercase;
}
.header__bottom-link--sale {
  color: var(--error-dark);
}
.header__catalog {
  padding: 0.4166666667vw 0.8333333333vw 0.4166666667vw 0.625vw;
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
  height: 2.0833333333vw;
  background: var(--gray-lighter);
  text-transform: uppercase;
  color: var(--gray-darker);
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .header__catalog {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .header__catalog {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .header__catalog {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .header__catalog {
    padding: 0.5856515373vw 1.1713030747vw 0.5856515373vw 0.878477306vw;
    gap: 0.5856515373vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .header__catalog {
    display: none;
  }
}
.header__catalog svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .header__catalog svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .header__catalog svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header__catalog svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.header__catalog-close {
  display: none;
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .header__catalog-close {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .header__catalog-close {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header__catalog-close {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.header__catalog-cards {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .header__catalog-cards {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .header__catalog-cards {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header__catalog-cards {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__catalog:hover {
    background: var(--gray-light);
  }
}
.header__catalog:active {
  background: var(--gray-darker);
  color: var(--gray-white);
}
.header__catalog_active {
  background: var(--gray-darker);
  color: var(--gray-white);
}
.header__catalog_active .header__catalog-cards {
  display: none;
}
.header__catalog_active .header__catalog-close {
  display: block;
  color: var(--gray-white);
}
.header__tab {
  text-transform: uppercase;
  white-space: nowrap;
}
.header__tab span.tab__text {
  font-weight: 400;
}
.header__tab--sale .tab__text {
  color: var(--error-dark);
}
.header .dropdown-tab__menu {
  top: calc(100% + 0.2083333333vw);
  padding: 0.4166666667vw 0.8333333333vw;
  min-width: 7.8125vw;
  gap: 0.2083333333vw;
  background-color: var(--gray-light);
}
@media screen and (width <= 1440px) {
  .header .dropdown-tab__menu {
    padding: 0.5856515373vw 1.1713030747vw;
    min-width: 10.980966325vw;
    gap: 0.2928257687vw;
  }
}
.header .dropdown-tab__menu::after {
  display: none;
}
.header .dropdown-tab__option:nth-child(5n) {
  padding-bottom: 0;
  border-bottom: 0;
}
.header .dropdown-tab__tab {
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .header .dropdown-tab__tab {
    height: 2.3426061493vw;
  }
}
.header__logo {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  align-self: center;
  justify-self: center;
  opacity: 0;
  flex-shrink: 0;
  width: 13.5416666667vw;
  height: 3.8541666667vw;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header__logo {
    width: 14.1288433382vw;
    height: 4.0263543192vw;
  }
}
@media screen and (width <= 1025px) {
  .header__logo {
    position: static;
    transform: none;
    justify-self: center;
    width: 20.0520833333vw;
    height: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__logo {
    width: 41.0666666667vw;
    height: 11.7333333333vw;
  }
}
.header__logo.visible {
  opacity: 1;
  pointer-events: auto;
}
.header__logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.header__button {
  position: relative;
  padding: 0.625vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}
@media screen and (width <= 1440px) {
  .header__button {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__button {
    padding: 3.2vw;
  }
}
.header__button-icon {
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.header__button-icon svg {
  width: 1.25vw;
  height: 1.25vw;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header__button-icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button-icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header__button-icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.header__button-menu {
  display: none !important;
}
@media screen and (width <= 1025px) {
  .header__button-menu {
    display: flex !important;
  }
}
.header__button-search {
  width: 2.5vw !important;
}
@media screen and (width <= 1440px) {
  .header__button-search {
    width: 3.513909224vw !important;
  }
}
@media screen and (width <= 1025px) {
  .header__button-search {
    width: 6.25vw !important;
  }
}
@media screen and (width <= 481px) {
  .header__button-search {
    width: 12.8vw !important;
  }
}
.header__button-search--desktop {
  position: absolute;
  left: -2.9166666667vw;
}
@media screen and (width <= 1440px) {
  .header__button-search--desktop {
    left: -4.0995607613vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button-search--desktop {
    display: none !important;
  }
}
.header__button-search--mobile {
  display: none !important;
  justify-self: end;
}
@media screen and (width <= 1025px) {
  .header__button-search--mobile {
    display: flex !important;
  }
}
.header__button-badge {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success-dark);
  border-radius: 100%;
  color: var(--gray-white);
  opacity: 0;
}
@media screen and (width <= 1440px) {
  .header__button-badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button-badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .header__button-badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button-badge {
    right: 6.5104166667vw;
  }
}
@media screen and (width <= 481px) {
  .header__button-badge {
    right: 2.6666666667vw;
  }
}
.header__button-badge.authorized {
  opacity: 1;
}
.header__button-badge svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .header__button-badge svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .header__button-badge svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .header__button-badge svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.header__menu {
  position: relative;
  padding: 0.8333333333vw 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.4166666667vw;
  width: fit-content;
  height: 100%;
  z-index: 4;
  background-color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .header__menu {
    padding: 0;
    gap: 0;
  }
}
@media screen and (width <= 1025px) {
  .header__menu {
    display: none;
  }
}
.header__menu .btn-menu-size_m {
  padding: 0 0.5208333333vw;
}
@media screen and (width <= 1440px) {
  .header__menu .btn-menu-size_m {
    padding: 0 0.7320644217vw;
  }
}
@media screen and (width <= 1025px) {
  .header__menu .btn-menu-size_m {
    padding: 0 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .header__menu .btn-menu-size_m {
    padding: 0 2.6666666667vw;
  }
}
.header__search {
  position: absolute;
  display: flex;
  align-items: center;
  width: calc(100% - 18.1770833333vw);
  height: 100%;
  background: var(--gray-white);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 1440px) {
  .header__search {
    width: calc(100% - 23.2796486091vw);
  }
}
.header__search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (width <= 1025px) {
  .header__search-form {
    display: none;
  }
}
.header__search-input {
  width: 100%;
}
.header__search.visible {
  opacity: 1;
  pointer-events: auto;
}
.header__search-result {
  position: absolute;
  top: -50%;
  left: 0;
  padding: 2.0833333333vw 4.375vw 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 5.4166666667vw;
  height: fit-content;
  max-height: 68dvh;
  background: var(--gray-white);
  transition: top 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header__search-result {
    padding: 2.9282576867vw 3.0014641288vw 0;
    min-height: 7.6134699854vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-result {
    display: none;
  }
}
.header__search-result .header__search-list-wrap {
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.header__search-result.visible {
  top: 100%;
}
.header__search-result.visible .header__search-list-wrap {
  opacity: 1;
}
.header__search-text {
  margin-bottom: 1.0416666667vw;
  color: var(--gray-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .header__search-text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__search-text {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .header__search-text {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-text {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__search-text {
    margin-bottom: 5.3333333333vw;
  }
}
.header__search-text.highlighted {
  font-size: 1.4583333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-heading);
}
@media screen and (width <= 1440px) {
  .header__search-text.highlighted {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-text.highlighted {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header__search-text.highlighted {
    font-size: 6.4vw;
  }
}
.header__search-list-wrap {
  margin-bottom: 1.0416666667vw;
  overflow-Y: auto;
  overscroll-behavior: contain;
}
@media screen and (width <= 1440px) {
  .header__search-list-wrap {
    margin-bottom: 1.1713030747vw;
  }
}
.header__search-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1.0416666667vw;
  column-gap: 0.625vw;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .header__search-list {
    row-gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-list {
    row-gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__search-list {
    row-gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .header__search-list {
    column-gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .header__search-list {
    column-gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__search-list {
    column-gap: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .header__search-list {
    row-gap: 0.8333333333vw;
    column-gap: 0.625vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1440px) {
  .header__search-list {
    row-gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1025px) {
  .header__search-list {
    row-gap: 2.0833333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 481px) {
  .header__search-list {
    row-gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1440px) {
  .header__search-list {
    column-gap: 0.878477306vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1025px) {
  .header__search-list {
    column-gap: 1.5625vw;
  }
}
@media screen and (width <= 1440px) and (width <= 481px) {
  .header__search-list {
    column-gap: 3.2vw;
  }
}
.header__search-list.hidden {
  opacity: 0;
}
.header__search-submit {
  width: 2.5vw !important;
}
@media screen and (width <= 1440px) {
  .header__search-submit {
    width: 3.513909224vw !important;
  }
}
@media screen and (width <= 1025px) {
  .header__search-submit {
    width: 6.25vw !important;
  }
}
@media screen and (width <= 481px) {
  .header__search-submit {
    width: 12.8vw !important;
  }
}
.header__search-count {
  margin-bottom: 1.0416666667vw;
  flex-shrink: 0;
}
@media screen and (width <= 1440px) {
  .header__search-count {
    margin-bottom: 1.1713030747vw;
  }
}
.header__profile-authorized {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .header__profile-authorized {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .header__profile-authorized {
    right: 6.5104166667vw;
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .header__profile-authorized {
    right: 2.6666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.header__profile-authorized svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .header__profile-authorized svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .header__profile-authorized svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .header__profile-authorized svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.0520833333vw, 1px);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .btn {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .btn {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .btn {
    border-width: max(0.2666666667vw, 1px);
  }
}
.btn__text {
  white-space: nowrap;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__icon svg {
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn__loader {
  display: none;
}
.btn__text--loader {
  display: none;
}
.btn.loading .btn__loader, .btn.loading .btn__text--loader {
  display: block !important;
}
.btn.loading .btn__text, .btn.loading .btn__icon {
  display: none;
}
.btn-size_l {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-size_l {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    font-size: 3.4666666667vw;
  }
}
.btn-size_m {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-size_m {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    font-size: 3.4666666667vw;
  }
}
.btn-size_s {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-size_s {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    font-size: 3.4666666667vw;
  }
}
.btn-size_xs {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-size_xs {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    font-size: 3.4666666667vw;
  }
}
.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color1-dark);
  }
}
.btn-primary:active {
  background: var(--color1-darker);
}
.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--disable-light);
}
.btn-secondary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.btn-secondary:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-accent {
  background: var(--color2-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover {
    background: var(--color2-main);
  }
}
.btn-accent:active {
  background: var(--color2-darker);
}
.btn-accent:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-gray {
  background: var(--gray-black);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gray:hover {
    background: var(--gray-dark);
  }
}
.btn-gray:active {
  background: var(--gray-darker);
}
.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-outline {
  background: transparent;
  color: var(--gray-darker);
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--color1-light);
    color: var(--gray-white);
    border-color: var(--color1-light);
  }
}
.btn-outline:active {
  background: var(--color1-dark);
  color: var(--gray-white);
  border-color: var(--color1-dark);
}
.btn-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.btn-monochrome {
  background: transparent;
  color: var(--gray-white);
  border-color: var(--gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .btn-monochrome:hover {
    background: var(--gray-light);
    color: var(--color1-dark);
    border-color: transparent;
  }
}
.btn-monochrome:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
  border-color: transparent;
}
.btn-monochrome:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-flat {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-flat:hover {
    background: var(--gray-lighter);
    color: var(--color1-dark);
  }
}
.btn-flat:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-size_l {
  height: 2.9166666667vw;
  padding: 0 1.25vw;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l {
    height: 4.0995607613vw;
    padding: 0 1.756954612vw;
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l {
    height: 7.2916666667vw;
    padding: 0 3.125vw;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    height: 14.9333333333vw;
    padding: 0 6.4vw;
    gap: 3.2vw;
  }
}
.btn-size_l:has(.btn__icon_left) {
  padding-left: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 5.3333333333vw;
  }
}
.btn-size_l:has(.btn__icon_right) {
  padding-right: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 5.3333333333vw;
  }
}
.btn-size_l:has(.btn__icon_center) {
  padding: 0 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 4.2666666667vw;
  }
}
.btn-size_l .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_l .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_l .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_l .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_m {
  height: 2.5vw;
  padding: 0 1.0416666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m {
    height: 3.513909224vw;
    padding: 0 1.4641288433vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m {
    height: 6.25vw;
    padding: 0 2.6041666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    height: 12.8vw;
    padding: 0 5.3333333333vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_m:has(.btn__icon_left) {
  padding-left: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 4.2666666667vw;
  }
}
.btn-size_m:has(.btn__icon_right) {
  padding-right: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 4.2666666667vw;
  }
}
.btn-size_m:has(.btn__icon_center) {
  padding: 0 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 3.2vw;
  }
}
.btn-size_m .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_m .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_m .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_m .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_s {
  height: 2.0833333333vw;
  padding: 0 0.625vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s {
    height: 2.9282576867vw;
    padding: 0 0.878477306vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s {
    height: 5.2083333333vw;
    padding: 0 1.5625vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    height: 10.6666666667vw;
    padding: 0 3.2vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_s:has(.btn__icon_left) {
  padding-left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 3.2vw;
  }
}
.btn-size_s:has(.btn__icon_right) {
  padding-right: 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 3.2vw;
  }
}
.btn-size_s:has(.btn__icon_center) {
  padding: 0 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 2.1333333333vw;
  }
}
.btn-size_s .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_s .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-size_s .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_s .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_xs {
  height: 1.6666666667vw;
  padding: 0.3125vw 0.46875vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs {
    height: 4.1666666667vw;
    padding: 0 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    height: 8.5333333333vw;
    padding: 0 3.2vw;
    gap: 1.0666666667vw;
  }
}
.btn-size_xs:has(.btn__icon_left) {
  padding-left: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 2.1333333333vw;
  }
}
.btn-size_xs:has(.btn__icon_right) {
  padding-right: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 2.1333333333vw;
  }
}
.btn-size_xs:has(.btn__icon_center) {
  padding: 0 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 2.1333333333vw;
  }
}
.btn-size_xs .btn__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs .btn__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs .btn__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs .btn__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-size_xs .btn__loader {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-size_xs .btn__loader {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-size_xs .btn__loader {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs .btn__loader {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-theme_dark.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-primary:hover {
    background: var(--color1-light);
  }
}
.btn-theme_dark.btn-primary:active {
  background: var(--color1-dark);
}
.btn-theme_dark.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-accent {
  background: var(--color2-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-accent:hover {
    background: var(--color2-main);
  }
}
.btn-theme_dark.btn-accent:active {
  background: var(--color2-darker);
}
.btn-theme_dark.btn-accent:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-secondary {
  background: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-secondary:hover {
    background: var(--gray-medium);
  }
}
.btn-theme_dark.btn-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
}
.btn-theme_dark.btn-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-theme_dark.btn-gray {
  background: var(--gray-white);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-gray:hover {
    background: var(--gray-light);
  }
}
.btn-theme_dark.btn-gray:active {
  background: var(--gray-medium);
}
.btn-theme_dark.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-light);
  color: var(--gray-medium);
}
.btn-theme_dark.btn-outline {
  background: transparent;
  color: var(--gray-white);
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-outline:hover {
    background: var(--color1-light);
    border-color: var(--color1-light);
  }
}
.btn-theme_dark.btn-outline:active {
  background: var(--color1-dark);
  border-color: var(--color1-dark);
}
.btn-theme_dark.btn-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.btn-theme_dark.btn-monochrome {
  background: transparent;
  color: var(--gray-white);
  border-color: var(--gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-monochrome:hover {
    background: var(--gray-medium);
  }
}
.btn-theme_dark.btn-monochrome:active {
  background: var(--gray-darker);
}
.btn-theme_dark.btn-monochrome:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.btn-theme_dark.btn-flat {
  background: transparent;
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-flat:hover {
    background: var(--gray-dark);
    color: var(--color1-lighter);
  }
}
.btn-theme_dark.btn-flat:active {
  background: var(--gray-darker);
  color: var(--color1-light);
  border-color: var(--gray-dark);
}
.btn-theme_dark.btn-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.tab {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .tab {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .tab {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tab {
    border-width: max(0.5333333333vw, 2px);
  }
}
.tab__text {
  margin-inline: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab__text {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab__text {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__text {
    margin-inline: 1.0666666667vw;
  }
}
.tab__icon-left, .tab__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .tab__icon-left, .tab__icon-right {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .tab__icon-left, .tab__icon-right {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab__icon-left, .tab__icon-right {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab__badge {
  height: 0.8333333333vw;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  background: var(--error-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.tab__badge.hidden {
  display: none;
}
@media screen and (width <= 1440px) {
  .tab__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-primary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-primary:hover {
    color: var(--color1-main);
  }
}
.tab-primary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-primary.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
.tab-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-secondary {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-secondary:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.tab-secondary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-secondary.active {
  cursor: default;
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
.tab-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-outline {
  background: transparent;
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .tab-outline:hover {
    background: var(--gray-lighter);
    border-color: var(--color1-light);
    color: var(--gray-dark);
  }
}
.tab-outline:active {
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-black);
}
.tab-outline.active {
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: var(--gray-darker);
}
.tab-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  border-bottom-color: var(--color1-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-underline:hover {
    border-bottom-color: var(--color1-light);
  }
}
.tab-underline:active {
  border-bottom-color: var(--color1-main);
}
.tab-underline.active {
  cursor: default;
  background: transparent;
  color: var(--color1-main);
  border-bottom-color: var(--color1-main);
}
.tab-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-flat:hover {
    color: var(--color1-main);
  }
}
.tab-flat:active {
  color: var(--color1-darker);
}
.tab-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-black);
}
.tab-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.tab-size_l {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-size_l {
    height: 4.0995607613vw;
    padding-inline: 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_l {
    height: 7.2916666667vw;
    padding-inline: 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l {
    height: 14.9333333333vw;
    padding-inline: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.tab-size_l .tab__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-size_l .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_l .tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l .tab__text {
    font-size: 4.2666666667vw;
  }
}
.tab-size_m {
  height: 2.5vw;
  padding-inline: 0.625vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab-size_m {
    height: 3.513909224vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_m {
    height: 6.25vw;
    padding-inline: 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m {
    height: 12.8vw;
    padding-inline: 3.2vw;
    gap: 1.0666666667vw;
  }
}
.tab-size_m .tab__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-size_m .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_m .tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m .tab__text {
    font-size: 4.2666666667vw;
  }
}
.tab-size_s {
  height: 2.0833333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab-size_s {
    height: 2.9282576867vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_s {
    height: 5.2083333333vw;
    padding-inline: 1.0416666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s {
    height: 10.6666666667vw;
    padding-inline: 2.1333333333vw;
    gap: 1.0666666667vw;
  }
}
.tab-size_s .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .tab-size_s .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_s .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s .tab__text {
    font-size: 3.4666666667vw;
  }
}
.tab-size_xs {
  height: 1.875vw;
  padding-inline: 0.2083333333vw;
  gap: 0;
}
@media screen and (width <= 1440px) {
  .tab-size_xs {
    height: 2.635431918vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_xs {
    height: 4.6875vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs {
    height: 9.6vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-size_xs .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .tab-size_xs .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_xs .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__text {
    font-size: 3.4666666667vw;
  }
}
.tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 1.0666666667vw;
  }
}
.tab-theme_dark.tab-primary {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-primary:hover {
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-primary:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.tab-theme_dark.tab-primary.active {
  cursor: default;
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-secondary {
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-secondary:hover {
    background: var(--gray-dark);
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--color1-main);
}
.tab-theme_dark.tab-secondary.active {
  cursor: default;
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-outline {
  background: transparent;
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-outline:hover {
    border-color: var(--gray-medium);
  }
}
.tab-theme_dark.tab-outline:active {
  background: var(--gray-dark);
  border-color: var(--gray-medium);
}
.tab-theme_dark.tab-outline.active {
  cursor: default;
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-underline:hover {
    border-bottom-color: var(--gray-medium);
  }
}
.tab-theme_dark.tab-underline:active {
  border-bottom-color: var(--gray-dark);
}
.tab-theme_dark.tab-underline.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
  border-bottom-color: var(--color1-main);
}
.tab-theme_dark.tab-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-theme_dark.tab-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-flat:hover {
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-flat:active {
  color: var(--color1-main);
}
.tab-theme_dark.tab-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
}
.tab-theme_dark.tab-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.text-input {
  /*----------CORE STYLE-----------*/
  /*----------LABEL POSITION-----------*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
.text-input__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-input__inner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.text-input__input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.text-input__icon {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .text-input__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.text-input__reset {
  position: absolute;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.text-input__reset-icon {
  color: var(--gray-light);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .text-input__reset-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__reset-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__reset-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.text-input__label {
  color: var(--gray-medium);
  margin-bottom: 0.1041666667vw;
  flex-shrink: 0;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__label {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__label {
    margin-bottom: 0.5333333333vw;
  }
}
.text-input__field {
  width: 100%;
  border: solid transparent;
  border-width: max(0.1041666667vw, 2px);
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), filter 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .text-input__field {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .text-input__field {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .text-input__field {
    border-width: max(0.5333333333vw, 2px);
  }
}
.text-input__field:focus {
  outline: none;
}
.text-input__field:disabled {
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(1);
}
.text-input__error-message {
  color: var(--error-dark);
  margin-top: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .text-input__error-message {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__error-message {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__error-message {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input__error-message {
    margin-top: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input__error-message {
    margin-top: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__error-message {
    margin-top: 0.5333333333vw;
  }
}
.text-input-pos_standard.text-input__label {
  display: block;
  margin-bottom: 0.1041666667vw;
  color: var(--gray-medium);
  order: -1;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .text-input-pos_standard.text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-pos_standard.text-input__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-pos_standard.text-input__label {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.5333333333vw;
  }
}
.text-input-pos_standard.text-input__wrapper {
  display: flex;
  flex-direction: column;
}
.text-input-pos_hidden.text-input__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-input-style_filled .text-input__field {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_filled .text-input__field:hover {
    border-color: var(--gray-light);
  }
}
.text-input-style_filled .text-input__field:focus {
  background: var(--gray-white);
  border-color: var(--gray-light);
}
.text-input-style_filled .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_filled .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_filled .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-style_outline .text-input__field {
  background: var(--gray-white);
  border-color: var(--gray-light);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_outline .text-input__field:hover {
    border-color: var(--color1-light);
  }
}
.text-input-style_outline .text-input__field:focus {
  border-color: var(--color1-main);
}
.text-input-style_outline .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_outline .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_outline .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-style_underline .text-input__field {
  background: transparent;
  border-bottom-color: var(--gray-light);
  color: var(--gray-darker);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_underline .text-input__field:hover {
    border-bottom-color: var(--color1-light);
  }
}
.text-input-style_underline .text-input__field:focus {
  border-bottom-color: var(--color1-main);
}
.text-input-style_underline .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_underline .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_underline .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-size_l .text-input__icon {
  left: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__icon {
    left: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__icon {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__icon {
    left: 4.2666666667vw;
  }
}
.text-input-size_l .text-input__reset {
  right: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__reset {
    right: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__reset {
    right: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__reset {
    right: 4.2666666667vw;
  }
}
.text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.5vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 12.8vw;
  }
}
.text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.5vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 12.8vw;
  }
}
.text-input-size_l .text-input__field {
  height: 2.9166666667vw;
  padding: 0 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input-size_l .text-input__field {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_l .text-input__field {
    height: 7.2916666667vw;
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    height: 14.9333333333vw;
    padding: 0 4.2666666667vw;
  }
}
.text-input-size_m .text-input__icon {
  left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__icon {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__icon {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__icon {
    left: 3.2vw;
  }
}
.text-input-size_m .text-input__reset {
  right: 0.625vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__reset {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__reset {
    right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__reset {
    right: 3.2vw;
  }
}
.text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.2916666667vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.2210834553vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 11.7333333333vw;
  }
}
.text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.2916666667vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.2210834553vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 11.7333333333vw;
  }
}
.text-input-size_m .text-input__field {
  height: 2.5vw;
  padding: 0 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input-size_m .text-input__field {
    height: 3.513909224vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_m .text-input__field {
    height: 6.25vw;
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    height: 12.8vw;
    padding: 0 4.2666666667vw;
  }
}
.text-input-size_s .text-input__icon {
  left: 0.5208333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__icon {
    left: 0.7320644217vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__icon {
    left: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__icon {
    left: 2.6666666667vw;
  }
}
.text-input-size_s .text-input__reset {
  right: 0.5208333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__reset {
    right: 0.7320644217vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__reset {
    right: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__reset {
    right: 2.6666666667vw;
  }
}
.text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 10.6666666667vw;
  }
}
.text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 10.6666666667vw;
  }
}
.text-input-size_s .text-input__field {
  height: 2.0833333333vw;
  padding: 0 0.625vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input-size_s .text-input__field {
    height: 2.9282576867vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_s .text-input__field {
    height: 5.2083333333vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    height: 10.6666666667vw;
    padding: 0 3.2vw;
  }
}
.text-input-size_xs .text-input__icon {
  left: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__icon {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__icon {
    left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__icon {
    left: 2.1333333333vw;
  }
}
.text-input-size_xs .text-input__reset {
  right: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__reset {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__reset {
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__reset {
    right: 2.1333333333vw;
  }
}
.text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 1.875vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.635431918vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 9.6vw;
  }
}
.text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 1.875vw;
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.635431918vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 9.6vw;
  }
}
.text-input-size_xs .text-input__field {
  height: 1.6666666667vw;
  padding: 0 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__field {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__field {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .text-input-size_xs .text-input__field {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .text-input-size_xs .text-input__field {
    height: 4.1666666667vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    height: 8.5333333333vw;
    padding: 0 3.2vw;
  }
}
.text-input-theme_dark .text-input__label {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__field {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_filled .text-input__field:hover {
    border-color: var(--gray-medium);
  }
}
.text-input-theme_dark.text-input-style_filled .text-input__field:focus {
  background: var(--gray-black);
  border-color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_filled .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__icon {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_outline .text-input__field {
  background: var(--gray-black);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_outline .text-input__field:hover {
    border-color: var(--color1-darker);
  }
}
.text-input-theme_dark.text-input-style_outline .text-input__field:focus {
  border-color: var(--color1-main);
}
.text-input-theme_dark.text-input-style_outline .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_outline .text-input__icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_outline .text-input__reset-icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_underline .text-input__field {
  background: transparent;
  border-bottom-color: var(--gray-dark);
  color: var(--gray-white);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_underline .text-input__field:hover {
    border-bottom-color: var(--color1-darker);
  }
}
.text-input-theme_dark.text-input-style_underline .text-input__field:focus {
  border-bottom-color: var(--color1-main);
}
.text-input-theme_dark.text-input-style_underline .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_underline .text-input__icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_underline .text-input__reset-icon {
  color: var(--gray-medium);
}
/* Show reset button when input has value */
.text-input__field:not(:placeholder-shown) ~ .text-input__reset, .text-input__field.has-value ~ .text-input__reset {
  pointer-events: auto;
  opacity: 1;
}
.btn-menu {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  position: relative;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .btn-menu {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .btn-menu {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-menu {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn-menu__badge, .btn-menu__logged-in {
  position: absolute;
  top: 0;
  right: 0;
  height: 0.8333333333vw;
  width: fit-content;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  max-width: 10ch;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  border-radius: 0.625vw;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1440px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .btn-menu__badge, .btn-menu__logged-in {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu__badge, .btn-menu__logged-in {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge, .btn-menu__logged-in {
    border-radius: 3.2vw;
  }
}
@supports (-webkit-line-clamp: 2) {
  .btn-menu__badge, .btn-menu__logged-in {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1440px) {
  .btn-menu__badge, .btn-menu__logged-in {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu__badge, .btn-menu__logged-in {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
    font-size: 0.46875vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .btn-menu__badge, .btn-menu__logged-in {
    font-size: 2.4vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge, .btn-menu__logged-in {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.btn-menu__badge.hidden, .btn-menu__logged-in.hidden {
  display: none;
}
.btn-menu__badge {
  background: var(--error-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-menu__logged-in {
  padding-inline: 0;
  background: var(--success-dark);
}
.btn-menu__logged-in svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-menu__logged-in svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu__logged-in svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__logged-in svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-menu__text {
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-menu__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-menu-flat {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-menu-flat:hover {
    background: var(--gray-lighter);
  }
}
.btn-menu-flat:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-menu-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-menu-flat.active {
  background: var(--gray-lighter);
  color: var(--color1-darker);
}
.btn-menu-secondary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-menu-secondary:hover {
    background: var(--color1-lighter);
  }
}
.btn-menu-secondary:active {
  background: var(--color1-light);
  color: var(--color1-dark);
}
.btn-menu-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-menu-secondary.active {
  background: var(--gray-lighter);
  color: var(--color1-darker);
}
.btn-menu-size_l {
  height: 2.9166666667vw;
  padding: 0 0.8333333333vw;
  gap: 0.1041666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .btn-menu-size_l {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_l {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .btn-menu-size_l {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_l {
    height: 7.2916666667vw;
    padding: 0 2.0833333333vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l {
    height: 14.9333333333vw;
    padding: 0 4.2666666667vw;
    gap: 0.5333333333vw;
  }
}
.btn-menu-size_l:has(.btn-menu__text) {
  padding: 0 0.3125vw;
}
@media screen and (width <= 1440px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding: 0 0.439238653vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding: 0 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding: 0 1.6vw;
  }
}
.btn-menu-size_m {
  height: 2.5vw;
  padding: 0 0.8333333333vw;
  gap: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1440px) {
  .btn-menu-size_m {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_m {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .btn-menu-size_m {
    height: 3.513909224vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_m {
    height: 6.25vw;
    padding: 0 2.0833333333vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    height: 12.8vw;
    padding: 0 4.2666666667vw;
    gap: 0.5333333333vw;
  }
}
.btn-menu-size_m:has(.btn-menu__text) {
  padding: 0 0.3125vw;
}
@media screen and (width <= 1440px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding: 0 0.439238653vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding: 0 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding: 0 1.6vw;
  }
}
.btn-menu-size_s {
  height: 2.0833333333vw;
  padding: 0 0.8333333333vw;
  gap: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1440px) {
  .btn-menu-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_s {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_s {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .btn-menu-size_s {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-menu-size_s {
    height: 5.2083333333vw;
    padding: 0 2.0833333333vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_s {
    height: 10.6666666667vw;
    padding: 0 4.2666666667vw;
    gap: 0.5333333333vw;
  }
}
.btn-menu-size_s .btn-menu__text {
  display: none;
}
.btn-menu-theme_dark.btn-menu-secondary {
  background: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-menu-theme_dark.btn-menu-secondary:hover {
    background: var(--gray-medium);
  }
}
.btn-menu-theme_dark.btn-menu-secondary:active {
  background: var(--gray-darker);
  color: var(--color1-light);
  border-color: var(--gray-dark);
}
.btn-menu-theme_dark.btn-menu-secondary.active {
  background: var(--gray-dark);
  color: var(--color1-light);
}
.btn-menu-theme_dark.btn-menu-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-menu-theme_dark.btn-menu-flat {
  background: transparent;
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-menu-theme_dark.btn-menu-flat:hover {
    background: var(--gray-dark);
  }
}
.btn-menu-theme_dark.btn-menu-flat:active {
  background: var(--gray-darker);
  color: var(--color1-light);
  border-color: var(--gray-dark);
}
.btn-menu-theme_dark.btn-menu-flat.active {
  background: var(--gray-dark);
  color: var(--color1-light);
}
.btn-menu-theme_dark.btn-menu-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-);
  color: var(--gray-dark);
  border-color: transparent;
}
.hero-slider {
  padding-top: 5.3125vw;
  height: 100vh;
}
@media screen and (width <= 1440px) {
  .hero-slider {
    padding-top: 6.7349926794vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider {
    padding-top: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider {
    padding-top: 17.0666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .hero-slider {
    height: clamp(40.9956076135vw, calc(100vh - 9.663250366vw), calc(100vh - 9.663250366vw));
  }
}
@media screen and (width <= 1025px) {
  .hero-slider {
    height: 60.546875vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider {
    min-height: 202.9333333333vw;
  }
}
.hero-slider__text {
  position: absolute;
  left: 4.375vw;
  bottom: 5.3125vw;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media screen and (width <= 1440px) {
  .hero-slider__text {
    left: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__text {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__text {
    left: 22.4vw;
  }
}
@media screen and (width <= 1440px) {
  .hero-slider__text {
    bottom: 5.5636896047vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__text {
    bottom: 9.8958333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__text {
    bottom: 28vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__text {
    transform: translateX(-50%);
    left: 50%;
    align-items: center;
  }
}
.hero-slider__title {
  font-size: 3.3333333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .hero-slider__title {
    font-size: 4.6852122987vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__title {
    font-size: 5.46875vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__title {
    font-size: 11.2vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__link.btn-size_m {
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    height: 2.0833333333vw;
    padding: 1.0416666667vw 1.5625vw 1.0416666667vw 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .hero-slider__link.btn-size_m {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .hero-slider__link.btn-size_m {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .hero-slider__link.btn-size_m {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .hero-slider__link.btn-size_m {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .hero-slider__link.btn-size_m {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .hero-slider__link.btn-size_m {
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__link.btn-size_m {
    padding: 2.1333333333vw 3.2vw 2.1333333333vw 4.2666666667vw;
  }
}
.hero-slider__link.btn-size_m svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .hero-slider__link.btn-size_m svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__link.btn-size_m svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__link.btn-size_m svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.hero-slider__swiper, .hero-slider__wrapper, .hero-slider .swiper-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero-slider__link {
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), border-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .hero-slider__link {
    left: 2.1875vw;
    bottom: 1.7708333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1440px) {
  .hero-slider__link {
    left: 3.074670571vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1025px) {
  .hero-slider__link {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 481px) {
  .hero-slider__link {
    left: 11.2vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1440px) {
  .hero-slider__link {
    bottom: 2.4890190337vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1025px) {
  .hero-slider__link {
    bottom: 3.6458333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 481px) {
  .hero-slider__link {
    bottom: 13.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__link {
    gap: 0.8333333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .hero-slider__link {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .hero-slider__link {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .hero-slider__link {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__link {
    align-items: center;
  }
}
.hero-slider__wrapper {
  position: relative;
}
.hero-slider__buttons {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 9.375vw);
  z-index: 1;
  pointer-events: none;
}
@media screen and (width <= 1440px) {
  .hero-slider__buttons {
    width: calc(100% - 9.663250366vw);
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__buttons {
    display: none;
  }
}
.hero-slider__button {
  color: var(--gray-white);
  z-index: 1;
  pointer-events: all;
}
.hero-slider__path {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
}
@media (hover: hover) and (pointer: fine) {
  .hero-slider__path:hover ~ .hero-slider__content .hero-slider__link {
    background: var(--gray-light);
    color: var(--color1-dark);
    border-color: transparent;
  }
}
.hero-slider__path:active ~ .hero-slider__content .hero-slider__link {
  background: var(--color1-lighter);
  color: var(--color1-darker);
  border-color: transparent;
}
.hero-slider__content {
  position: absolute;
  bottom: 2.1875vw;
  left: 4.2708333333vw;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .hero-slider__content {
    bottom: 3.2210834553vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__content {
    bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__content {
    bottom: 14.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .hero-slider__content {
    left: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__content {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__content {
    left: 21.8666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .hero-slider__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slider__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slider__content {
    left: 50%;
    transform: translate(-50%, 0);
    align-items: center;
  }
  .hero-slider__content .hero-slider__title {
    text-align: center !important;
  }
}
.hero-slide {
  position: relative;
  padding: 2.1875vw 4.375vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
@media screen and (width <= 1440px) {
  .hero-slide {
    padding: 3.2210834553vw 3.0014641288vw;
  }
}
@media screen and (width <= 1025px) {
  .hero-slide {
    padding: 2.6041666667vw 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .hero-slide {
    padding: 14.9333333333vw 4.2666666667vw;
    justify-content: center;
  }
}
.hero-slide__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.36) 0%, rgba(64, 64, 64, 0.15) 50%, rgba(13, 13, 13, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-slide img, .hero-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-slide__image_mobile, .hero-slide__video_mobile {
  display: none;
}
@media screen and (width <= 481px) {
  .hero-slide__image_mobile, .hero-slide__video_mobile {
    display: block;
  }
}
@media screen and (width <= 481px) {
  .hero-slide__image_desktop.has-mobile, .hero-slide__video_desktop.has-mobile {
    display: none;
  }
}
.ad-section__section {
  background: var(--gray-white);
  padding-top: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .ad-section__section {
    padding-top: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .ad-section__section {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .ad-section__section {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .ad-section__section {
    padding-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .ad-section__section {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .ad-section__section {
    padding-bottom: 10.6666666667vw;
  }
}
.ad-section__slider {
  position: relative;
}
.ad-section__swiper {
  height: 25vw;
}
@media screen and (width <= 1440px) {
  .ad-section__swiper {
    height: 25.7686676428vw;
  }
}
@media screen and (width <= 1025px) {
  .ad-section__swiper {
    height: 26.5625vw;
  }
}
@media screen and (width <= 481px) {
  .ad-section__swiper {
    height: 64vw;
  }
}
.ad-section__buttons {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 4.6875vw);
  z-index: 1;
  pointer-events: none;
}
@media screen and (width <= 1440px) {
  .ad-section__buttons {
    width: calc(100% - 6.588579795vw);
  }
}
@media screen and (width <= 1025px) {
  .ad-section__buttons {
    display: none;
  }
}
.ad-section__button {
  z-index: 1;
  pointer-events: all;
}
.ad-section__slide {
  position: relative;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .ad-section__slide:hover .ad-section__slide-mask {
    opacity: 0;
  }
}
.ad-section__link, .ad-section__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ad-section__mask {
  background: var(--gray-black);
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.ad-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.ad-section__image--mobile {
  display: none;
}
@media screen and (width <= 481px) {
  .ad-section__image--mobile {
    display: block;
  }
}
@media screen and (width <= 481px) {
  .ad-section__image--desktop.has-mobile {
    display: none;
  }
}
.main-banner {
  display: flex;
  flex-direction: column;
}
.main-banner__wrapper {
  position: relative;
  height: 44.1666666667vw;
}
@media screen and (width <= 1440px) {
  .main-banner__wrapper {
    height: 48.3162518302vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__wrapper {
    height: 54.6875vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__wrapper {
    height: 185.8666666667vw;
  }
}
.main-banner__slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.main-banner__swiper, .main-banner .swiper-slide {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.main-banner__wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 5.3125vw 4.375vw;
}
@media screen and (width <= 1440px) {
  .main-banner__wrapper {
    padding: 6.0029282577vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__wrapper {
    padding: 10.4166666667vw 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__wrapper {
    padding: 26.6666666667vw 5.2vw;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}
.main-banner__buttons {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 9.375vw);
  z-index: 1;
  pointer-events: none;
}
@media screen and (width <= 1440px) {
  .main-banner__buttons {
    width: calc(100% - 9.663250366vw);
  }
}
@media screen and (width <= 1025px) {
  .main-banner__buttons {
    display: none;
  }
}
.main-banner__button {
  color: var(--gray-white);
  z-index: 1;
  pointer-events: all;
}
.main-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
  width: fit-content;
  z-index: 2;
}
@media screen and (width <= 1440px) {
  .main-banner__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    align-items: center;
  }
}
.main-banner__content--title {
  font-size: 3.3333333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .main-banner__content--title {
    font-size: 4.6852122987vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__content--title {
    font-size: 5.46875vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content--title {
    font-size: 11.2vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content--title {
    text-align: center;
  }
}
.main-banner__link {
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), border-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1025px) {
  .main-banner__link {
    left: 2.0833333333vw;
    bottom: 3.6458333333vw;
    gap: 0.8333333333vw;
    height: 2.0833333333vw;
    padding-inline: 0.4166666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .main-banner__link {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .main-banner__link {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .main-banner__link {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .main-banner__link {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .main-banner__link {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .main-banner__link {
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .main-banner__link {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .main-banner__link {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .main-banner__link {
    padding-inline: 2.1333333333vw;
  }
}
.main-banner__slide {
  position: relative;
}
.main-banner__path {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
}
@media (hover: hover) and (pointer: fine) {
  .main-banner__path:hover ~ .main-banner__content .main-banner__link {
    background: var(--gray-light);
    color: var(--color1-dark);
    border-color: transparent;
  }
}
.main-banner__path:active ~ .main-banner__content .main-banner__link {
  background: var(--color1-lighter);
  color: var(--color1-darker);
  border-color: transparent;
}
.main-banner__content {
  position: absolute;
  bottom: 2.1875vw;
  left: 4.2708333333vw;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .main-banner__content {
    bottom: 3.2210834553vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__content {
    bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    bottom: 14.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .main-banner__content {
    left: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__content {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    left: 21.8666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .main-banner__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .main-banner__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .main-banner__content {
    left: 50%;
    transform: translate(-50%, 0);
    align-items: center;
  }
  .main-banner__content .hero-slider__title {
    text-align: center !important;
  }
}
.main-banner-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  background: linear-gradient(180deg, rgba(64, 64, 64, 0.01) 0%, rgba(13, 13, 13, 0.6) 100%);
}
.main-banner-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  z-index: -1;
}
.main-banner-slide__image--mobile {
  display: none;
}
@media screen and (width <= 481px) {
  .main-banner-slide__image--mobile {
    display: block;
  }
}
@media screen and (width <= 481px) {
  .main-banner-slide__image--desktop.has-mobile {
    display: none;
  }
}
.categories {
  padding: 4.1666666667vw 0;
}
@media screen and (width <= 1440px) {
  .categories {
    padding: 5.8565153734vw 0;
  }
}
@media screen and (width <= 1025px) {
  .categories {
    padding: 5.2083333333vw 0;
  }
}
@media screen and (width <= 481px) {
  .categories {
    padding: 0;
  }
}
.popular-slider .slider__title {
  color: var(--gray-black);
}
.product-card {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
  cursor: pointer;
  /*----------SIZES-----------*/
}
@media screen and (width <= 1440px) {
  .product-card {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card {
    gap: 3.2vw;
  }
}
.product-card__info {
  margin-bottom: 0.2928257687vw;
}
@media screen and (width <= 1440px) {
  .product-card__info {
    margin-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__info {
    margin-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__info {
    margin-bottom: 1.0666666667vw;
  }
}
.product-card__content-bottom {
  padding: 1.4583333333vw;
}
@media screen and (width <= 1440px) {
  .product-card__content-bottom {
    padding: 2.0497803807vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__content-bottom {
    display: none;
  }
}
.product-card__content-bottom span {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .product-card__content-bottom span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__content-bottom span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__content-bottom span {
    font-size: 3.4666666667vw;
  }
}
.product-card__link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__name {
  color: var(--gray-darker);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  font-family: var(--font-family-body);
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .product-card__name {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__name {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__name {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__name {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-family: var(--font-family-body);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card__name {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card__name {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card__name {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__name {
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    font-family: var(--font-family-body);
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .product-card__name {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .product-card__name {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .product-card__name {
    font-size: 2.9333333333vw;
  }
}
.product-card__images {
  position: relative;
  height: 100%;
}
.product-card__images.hover-enabled img {
  z-index: -1;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.product-card__images.hover-enabled img:first-of-type {
  z-index: 0;
}
.product-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card__content-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--gray-lighter);
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .product-card__content-bottom {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__content-bottom {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__content-bottom {
    gap: 1.0666666667vw;
  }
}
.product-card__badges {
  position: absolute;
  top: 0.625vw;
  left: 0.625vw;
  display: flex;
  gap: 0.4166666667vw;
  gap: 0.4166666667vw;
  top: 0.625vw;
  left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .product-card__badges {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__badges {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__badges {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card__badges {
    top: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__badges {
    top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__badges {
    top: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card__badges {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__badges {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__badges {
    left: 3.2vw;
  }
}
.product-card__button-favorite {
  position: absolute;
  top: 0.625vw;
  right: 0.625vw;
}
@media screen and (width <= 1440px) {
  .product-card__button-favorite {
    top: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__button-favorite {
    top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-favorite {
    top: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card__button-favorite {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__button-favorite {
    right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-favorite {
    right: 3.2vw;
  }
}
.product-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.product-card__img--back {
  opacity: 0;
}
.product-card__colors {
  margin: 0 0 0.1041666667vw 0.1041666667vw;
  display: flex;
  gap: 0.2083333333vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .product-card__colors {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__colors {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__colors {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card__colors {
    margin: 0 0 0.1464128843vw 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__colors {
    margin: 0 0 0.2604166667vw 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__colors {
    margin: 0 0 0.5333333333vw 0.5333333333vw;
  }
}
.product-card__color {
  position: relative;
  cursor: pointer;
  border-radius: 100%;
  outline-style: solid;
  outline-color: var(--gray-lighter);
  outline-width: max(0.0520833333vw, 1px);
  outline-offset: max(0.0520833333vw, 1px);
  transition: outline-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .product-card__color {
    outline-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .product-card__color {
    outline-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .product-card__color {
    outline-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .product-card__color {
    outline-offset: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .product-card__color {
    outline-offset: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .product-card__color {
    outline-offset: max(0.2666666667vw, 1px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-card__color:hover {
    outline-color: var(--gray-light);
  }
  .product-card__color:active {
    outline-color: var(--gray-medium);
  }
}
.product-card__prices {
  display: flex;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .product-card__prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card__prices {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__prices {
    gap: 2.1333333333vw;
  }
}
.product-card__price--actual {
  color: var(--gray-dark);
}
.product-card__price--old {
  color: var(--gray-medium);
  text-decoration: line-through;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__content-bottom, .product-card:hover .product-card__img--back {
    opacity: 0.8;
    visibility: visible;
  }
  .product-card:hover h3, .product-card:hover .product-card__name {
    color: var(--color1-dark);
  }
}
.product-card:active .product-card__content-bottom {
  background: var(--gray-light);
}
.product-card:active h3, .product-card:active .product-card__name {
  color: var(--color1-darker);
}
.product-card-size_m .product-card__content {
  width: 100%;
  height: 35.6770833333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_m .product-card__content {
    height: 36.6032210835vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__content {
    height: 76.171875vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_m .product-card__content {
    height: 165.8666666667vw;
  }
}
.product-card-size_m .product-card__prices {
  gap: 0.4166666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_m .product-card__prices {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__prices {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_m .product-card__prices {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card-size_m .product-card__prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__prices {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_m .product-card__prices {
    gap: 1.0666666667vw;
  }
}
.product-card-size_m .product-card__name {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_m .product-card__name {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__name {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_m .product-card__name {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__name {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card-size_m .product-card__name {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card-size_m .product-card__name {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card-size_m .product-card__name {
    font-size: 4.2666666667vw;
  }
}
.product-card-size_m .product-card__color {
  width: 1.1458333333vw;
  height: 1.1458333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_m .product-card__color {
    width: 1.6105417277vw;
    height: 1.6105417277vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_m .product-card__color {
    width: 1.8229166667vw;
    height: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_m .product-card__color {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.product-card-size_s .product-card__content {
  width: 100%;
  height: 35.6770833333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_s .product-card__content {
    height: 36.6032210835vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_s .product-card__content {
    height: 34.8958333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__content {
    height: 46.9333333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__content-top {
    display: none;
  }
}
.product-card-size_s .product-card__name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@supports (-webkit-line-clamp: 1) {
  .product-card-size_s .product-card__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1440px) {
  .product-card-size_s .product-card__name {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_s .product-card__name {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__name {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_s .product-card__name {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card-size_s .product-card__name {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card-size_s .product-card__name {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card-size_s .product-card__name {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  @supports (-webkit-line-clamp: 1) {
    .product-card-size_s .product-card__name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
  }
}
.product-card-size_s .product-card__sizes {
  display: flex;
  gap: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_s .product-card__sizes {
    gap: 1.1713030747vw;
  }
}
.product-card-size_s .product-card__prices {
  margin-bottom: 0.5208333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_s .product-card__prices {
    margin-bottom: 0.7320644217vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_s .product-card__prices {
    margin-bottom: 1.3020833333vw;
    gap: 0.5208333333vw;
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card-size_s .product-card__prices {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card-size_s .product-card__prices {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card-size_s .product-card__prices {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__prices {
    margin-bottom: 2.6666666667vw;
    gap: 1.0666666667vw;
    font-size: 0.46875vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .product-card-size_s .product-card__prices {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .product-card-size_s .product-card__prices {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .product-card-size_s .product-card__prices {
    font-size: 2.4vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_s .product-card__colors {
    display: none;
  }
}
.product-card-size_s .product-card__color {
  width: 1.1458333333vw;
  height: 1.1458333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_s .product-card__color {
    width: 1.6105417277vw;
    height: 1.6105417277vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_s .product-card__color {
    width: 2.8645833333vw;
    height: 2.8645833333vw;
  }
}
.product-card-size_xs {
  gap: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_xs {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__button-favorite {
    display: none;
  }
}
.product-card-size_xs .product-card__content {
  width: 100%;
  height: 23.4375vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_xs .product-card__content {
    height: 23.8653001464vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__content {
    height: 23.6979166667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__content {
    height: 46.9333333333vw;
  }
}
.product-card-size_xs .product-card__price {
  gap: 0.4166666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_xs .product-card__price {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__price {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__price {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .product-card-size_xs .product-card__price {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__price {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__price {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__price {
    font-size: 0.46875vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card-size_xs .product-card__price {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card-size_xs .product-card__price {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card-size_xs .product-card__price {
    font-size: 2.4vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__colors {
    display: none;
  }
}
.product-card-size_xs .product-card__color {
  width: 0.7291666667vw;
  height: 0.7291666667vw;
}
@media screen and (width <= 1440px) {
  .product-card-size_xs .product-card__color {
    width: 1.0248901903vw;
    height: 1.0248901903vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__color {
    width: 1.8229166667vw;
    height: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__color {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.product-card-size_xs .product-card__name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@supports (-webkit-line-clamp: 1) {
  .product-card-size_xs .product-card__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1440px) {
  .product-card-size_xs .product-card__name {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__name {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__name {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .product-card-size_xs .product-card__name {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .product-card-size_xs .product-card__name {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .product-card-size_xs .product-card__name {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .product-card-size_xs .product-card__name {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card-size_xs .product-card__name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  @supports (-webkit-line-clamp: 2) {
    .product-card-size_xs .product-card__name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }
}
.btn-heart {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*====================================*/
  /*----------STYLES-----------*/
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------SIZES-----------*/
}
.btn-heart * {
  pointer-events: none;
}
.btn-heart svg {
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-heart svg path {
  transition: stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-heart.active.btn-heart-flat svg {
  fill: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-heart.active.btn-heart-flat:hover svg {
    fill: var(--color1-dark);
  }
  .btn-heart.active.btn-heart-flat:hover svg path {
    stroke: var(--color1-dark);
  }
}
.btn-heart.active.btn-heart-filled svg {
  fill: var(--color1-main);
}
.btn-heart.active.btn-heart-filled svg path {
  stroke: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-heart.active.btn-heart-filled:hover svg {
    fill: var(--color1-dark);
  }
  .btn-heart.active.btn-heart-filled:hover svg path {
    stroke: var(--color1-dark);
  }
}
.btn-heart-flat {
  padding: 0 0.2083333333vw;
  height: 1.6666666667vw;
  width: 1.6666666667vw;
}
.btn-heart-flat svg path {
  stroke: var(--gray-medium);
}
@media screen and (width <= 1440px) {
  .btn-heart-flat {
    height: 2.3426061493vw;
    width: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-flat {
    height: 4.1666666667vw;
    width: 4.1666666667vw;
    padding: 0 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-flat {
    height: 8.5333333333vw;
    width: 8.5333333333vw;
    padding: 0 1.0666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-heart-flat:hover svg path {
    stroke: var(--color1-main);
  }
}
.btn-heart-filled {
  background: var(--gray-lighter);
}
.btn-heart-filled svg path {
  stroke: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .btn-heart-filled:hover svg path {
    stroke: var(--color1-main);
  }
}
.btn-heart-l svg, .btn-heart-m svg, .btn-heart-s svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-heart-l svg, .btn-heart-m svg, .btn-heart-s svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-l svg, .btn-heart-m svg, .btn-heart-s svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-l svg, .btn-heart-m svg, .btn-heart-s svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-heart-xs svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-heart-xs svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-xs svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-xs svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-heart-filled.btn-heart-l {
  padding: 0.625vw;
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1440px) {
  .btn-heart-filled.btn-heart-l {
    padding: 0.878477306vw;
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-filled.btn-heart-l {
    padding: 1.5625vw;
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-filled.btn-heart-l {
    padding: 3.2vw;
    width: 12.8vw;
    height: 12.8vw;
  }
}
.btn-heart-filled.btn-heart-m {
  padding: 0.4166666667vw;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .btn-heart-filled.btn-heart-m {
    padding: 0.5856515373vw;
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-filled.btn-heart-m {
    padding: 1.0416666667vw;
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-filled.btn-heart-m {
    padding: 2.1333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.btn-heart-filled.btn-heart-s {
  padding: 0.4166666667vw;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .btn-heart-filled.btn-heart-s {
    padding: 0.5856515373vw;
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-heart-filled.btn-heart-s {
    padding: 1.0416666667vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-heart-filled.btn-heart-s {
    padding: 2.1333333333vw;
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.reviews-slider__content {
  position: relative;
  z-index: 10;
}
.reviews-slider__content-image {
  cursor: pointer;
  width: 100%;
  position: relative;
  height: 35.6770833333vw;
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-image {
    height: 36.4568081991vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-image {
    height: 34.8958333333vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-image {
    height: 71.4666666667vw;
  }
}
.reviews-slider__content-image--mask {
  background: linear-gradient(180deg, rgba(64, 64, 64, 0.01) 0%, rgba(13, 13, 13, 0.6) 100%);
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  pointer-events: none;
  z-index: 30;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.reviews-slider__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-slider__content-figcaption {
  position: absolute;
  bottom: 2.0833333333vw;
  left: 2.0833333333vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.2083333333vw;
  z-index: 40;
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-figcaption {
    bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-figcaption {
    bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-figcaption {
    bottom: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-figcaption {
    left: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-figcaption {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-figcaption {
    left: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-figcaption {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-figcaption {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-figcaption {
    gap: 1.0666666667vw;
  }
}
.reviews-slider__content-figcaption--inst {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-figcaption--inst {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-figcaption--inst {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-figcaption--inst {
    font-size: 3.4666666667vw;
  }
}
.reviews-slider__content-figcaption--title {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  font-weight: 700;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .reviews-slider__content-figcaption--title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .reviews-slider__content-figcaption--title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .reviews-slider__content-figcaption--title {
    font-size: 5.3333333333vw;
  }
}
.our-stores {
  padding-top: 2.0833333333vw;
  padding-bottom: 4.1666666667vw;
}
@media screen and (width <= 1440px) {
  .our-stores {
    padding-top: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .our-stores {
    padding-bottom: 5.8565153734vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores {
    padding-bottom: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores {
    padding-bottom: 16vw;
  }
}
.our-stores__content {
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .our-stores__content {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content {
    gap: 8.5333333333vw;
  }
}
.our-stores__content-top {
  width: 36.4583333333vw;
  font-size: 2.1875vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-black);
}
@media screen and (width <= 1440px) {
  .our-stores__content-top {
    width: 51.2445095168vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-top {
    width: 46.875vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-top {
    width: 26.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .our-stores__content-top {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-top {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-top {
    font-size: 7.4666666667vw;
  }
}
.our-stores__content-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .our-stores__content-items {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-items {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-items {
    gap: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-items {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.our-stores__content-item {
  position: relative;
  z-index: 10;
  height: 28.125vw;
}
@media screen and (width <= 1440px) {
  .our-stores__content-item {
    height: 39.5314787701vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-item {
    height: 31.25vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-item {
    height: 64vw;
  }
}
.our-stores__content-item-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 20;
}
.our-stores__content-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-stores__content-item-image--mask {
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(64, 64, 64, 0.01) 0%, rgba(13, 13, 13, 0.6) 100%);
  z-index: 30;
}
.our-stores__content-item--title {
  position: absolute;
  left: 2.1875vw;
  bottom: 2.1875vw;
  font-size: 2.1875vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-white);
  z-index: 20;
}
@media screen and (width <= 1440px) {
  .our-stores__content-item--title {
    left: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-item--title {
    left: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-item--title {
    left: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .our-stores__content-item--title {
    bottom: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-item--title {
    bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-item--title {
    bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .our-stores__content-item--title {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .our-stores__content-item--title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .our-stores__content-item--title {
    font-size: 7.4666666667vw;
  }
}
.mailing-list {
  padding: 2.0833333333vw 0;
  background-color: var(--gray-lighter);
}
@media screen and (width <= 1440px) {
  .mailing-list {
    padding: 2.9282576867vw 0;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list {
    padding: 2.6041666667vw 0;
  }
}
@media screen and (width <= 481px) {
  .mailing-list {
    padding: 5.3333333333vw 0;
  }
}
.mailing-list__container {
  padding: 2.0833333333vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2.0833333333vw;
  background-color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .mailing-list__container {
    padding: 2.9282576867vw;
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list__container {
    padding: 2.6041666667vw;
    gap: 2.9947916667vw;
  }
}
@media screen and (width <= 481px) {
  .mailing-list__container {
    padding: 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.mailing-list__mail-card {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .mailing-list__mail-card {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list__mail-card {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .mailing-list__mail-card {
    gap: 4.2666666667vw;
  }
}
.mailing-list__card-title {
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0.625vw;
  color: var(--color1-dark);
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .mailing-list__card-title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list__card-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .mailing-list__card-title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .mailing-list__card-title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list__card-title {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .mailing-list__card-title {
    margin-bottom: 2.1333333333vw;
  }
}
.mailing-list__mail-card-input {
  width: 100%;
}
.mailing-list__card-text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  color: var(--gray-dark);
}
@media screen and (width <= 1440px) {
  .mailing-list__card-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .mailing-list__card-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .mailing-list__card-text {
    font-size: 4.2666666667vw;
  }
}
.mailing-list__mail-card-line {
  display: flex;
}
.mailing-list__card-checkbox.checkbox {
  align-items: flex-start;
}
.loader-icon {
  --animation-speed: 2s;
  transform-origin: center;
  animation: rotate var(--animation-speed) linear infinite;
  will-change: transform;
  overflow: visible;
}
.loader-icon__track {
  fill: none;
  opacity: 0;
  transition: stroke 0.5s ease;
}
.loader-icon__car {
  fill: none;
  stroke-width: 0.1041666667vw;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: stretch calc(var(--animation-speed) * 0.75) ease-in-out infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 0.5s ease;
}
@media screen and (width <= 1440px) {
  .loader-icon__car {
    stroke-width: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .loader-icon__car {
    stroke-width: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .loader-icon__car {
    stroke-width: 0.5333333333vw;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes stretch {
  0% {
    stroke-dasharray: 0, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 75, 150;
    stroke-dashoffset: -25;
  }
  100% {
    stroke-dashoffset: -100;
  }
}
.checkbox {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  padding: 0.1041666667vw;
  margin: -0.1041666667vw;
  gap: 0.5208333333vw;
  transition: background-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .checkbox {
    padding: 0.1464128843vw;
    margin: -0.1464128843vw;
    gap: 0.7320644217vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox {
    padding: 0.2604166667vw;
    margin: -0.2604166667vw;
    gap: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox {
    padding: 0.5333333333vw;
    margin: -0.5333333333vw;
    gap: 2.6666666667vw;
  }
}
.checkbox-position_left {
  flex-direction: row;
}
.checkbox-position_right {
  flex-direction: row-reverse;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox__input:checked ~ .checkbox__custom::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}
.checkbox__custom {
  flex-shrink: 0;
  position: relative;
  border: solid var(--gray-medium);
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.0520833333vw, 1px);
  /* Checkmark */
}
@media screen and (width <= 1440px) {
  .checkbox__custom {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .checkbox__custom {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .checkbox__custom {
    border-width: max(0.2666666667vw, 1px);
  }
}
.checkbox__custom::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 30%;
  height: 50%;
  border-top: 0 !important;
  border-left: 0 !important;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.checkbox__text {
  user-select: none;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .checkbox__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__text {
    font-size: 4.2666666667vw;
  }
}
.checkbox__policy {
  user-select: none;
  margin-block: 0.1041666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .checkbox__policy {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox__policy {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__policy {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .checkbox__policy {
    margin-block: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox__policy {
    margin-block: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__policy {
    margin-block: 0.5333333333vw;
  }
}
.checkbox__policy a {
  color: var(--color1-dark);
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox__policy a:hover {
    color: var(--color1-main);
  }
}
.checkbox__policy a:active {
  color: var(--color1-darker);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-solid:hover .checkbox__input:not(:checked) ~ .checkbox__custom::after {
    border-color: var(--gray-medium);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
  .checkbox-solid:hover .checkbox__input:checked ~ .checkbox__custom {
    background: var(--color1-light);
    border-color: var(--color1-light);
  }
}
.checkbox-solid .checkbox__input:checked ~ .checkbox__custom {
  background: var(--color1-main);
  border-color: var(--color1-main);
}
.checkbox-solid .checkbox__custom::after {
  border: solid var(--gray-white);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-line:hover .checkbox__input:not(:checked) ~ .checkbox__custom::after {
    border-color: var(--color1-light);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom {
    background: transparent;
    border-color: var(--color1-dark);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom::after {
    border-color: var(--color1-dark);
  }
}
.checkbox-line .checkbox__input:checked ~ .checkbox__custom {
  background: transparent;
  border-color: var(--color1-main);
}
.checkbox-line .checkbox__custom::after {
  border: solid var(--color1-main);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.2666666667vw, 1px);
  }
}
.checkbox-size_m .checkbox__custom {
  width: 1.4583333333vw;
  height: 1.4583333333vw;
}
@media screen and (width <= 1440px) {
  .checkbox-size_m .checkbox__custom {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox-size_m .checkbox__custom {
    width: 3.6458333333vw;
    height: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m .checkbox__custom {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.checkbox-size_s .checkbox__custom {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .checkbox-size_s .checkbox__custom {
    width: 1.4641288433vw;
    height: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .checkbox-size_s .checkbox__custom {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_s .checkbox__custom {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.checkbox-theme_light .checkbox__text {
  color: var(--gray-darker);
}
.checkbox-theme_dark .checkbox__text {
  color: var(--gray-lighter);
}
.modal-story {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 2005;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibility 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.modal-story_active {
  opacity: 1;
  visibility: visible;
}
.modal-story__link {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0.625vw;
  width: calc(100% - 1.25vw);
}
@media screen and (width <= 1440px) {
  .modal-story__link {
    bottom: 0.878477306vw;
    width: calc(100% - 1.756954612vw);
  }
}
@media screen and (width <= 1025px) {
  .modal-story__link {
    bottom: 1.5625vw;
    width: calc(100% - 3.125vw);
  }
}
@media screen and (width <= 481px) {
  .modal-story__link {
    bottom: 3.2vw;
    width: calc(100% - 6.4vw);
  }
}
.modal-story__mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibility 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.modal-story__mask_active {
  opacity: 1;
  visibility: visible;
}
.modal-story__content {
  position: relative;
  transform: translateY(150%);
  width: 22.9166666667vw;
  max-height: 40.625vw;
  height: 100%;
  --progress-duration: 0s;
  animation: progress-bar var(--progress-duration) linear forwards;
  transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .modal-story__content {
    width: 25.6222547584vw;
    max-height: 45.3879941435vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-story__content {
    width: 45.5729166667vw;
    max-height: 80.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-story__content {
    width: 93.3333333333vw;
    max-height: 165.3333333333vw;
  }
}
.modal-story__content_active {
  transform: translateY(0);
}
.modal-story__content::before {
  position: absolute;
  content: "";
  transform: translateX(-50%);
  top: 0.625vw;
  left: 50%;
  width: calc(100% - 1.25vw);
  height: 0.2083333333vw;
  background-color: var(--gray-light);
}
@media screen and (width <= 1440px) {
  .modal-story__content::before {
    top: 0.878477306vw;
    height: 0.2928257687vw;
    width: calc(100% - 1.756954612vw);
  }
}
@media screen and (width <= 1025px) {
  .modal-story__content::before {
    top: 1.5625vw;
    height: 0.5208333333vw;
    width: calc(100% - 3.125vw);
  }
}
@media screen and (width <= 481px) {
  .modal-story__content::before {
    transform: none;
    left: 3.2vw;
    top: 3.2vw;
    width: 70.9333333333vw;
    height: 1.0666666667vw;
  }
}
.modal-story__content::after {
  position: absolute;
  content: "";
  background: var(--gray-white);
  height: 0.2083333333vw;
  width: 0;
  left: 0.625vw;
  top: 0.625vw;
  animation: none;
}
@media screen and (width <= 1440px) {
  .modal-story__content::after {
    height: 0.2928257687vw;
    left: 0.878477306vw;
    top: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-story__content::after {
    height: 0.5208333333vw;
    left: 1.5625vw;
    top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-story__content::after {
    height: 1.0666666667vw;
    left: 3.2vw;
    top: 3.2vw;
  }
}
.modal-story__content.animation-active::after {
  animation: progress var(--animation-duration) linear forwards;
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: calc(100% - 1.25vw);
  }
  @media screen and (width <= 1440px) {
    to {
      width: calc(100% - 1.756954612vw);
    }
  }
  @media screen and (width <= 1025px) {
    to {
      width: calc(100% - 3.125vw);
    }
  }
}
@media screen and (width <= 481px) {
  @keyframes progress {
    to {
      width: calc(100% - 22.4vw);
    }
  }
}
.modal-story__buttons {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 6.25vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 1440px) {
  .modal-story__buttons {
    width: calc(100% + 8.78477306vw);
  }
}
@media screen and (width <= 1025px) {
  .modal-story__buttons {
    width: calc(100% + 15.625vw);
  }
}
@media screen and (width <= 481px) {
  .modal-story__buttons {
    width: calc(100% + 32vw);
  }
}
.modal-story__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
  background-color: var(--gray-black);
}
@media screen and (width <= 1440px) {
  .modal-story__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-story__button-close {
    right: -7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-story__button-close {
    top: 3.2vw;
    right: 3.2vw;
  }
}
.modal-story__image, .modal-story__video {
  user-select: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer {
  padding: 2.0833333333vw 0;
  background-color: var(--gray-black);
}
@media screen and (width <= 1440px) {
  .footer {
    padding: 2.9282576867vw 0;
  }
}
@media screen and (width <= 1025px) {
  .footer {
    padding: 5.2083333333vw 0 9.1145833333vw;
  }
  .footer_extended-tapbar {
    padding-bottom: 27.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    padding: 10.6666666667vw 0 18.6666666667vw;
  }
  .footer_extended-tapbar {
    padding-bottom: 56.5333333333vw;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 2.0833333333vw;
  align-self: center;
  width: 13.5416666667vw;
  height: 3.8541666667vw;
}
@media screen and (width <= 1440px) {
  .footer__logo {
    margin-bottom: 2.9282576867vw;
    width: 19.0336749634vw;
    height: 5.4172767204vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__logo {
    margin-bottom: 5.2083333333vw;
    width: 33.8541666667vw;
    height: 9.6354166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__logo {
    margin-bottom: 10.6666666667vw;
    width: 69.3333333333vw;
    height: 19.7333333333vw;
  }
}
.footer__logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer__main {
  display: flex;
  justify-content: space-between;
}
@media screen and (width <= 1025px) {
  .footer__main {
    flex-direction: column-reverse;
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__main {
    gap: 10.6666666667vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__main nav:not(.footer__nav) {
    display: none;
  }
}
.footer__main nav {
  width: calc(100% - 20px);
}
@media screen and (width <= 1440px) {
  .footer__main nav {
    width: 12.0790629575vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__main nav {
    width: auto;
  }
}
@media screen and (width <= 1025px) {
  .footer__main .footer__nav {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__main .footer__nav {
    margin-bottom: 5.3333333333vw;
  }
}
.footer__main nav, .footer__main ul:not(.footer__socials) {
  display: flex;
  flex-direction: column;
}
.footer__main nav .tab-size_s, .footer__main ul:not(.footer__socials) .tab-size_s {
  height: 2.6041666667vw;
}
@media screen and (width <= 1440px) {
  .footer__main nav .tab-size_s, .footer__main ul:not(.footer__socials) .tab-size_s {
    height: 3.6603221083vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__main nav .tab-size_s, .footer__main ul:not(.footer__socials) .tab-size_s {
    height: 6.5104166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__main nav .tab-size_s, .footer__main ul:not(.footer__socials) .tab-size_s {
    height: 13.3333333333vw;
  }
}
.footer__main nav .tab__badge, .footer__main ul:not(.footer__socials) .tab__badge {
  background-color: var(--disable-medium);
  border-radius: 5.2083333333vw;
}
@media screen and (width <= 1440px) {
  .footer__main nav .tab__badge, .footer__main ul:not(.footer__socials) .tab__badge {
    border-radius: 7.3206442167vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__main nav .tab__badge, .footer__main ul:not(.footer__socials) .tab__badge {
    border-radius: 13.0208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__main nav .tab__badge, .footer__main ul:not(.footer__socials) .tab__badge {
    border-radius: 26.6666666667vw;
  }
}
.footer__main nav .tab__text, .footer__main ul:not(.footer__socials) .tab__text {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .footer__main nav .tab__text, .footer__main ul:not(.footer__socials) .tab__text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__main nav .tab__text, .footer__main ul:not(.footer__socials) .tab__text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__main nav .tab__text, .footer__main ul:not(.footer__socials) .tab__text {
    font-size: 5.3333333333vw;
  }
}
.footer__menu {
  margin-bottom: 9.375vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.1666666667vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .footer__menu {
    margin-bottom: 13.17715959vw;
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1440px) {
  .footer__menu {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 1440px) and (width <= 1025px) {
  .footer__menu {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 1440px) and (width <= 481px) {
  .footer__menu {
    gap: 10.6666666667vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__menu {
    margin-bottom: 0;
    flex-direction: column-reverse;
  }
}
.footer__menu .btn-size_s {
  height: 2.6041666667vw;
}
@media screen and (width <= 1440px) {
  .footer__menu .btn-size_s {
    height: 3.6603221083vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__menu .btn-size_s {
    height: 6.5104166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__menu .btn-size_s {
    height: 13.3333333333vw;
  }
}
.footer__menu .btn-size_s .btn__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .footer__menu .btn-size_s .btn__text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__menu .btn-size_s .btn__text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__menu .btn-size_s .btn__text {
    font-size: 5.3333333333vw;
  }
}
.footer__catalog {
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .footer__catalog {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__catalog {
    margin-bottom: 20p x / 20p x * 01 / 768 * 100vw;
  }
}
@media screen and (width <= 481px) {
  .footer__catalog {
    margin-bottom: 5.3333333333vw;
  }
}
.footer__contacts {
  padding-right: 3.125vw;
  width: 16.4583333333vw;
}
@media screen and (width <= 1440px) {
  .footer__contacts {
    padding-right: 4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__contacts {
    padding-right: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .footer__contacts {
    padding-right: 16vw;
  }
}
@media screen and (width <= 1440px) {
  .footer__contacts {
    width: 23.1332357247vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__contacts {
    width: 41.1458333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__contacts {
    width: 84.2666666667vw;
  }
}
.footer__contacts--title {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  color: var(--gray-medium);
}
@media screen and (width <= 1440px) {
  .footer__contacts--title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__contacts--title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__contacts--title {
    font-size: 4.2666666667vw;
  }
}
.footer__contacts--text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  color: var(--gray-white);
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1440px) {
  .footer__contacts--text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__contacts--text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__contacts--text {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .footer__contacts--text {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__contacts--text {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__contacts--text {
    margin-bottom: 3.2vw;
  }
}
.footer__contacts.mobile-view {
  display: none;
}
@media screen and (width <= 1025px) {
  .footer__contacts.mobile-view {
    display: block;
    margin-bottom: 2.0833333333vw;
    width: 9.6875vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .footer__contacts.mobile-view {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .footer__contacts.mobile-view {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .footer__contacts.mobile-view {
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .footer__contacts.mobile-view {
    width: 13.616398243vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .footer__contacts.mobile-view {
    width: 24.21875vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .footer__contacts.mobile-view {
    width: 49.6vw;
  }
}
.footer__phone {
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1440px) {
  .footer__phone {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__phone {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__phone {
    margin-bottom: 1.3333333333vw;
  }
}
.footer__phone .btn-contact__text {
  font-size: 1.0416666667vw !important;
}
@media screen and (width <= 1440px) {
  .footer__phone .btn-contact__text {
    font-size: 1.4641288433vw !important;
  }
}
@media screen and (width <= 1025px) {
  .footer__phone .btn-contact__text {
    font-size: 2.6041666667vw !important;
  }
}
@media screen and (width <= 481px) {
  .footer__phone .btn-contact__text {
    font-size: 5.3333333333vw !important;
  }
}
.footer h3 {
  padding: 0.625vw 0;
  font-family: var(--font-family-body);
  color: var(--gray-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  font-size: 1.25vw;
}
@media screen and (width <= 1440px) {
  .footer h3 {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer h3 {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer h3 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .footer h3 {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .footer h3 {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .footer h3 {
    font-size: 6.4vw;
  }
}
@media screen and (width <= 1440px) {
  .footer h3 {
    padding: 0.878477306vw 0;
  }
}
@media screen and (width <= 1025px) {
  .footer h3 {
    padding: 1.5625vw 0;
  }
}
@media screen and (width <= 481px) {
  .footer h3 {
    padding: 3.2vw 0;
  }
}
.footer h4 {
  margin-bottom: 0.625vw;
  color: var(--gray-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .footer h4 {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .footer h4 {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer h4 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .footer h4 {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .footer h4 {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer h4 {
    margin-bottom: 2.1333333333vw;
  }
}
.footer__socials {
  display: flex;
}
.footer__socials li:first-child {
  margin-right: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .footer__socials li:first-child {
    margin-right: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__socials li:first-child {
    margin-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__socials li:first-child {
    margin-right: 2.1333333333vw;
  }
}
.footer__payment {
  margin-bottom: 2.0833333333vw;
  display: flex;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .footer__payment {
    margin: 0 0.5856515373vw 2.9282576867vw 0;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__payment {
    margin: 0 1.0416666667vw 5.2083333333vw 0;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__payment {
    margin: 0 2.1333333333vw 10.6666666667vw 0;
    gap: 2.1333333333vw;
  }
}
.footer__payment li {
  width: 3.125vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .footer__payment li {
    width: 4.39238653vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__payment li {
    width: 7.8125vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__payment li {
    width: 16vw;
    height: 10.6666666667vw;
  }
}
.footer__payment li img {
  height: 100%;
  object-fit: cover;
}
.footer__payment li.footer__payment-parts {
  display: flex;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .footer__payment li.footer__payment-parts {
    width: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__payment li.footer__payment-parts {
    width: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__payment li.footer__payment-parts {
    width: 10.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .footer__payment li.footer__payment-parts {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__payment li.footer__payment-parts {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__payment li.footer__payment-parts {
    height: 10.6666666667vw;
  }
}
.footer__payment li.footer__payment-parts svg {
  width: 100%;
  height: 100%;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.9375vw;
  border-width: max(0.0520833333vw, 1px);
  border-top-color: var(--gray-dark);
  border-style: solid;
}
@media screen and (width <= 1440px) {
  .footer__bottom {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .footer__bottom {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .footer__bottom {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .footer__bottom {
    gap: 1.317715959vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__bottom {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom {
    gap: 5.3333333333vw;
  }
}
.footer__bottom-links {
  padding-top: 0.4166666667vw;
  display: flex;
  justify-content: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .footer__bottom-links {
    padding-top: 0.5856515373vw;
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__bottom-links {
    flex-direction: column;
    padding-top: 1.0416666667vw;
    gap: 0;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom-links {
    padding-top: 2.1333333333vw;
  }
}
.footer__bottom-links .tab__text {
  color: var(--gray-light);
}
.footer__bottom-info {
  display: flex;
  justify-content: space-between;
}
@media screen and (width <= 1025px) {
  .footer__bottom-info {
    flex-direction: column;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom-info {
    gap: 3.2vw;
  }
}
.footer__bottom-info a {
  width: 8.3333333333vw;
  height: 1.9791666667vw;
}
@media screen and (width <= 1440px) {
  .footer__bottom-info a {
    width: 11.7130307467vw;
    height: 2.7818448023vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__bottom-info a {
    width: 20.8333333333vw;
    height: 4.9479166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom-info a {
    width: 42.6666666667vw;
    height: 10.1333333333vw;
  }
}
.footer__bottom-info a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__bottom-info span {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .footer__bottom-info span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .footer__bottom-info span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom-info span {
    font-size: 3.4666666667vw;
  }
}
.footer .tab-size_m .tab__text {
  margin: 0;
}
.btn-contact {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  position: relative;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  gap: 0.1041666667vw;
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .btn-contact {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .btn-contact {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-contact {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1440px) {
  .btn-contact {
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact {
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact {
    gap: 0.5333333333vw;
  }
}
.btn-contact-flat {
  color: var(--color1-main);
}
@media screen and (width <= 1025px) {
  .btn-contact-flat {
    font-weight: 700;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-flat:hover {
    color: var(--color1-dark);
  }
}
.btn-contact-flat:active {
  color: var(--color1-darker);
}
.btn-contact-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-contact-filled {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-filled:hover {
    color: var(--color1-main);
  }
}
.btn-contact-filled:active {
  color: var(--color1-dark);
}
.btn-contact-filled:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-contact-filled.active {
  background: var(--gray-lighter);
  color: var(--color1-darker);
}
.btn-contact-monochrome {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  color: var(--gray-darker);
}
@media screen and (width <= 1440px) {
  .btn-contact-monochrome {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-monochrome {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-monochrome {
    font-size: 5.3333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-monochrome:hover {
    color: var(--color1-main);
  }
}
.btn-contact-monochrome:active {
  color: var(--color1-dark);
}
.btn-contact-monochrome:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-contact-monochrome.active {
  background: var(--gray-lighter);
  color: var(--color1-darker);
}
.btn-contact-size_l.btn-contact-filled {
  padding: 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_l.btn-contact-filled {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_l.btn-contact-filled {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_l.btn-contact-filled {
    padding: 3.2vw;
  }
}
.btn-contact-size_m.btn-contact-filled {
  padding: 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_m.btn-contact-filled {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_m.btn-contact-filled {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_m.btn-contact-filled {
    padding: 3.2vw;
  }
}
.btn-contact-size_s.btn-contact-filled {
  padding: 0.7291666667vw;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_s.btn-contact-filled {
    padding: 1.0248901903vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_s.btn-contact-filled {
    padding: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s.btn-contact-filled {
    padding: 3.7333333333vw;
  }
}
.btn-contact-size_s.btn-contact-monochrome .btn-contact__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_s.btn-contact-monochrome .btn-contact__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_s.btn-contact-monochrome .btn-contact__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s.btn-contact-monochrome .btn-contact__text {
    font-size: 4.2666666667vw;
  }
}
.btn-contact-size_s.btn-contact-monochrome svg {
  width: 1.25vw;
  height: 1.25vw;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .btn-contact-size_s.btn-contact-monochrome svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_s.btn-contact-monochrome svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s.btn-contact-monochrome svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-contact-size_xs.btn-contact-filled {
  padding: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_xs.btn-contact-filled {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_xs.btn-contact-filled {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs.btn-contact-filled {
    padding: 2.1333333333vw;
  }
}
.btn-contact-size_xs.btn-contact-monochrome .btn-contact__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-contact-size_xs.btn-contact-monochrome .btn-contact__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_xs.btn-contact-monochrome .btn-contact__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs.btn-contact-monochrome .btn-contact__text {
    font-size: 3.4666666667vw;
  }
}
.btn-contact-size_xs.btn-contact-monochrome svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .btn-contact-size_xs.btn-contact-monochrome svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-contact-size_xs.btn-contact-monochrome svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs.btn-contact-monochrome svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-contact-theme_dark.btn-contact-filled {
  background-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-theme_dark.btn-contact-filled:hover {
    color: var(--gray-light);
  }
}
.btn-contact-theme_dark.btn-contact-filled:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.btn-contact-theme_dark.btn-contact-filled.active {
  background: var(--gray-dark);
  color: var(--color1-light);
}
.btn-contact-theme_dark.btn-contact-filled:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.btn-contact-theme_dark.btn-contact-monochrome {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-theme_dark.btn-contact-monochrome:hover {
    color: var(--color1-main);
  }
}
.btn-contact-theme_dark.btn-contact-monochrome:active {
  color: var(--color1-dark);
}
.btn-contact-theme_dark.btn-contact-monochrome.active {
  color: var(--color1-light);
}
.btn-contact-theme_dark.btn-contact-monochrome:disabled {
  cursor: not-allowed;
  color: var(--gray-dark);
  border-color: transparent;
}
.socials-container {
  display: flex;
  align-items: center;
}
@media screen and (width <= 1440px) {
  .socials-container__link {
    height: 2.9282576867vw !important;
    padding-inline: 0.5856515373vw !important;
  }
}
@media screen and (width <= 1025px) {
  .socials-container__link {
    height: 5.2083333333vw !important;
    padding-inline: 1.0416666667vw !important;
  }
}
@media screen and (width <= 481px) {
  .socials-container__link {
    height: 10.6666666667vw !important;
    padding-inline: 2.1333333333vw !important;
  }
}
.btn-social {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: transparent solid;
  position: relative;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .btn-social {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .btn-social {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-social {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn-social .btn-social__icon {
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-social__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-social-size_l {
  height: 2.9166666667vw;
  padding: 0 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-social-size_l {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social-size_l {
    height: 7.2916666667vw;
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_l {
    height: 14.9333333333vw;
    padding: 0 4.2666666667vw;
  }
}
.btn-social-size_m {
  width: 2.5vw;
  height: 2.5vw;
  padding: 0 0.625vw;
}
@media screen and (width <= 1440px) {
  .btn-social-size_m {
    width: 3.513909224vw;
    height: 3.513909224vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social-size_m {
    width: 6.25vw;
    height: 6.25vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_m {
    width: 12.8vw;
    height: 12.8vw;
    padding: 0 3.2vw;
  }
}
.btn-social-size_s {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  padding: 0 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .btn-social-size_s {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social-size_s {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_s {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    padding: 0 2.1333333333vw;
  }
}
.btn-social-size_xs.btn-social-theme_light {
  padding: 0.4166666667vw;
  height: 1.6666666667vw;
  background: transparent;
  border-color: transparent;
}
@media screen and (width <= 1440px) {
  .btn-social-size_xs.btn-social-theme_light {
    height: 2.3426061493vw;
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social-size_xs.btn-social-theme_light {
    height: 4.1666666667vw;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_xs.btn-social-theme_light {
    height: 8.5333333333vw;
    padding: 2.1333333333vw;
  }
}
.btn-social-size_xs.btn-social-theme_light svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-social-size_xs.btn-social-theme_light svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-social-size_xs.btn-social-theme_light svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_xs.btn-social-theme_light svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-social-size_xs.btn-social-theme_light .btn-social__icon {
  color: var(--color1-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-size_xs.btn-social-theme_light:hover .btn-social__icon {
    color: var(--color1-main);
  }
}
.btn-social-size_xs.btn-social-theme_light:active .btn-social__icon {
  color: var(--color1-dark);
}
.btn-social-theme_dark {
  background: var(--gray-darker);
  border-color: var(--gray-darker);
}
.btn-social-theme_dark .btn-social__icon {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-theme_dark:hover {
    background: var(--gray-dark);
    color: var(--gray-white);
  }
}
.btn-social-theme_dark:active {
  background: var(--gray-darker);
  border-color: var(--gray-darker);
}
.btn-social-theme_light {
  background: var(--gray-lighter);
  border-color: var(--gray-lighter);
}
.btn-social-theme_light .btn-social__icon {
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-theme_light:hover {
    background: var(--gray-light);
    border-color: var(--gray-light);
  }
  .btn-social-theme_light:hover .btn-social__icon {
    color: var(--gray-black);
  }
}
.btn-social-theme_light:active {
  background: var(--gray-darker);
  border-color: var(--gray-darker);
}
.btn-social-theme_light:active .btn-social__icon {
  color: var(--gray-white);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--gray-white);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 5000;
  opacity: 1;
  pointer-events: none;
  animation: preloader-fadeout 1s ease forwards;
  animation-delay: 5.5s;
  /* Animations */
}
.preloader__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  animation: image-fadeout 0.5s linear forwards;
  animation-delay: 4s;
}
@media screen and (width <= 1025px) {
  .preloader__image {
    height: 100%;
  }
}
@media screen and (width <= 481px) {
  .preloader__image_desktop {
    display: none;
  }
}
.preloader__image_mobile {
  display: none;
}
@media screen and (width <= 481px) {
  .preloader__image_mobile {
    display: block;
  }
}
.preloader__content {
  flex-shrink: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform-origin: top center;
  left: 20vw;
  top: 50vh;
  transform: translateY(-50%);
  animation: content-appear 0.5s linear forwards, content-move 0.5s linear forwards;
  animation-delay: 1s, 4s;
}
@media screen and (width <= 481px) {
  .preloader__content {
    top: 25vh;
    left: 10vw;
  }
}
.preloader__svg {
  flex-shrink: 0;
  width: 13.5416666667vw;
  height: 3.8541666667vw;
  scale: 2;
  animation: svg-resize 0.5s linear forwards;
  animation-delay: 4s;
}
@media screen and (width <= 1440px) {
  .preloader__svg {
    width: 14.1288433382vw;
    height: 4.0263543192vw;
  }
}
@media screen and (width <= 1025px) {
  .preloader__svg {
    width: 20.0520833333vw;
    height: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .preloader__svg {
    scale: 1;
    width: 41.0666666667vw;
    height: 11.7333333333vw;
  }
}
.preloader__svg-logo {
  fill: var(--gray-white);
  animation: logo-recolor 0.5s linear forwards;
  animation-delay: 4s;
}
.preloader__svg-text {
  opacity: 0;
  animation: text-appear 0.5s linear forwards;
  animation-delay: 2s;
  fill: var(--gray-medium);
}
@keyframes content-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes image-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes preloader-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes content-move {
  100% {
    top: 3.0208333333vw;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media screen and (width <= 1440px) {
  @keyframes content-move {
    100% {
      top: 4.2459736457vw;
      transform: translateX(-50%);
      left: 50%;
    }
  }
}
@media screen and (width <= 1025px) {
  @keyframes content-move {
    100% {
      top: 1.3020833333vw;
      transform: translateX(-50%);
      left: 50%;
    }
  }
}
@media screen and (width <= 481px) {
  @keyframes content-move {
    100% {
      top: 2.4vw;
      transform: translateX(-50%);
      left: 50%;
    }
  }
}
@keyframes svg-resize {
  0% {
    scale: 2;
  }
  100% {
    scale: 1;
  }
}
@media screen and (width <= 481px) {
  @keyframes svg-resize {
    0% {
      scale: 1;
    }
    100% {
      scale: 1;
    }
  }
}
@keyframes logo-recolor {
  0% {
    fill: var(--gray-white);
  }
  100% {
    fill: var(--gray-black);
  }
}
@keyframes text-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-geo {
  background-color: transparent;
  width: 20.8333333333vw;
  height: 20.8333333333vw;
  z-index: 2005;
}
@media screen and (width <= 1440px) {
  .modal-geo {
    width: 29.2825768668vw;
    height: 29.2825768668vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo {
    width: 100%;
    height: 100%;
    background: var(--gray-white);
    transform: translate(-50%, 200%);
  }
  .modal-geo.active {
    transform: translate(-50%, -50%);
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__container {
    height: 100%;
  }
}
.modal-geo__top {
  display: none;
  border-bottom: solid var(--gray-lighter);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .modal-geo__top {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__top {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-geo__top {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__top {
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__top {
    padding: 2.1333333333vw;
  }
}
.modal-geo__close {
  display: none;
}
@media screen and (width <= 1025px) {
  .modal-geo__close {
    display: flex;
  }
}
.modal-geo__wrapper {
  position: relative;
  padding: 1.4583333333vw;
  width: 20.8333333333vw;
  background-color: var(--gray-white);
  box-shadow: 0 0 0.78125vw 0 rgba(0, 0, 0, 0.1);
}
@media screen and (width <= 1440px) {
  .modal-geo__wrapper {
    padding: 2.0497803807vw;
    width: 29.2825768668vw;
    box-shadow: 0 0 1.0980966325vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__wrapper {
    position: relative;
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
    width: 100%;
    height: 100%;
    background-color: var(--gray-white);
    box-shadow: none;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__wrapper {
    position: relative;
    padding: 5.3333333333vw 4.2666666667vw 18.6666666667vw;
    height: 100%;
    background-color: var(--gray-white);
  }
}
.modal-geo__title {
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-geo__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-geo__title {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__title {
    margin-bottom: 5.3333333333vw;
  }
}
.modal-geo__title span:nth-child(1) {
  color: var(--gray-darker);
  font-weight: 400;
}
.modal-geo__title span:nth-child(2) {
  color: var(--color1-darker);
}
.modal-geo__buttons {
  display: grid;
  gap: 0.625vw;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (width <= 1440px) {
  .modal-geo__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__buttons {
    margin-bottom: 7.8125vw;
    grid-template-columns: 1fr;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__buttons {
    margin-bottom: 16vw;
    gap: 3.2vw;
  }
}
.modal-geo__buttons button {
  width: 100%;
}
@media screen and (width <= 1025px) {
  .modal-geo__first-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.modal-geo__second-content {
  display: none;
}
.modal-geo__text-field {
  width: 100%;
}
.modal-geo__text-field label {
  width: 100%;
}
.modal-geo__text-field input {
  padding: 0 0.8333333333vw;
  height: 2.5vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .modal-geo__text-field input {
    padding: 0 1.1713030747vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__text-field input {
    padding: 0 2.0833333333vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__text-field input {
    padding: 0 4.2666666667vw;
    height: 12.8vw;
  }
}
@media (any-hover: hover) {
  .modal-geo__text-field input:hover {
    border-color: #999;
  }
}
.modal-geo__text-field input:focus-within {
  border-color: #999;
}
.modal-geo__save-button {
  width: auto;
  margin-left: 0.0520833333vw;
}
@media screen and (width <= 1440px) {
  .modal-geo__save-button {
    margin-left: 0.0732064422vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__save-button {
    margin-left: 0.1302083333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__save-button {
    margin-left: 0.2666666667vw;
  }
}
.modal-geo__dropdown {
  position: relative;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-geo__dropdown {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__dropdown {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__dropdown {
    margin-bottom: 5.3333333333vw;
  }
}
.modal-geo__dropdown_active .modal-geo__text-field input {
  border-color: #999;
}
.modal-geo__dropdown_active .modal-geo__dropdown-wrapper {
  opacity: 1;
  z-index: 2;
  user-select: auto;
  pointer-events: all;
}
.modal-geo__dropdown-wrapper {
  position: absolute;
  padding: 0.625vw;
  width: 100%;
  top: 100%;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  background-color: var(--gray-white);
  box-shadow: 0 0 0.78125vw 0 rgba(0, 0, 0, 0.1);
}
@media screen and (width <= 1440px) {
  .modal-geo__dropdown-wrapper {
    padding: 0.878477306vw;
    box-shadow: 0 0 1.0980966325vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__dropdown-wrapper {
    padding: 3.2vw;
    box-shadow: 0 0 4vw 0 rgba(0, 0, 0, 0.1);
  }
}
.modal-geo__dropdown-list {
  display: grid;
  overflow: hidden;
  overflow-y: auto;
  max-height: 11.25vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .modal-geo__dropdown-list {
    max-height: 15.8125915081vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__dropdown-list {
    max-height: 57.6vw;
    gap: 1.0666666667vw;
  }
}
.modal-geo__dropdown-item {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #666;
  cursor: pointer;
  padding: 0.4947916667vw 0.8333333333vw;
  transition: background-color 0.2s ease;
}
@media screen and (width <= 1440px) {
  .modal-geo__dropdown-item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-geo__dropdown-item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__dropdown-item {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-geo__dropdown-item {
    padding: 0.6954612006vw 1.1713030747vw;
  }
}
@media screen and (width <= 481px) {
  .modal-geo__dropdown-item {
    padding: 2.5333333333vw 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  .modal-geo__dropdown-item:hover {
    background-color: #F2F2F2;
  }
}
.modal-geo__dropdown-item:active {
  background-color: #CCC;
  transition: background-color 0.1s ease;
}
.mobile-geo {
  z-index: 2002;
  display: flex;
  flex-direction: column;
}
.mobile-geo__top {
  display: flex;
  justify-content: flex-end;
  border-bottom: solid var(--gray-lighter);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .mobile-geo__top {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .mobile-geo__top {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .mobile-geo__top {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .mobile-geo__top {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-geo__top {
    padding: 2.1333333333vw;
  }
}
.modal-subscribe {
  background-color: transparent;
  width: 29.1666666667vw;
  height: 12.0833333333vw;
  z-index: 2100;
}
@media screen and (width <= 1440px) {
  .modal-subscribe {
    width: 40.9956076135vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe {
    width: 72.9166666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe {
    width: 149.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-subscribe {
    height: 16.9838945827vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe {
    height: 30.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe {
    height: 61.8666666667vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe {
    width: 100%;
    height: 100%;
    background: var(--gray-white);
    transform: translate(-50%, 200%);
  }
  .modal-subscribe.active {
    transform: translate(-50%, -50%);
  }
}
.modal-subscribe__container {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-subscribe__container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe__container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__container {
    height: 100%;
  }
}
.modal-subscribe__top {
  display: none;
  border-bottom: solid var(--gray-lighter);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .modal-subscribe__top {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__top {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe__top {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__top {
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe__top {
    padding: 2.1333333333vw;
  }
}
.modal-subscribe__close {
  display: none;
}
@media screen and (width <= 1025px) {
  .modal-subscribe__close {
    display: flex;
  }
}
.modal-subscribe__wrapper {
  position: relative;
  padding: 1.4583333333vw;
  background-color: var(--gray-white);
  box-shadow: 0 0 0.78125vw 0 rgba(0, 0, 0, 0.1);
}
.modal-subscribe__wrapper--close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-subscribe__wrapper--close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__wrapper--close {
    right: -7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe__wrapper--close {
    right: -16vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-subscribe__wrapper {
    padding: 2.0497803807vw;
    box-shadow: 0 0 1.0980966325vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (width <= 1025px) {
  .modal-subscribe__wrapper {
    position: relative;
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
    width: 100%;
    height: 100%;
    background-color: var(--gray-white);
    box-shadow: none;
  }
}
@media screen and (width <= 481px) {
  .modal-subscribe__wrapper {
    position: relative;
    padding: 5.3333333333vw 4.2666666667vw 18.6666666667vw;
    height: 100%;
    background-color: var(--gray-white);
  }
}
.mobile-catalog {
  z-index: 2003;
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 1025px) {
  .mobile-catalog {
    padding: 1.0416666667vw 2.0833333333vw 9.1145833333vw 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog {
    padding: 2.1333333333vw 4.2666666667vw 18.6666666667vw 4.2666666667vw;
  }
}
.mobile-catalog__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content auto;
  height: 100%;
  overflow-y: auto;
}
.mobile-catalog__content > ul > li {
  display: grid;
  grid-template-rows: min-content 0fr;
  overflow: hidden;
  border-width: max(0.0520833333vw, 1px);
  transition: grid-template-rows 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .mobile-catalog__content > ul > li {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .mobile-catalog__content > ul > li {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog__content > ul > li {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .mobile-catalog__content > ul > li {
    padding: 0.2928257687vw 0;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog__content > ul > li {
    padding: 1.0666666667vw 0;
  }
}
.mobile-catalog__content > ul > li:not(:first-child) {
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--gray-lighter);
}
.mobile-catalog__content > ul > li.active {
  grid-template-rows: min-content 1fr;
}
.mobile-catalog__content > ul > li ul {
  overflow: hidden;
}
.mobile-catalog__content > ul > li ul .btn {
  width: 100%;
}
.mobile-catalog__content > ul > li ul > li {
  padding-top: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .mobile-catalog__content > ul > li ul > li {
    padding-top: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .mobile-catalog__content > ul > li ul > li {
    padding-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog__content > ul > li ul > li {
    padding-top: 1.0666666667vw;
  }
}
.mobile-catalog__top {
  display: flex;
  align-items: center;
  height: fit-content;
}
@media screen and (width <= 1025px) {
  .mobile-catalog__top {
    margin-bottom: 1.5625vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog__top {
    margin-bottom: 3.2vw;
    gap: 2.1333333333vw;
  }
}
.mobile-catalog h3 {
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
  width: 100%;
  color: var(--gray-black);
}
@media screen and (width <= 1440px) {
  .mobile-catalog h3 {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .mobile-catalog h3 {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog h3 {
    font-size: 5.3333333333vw;
  }
}
.mobile-catalog ul button.mobile-catalog__tab {
  justify-content: space-between;
}
.mobile-catalog__tab {
  justify-content: flex-start;
  width: 100%;
}
.mobile-catalog__tab.active {
  background: transparent;
  cursor: pointer;
}
.mobile-catalog__tab.active .tab__icon-right {
  transform: scale(1, -1);
}
.mobile-catalog__tab .tab__text {
  font-weight: 700;
}
.mobile-catalog__tab .tab__icon-right {
  transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.mobile-catalog__tab--sale {
  color: var(--error-dark);
}
.mobile-catalog__tab--sale .tab__text {
  font-weight: 700;
}
.mobile-catalog__link {
  width: 100%;
  align-self: end;
  margin-bottom: 3.125vw;
}
@media screen and (width <= 1440px) {
  .mobile-catalog__link {
    margin-bottom: 4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .mobile-catalog__link {
    margin-bottom: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .mobile-catalog__link {
    margin-bottom: 16vw;
  }
}
.modal-catalog.modal-lite {
  padding-top: 8.4375vw;
  z-index: 1000;
}
.modal-catalog__content {
  padding: 7.5vw 2.0833333333vw 2.0833333333vw 4.375vw;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  width: 25vw;
  height: 100%;
  background-color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .modal-catalog__content {
    padding: 9.663250366vw 3.0014641288vw 1.4641288433vw;
    width: 35.1390922401vw;
  }
}
.modal-catalog__categories {
  width: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-catalog__categories::-webkit-scrollbar {
  display: none;
}
.modal-catalog__categories::-webkit-scrollbar-thumb {
  display: none;
}
.modal-catalog__categories > ul > li {
  display: grid;
  grid-template-rows: min-content 0fr;
  padding: 0.4166666667vw 0;
  overflow: hidden;
  border-width: max(0.0520833333vw, 1px);
  transition: grid-template-rows 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .modal-catalog__categories > ul > li {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-catalog__categories > ul > li {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-catalog__categories > ul > li {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .modal-catalog__categories > ul > li {
    padding: 0.5856515373vw 0;
  }
}
.modal-catalog__categories > ul > li:not(:first-child) {
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--gray-lighter);
}
.modal-catalog__categories > ul > li.active {
  grid-template-rows: min-content 1fr;
}
.modal-catalog__categories > ul > li ul {
  overflow: hidden;
}
.modal-catalog__categories > ul > li ul > li {
  padding-top: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .modal-catalog__categories > ul > li ul > li {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-catalog__categories > ul > li ul > li {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-catalog__categories > ul > li ul > li {
    padding-top: 2.1333333333vw;
  }
}
.modal-catalog ul {
  display: flex;
  flex-direction: column;
}
.modal-catalog ul a, .modal-catalog ul button {
  width: 100%;
  text-align: left;
}
.modal-catalog ul button.modal-catalog__tab, .modal-catalog ul button.modal-catalog__tab.tab-size_m {
  justify-content: space-between;
}
.modal-catalog__tab .tab__icon-right {
  transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.modal-catalog__tab.active {
  background: transparent;
  cursor: pointer;
}
.modal-catalog__tab.active .tab__icon-right {
  transform: scale(1, -1);
}
.modal-catalog__tab .tab-size_m, .modal-catalog__tab-child .tab-size_m {
  justify-content: flex-start;
}
.modal-catalog__tab .tab__text {
  font-weight: 700;
}
.modal-catalog__tab--sale.tab-secondary {
  color: var(--error-dark);
}
.modal-catalog__tab-child.tab-size_m, .modal-catalog__tab.tab-size_m {
  justify-content: flex-start;
}
.modal-catalog__tab.tab-size_m .tab__text {
  font-weight: 700;
}
.modal-catalog__button.btn-size_s {
  width: 100%;
}
.modal-menu {
  z-index: 2001;
}
.modal-menu.modal_sheet_left {
  padding: unset;
}
.modal-menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--gray-lighter);
  overflow-y: auto;
  border-width: max(0.0520833333vw, 1px);
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1440px) {
  .modal-menu__content {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-menu__content {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-menu__content {
    border-width: max(0.2666666667vw, 1px);
  }
}
.modal-menu__content::-webkit-scrollbar {
  display: none;
}
.modal-menu__content::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1025px) {
  .modal-menu__content {
    padding: 9.5052083333vw 1.5625vw 9.1145833333vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__content {
    padding: 19.4666666667vw 3.2vw 18.6666666667vw 2.1333333333vw;
  }
}
.modal-menu__content .tab, .modal-menu__content .btn {
  width: 100%;
  justify-content: flex-start;
}
@media screen and (width <= 1025px) {
  .modal-menu__content nav {
    margin-bottom: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__content nav {
    margin-bottom: 16vw;
  }
}
.modal-menu__socials {
  margin-top: 0.625vw;
  display: flex;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .modal-menu__socials {
    margin-top: 0.878477306vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-menu__socials {
    margin-top: 1.5625vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__socials {
    margin-top: 3.2vw;
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-menu__socials.btn-social {
    margin-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__socials.btn-social {
    margin-right: 2.1333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-menu__phone {
    padding-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__phone {
    padding-left: 2.1333333333vw;
  }
}
.modal-menu__collapsible_catalog .tab-image-secondary.collapsible__trigger {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .modal-menu__collapsible_catalog .tab-image-secondary.collapsible__trigger:hover {
    color: var(--color1-main);
  }
}
.modal-menu__collapsible_catalog .tab-image-secondary.collapsible__trigger:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.modal-menu__collapsible_catalog .tab-image-secondary.collapsible__trigger.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
@media screen and (width <= 1025px) {
  .modal-menu .modal-menu__geo {
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu .modal-menu__geo {
    padding: 0 3.2vw;
  }
}
.collapsible {
  width: fit-content;
  display: grid;
  grid-template-rows: min-content 0fr;
  overflow: hidden;
  width: 100%;
  transition: grid-template-rows 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.collapsible.active {
  grid-template-rows: min-content 1fr;
}
.collapsible.active > .collapsible__trigger .tab-image__icon-right {
  transform: rotateX(180deg);
}
.collapsible__trigger {
  width: 100% !important;
}
.collapsible__trigger .tab-image__text-wrap {
  margin-right: auto;
}
.collapsible__menu {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
  overflow: hidden;
}
.collapsible__option {
  width: 100% !important;
}
.collapsible__option:first-of-type {
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .collapsible__option:first-of-type {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .collapsible__option:first-of-type {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .collapsible__option:first-of-type {
    margin-top: 2.1333333333vw;
  }
}
.collapsible__option .collapsible__option {
  padding-left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .collapsible__option .collapsible__option {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .collapsible__option .collapsible__option {
    padding-left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .collapsible__option .collapsible__option {
    padding-left: 3.2vw;
  }
}
.collapsible__link {
  width: 100% !important;
}
.collapsible__link .tab-image__text-wrap {
  margin-right: auto;
}
.tab-image {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .tab-image {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .tab-image {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tab-image {
    border-width: max(0.5333333333vw, 2px);
  }
}
.tab-image__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 0;
  margin-inline: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image__text-wrap {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__text-wrap {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__text-wrap {
    margin-inline: 1.0666666667vw;
  }
}
.tab-image__text {
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.tab-image__desc {
  color: var(--gray-medium);
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.tab-image__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: transparent solid;
  width: fit-content;
  color: var(--color1-light);
  background: var(--color1-lighter);
}
.tab-image__marker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .tab-image__marker-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__marker-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__marker-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab-image__icon-left, .tab-image__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .tab-image__icon-left, .tab-image__icon-right {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__icon-left, .tab-image__icon-right {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__icon-left, .tab-image__icon-right {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab-image__badge {
  height: 0.8333333333vw;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  background: var(--error-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1440px) {
  .tab-image__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-image-primary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-primary:hover {
    color: var(--color1-main);
  }
}
.tab-image-primary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-image-primary.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
.tab-image-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-secondary {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-secondary:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.tab-image-secondary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-image-secondary.active {
  cursor: default;
  background: transparent;
  color: var(--gray-darker);
}
.tab-image-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-outline {
  background: transparent;
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-outline:hover {
    background: var(--gray-lighter);
    border-color: var(--color1-light);
    color: var(--gray-dark);
  }
}
.tab-image-outline:active {
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-black);
}
.tab-image-outline.active {
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: var(--gray-darker);
}
.tab-image-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  border-bottom-color: var(--color1-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-underline:hover {
    border-bottom-color: var(--color1-light);
  }
}
.tab-image-underline:active {
  border-bottom-color: var(--color1-main);
}
.tab-image-underline.active {
  cursor: default;
  background: transparent;
  color: var(--color1-main);
  border-bottom-color: var(--color1-main);
}
.tab-image-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-image-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-flat:hover {
    color: var(--color1-main);
  }
}
.tab-image-flat:active {
  color: var(--color1-darker);
}
.tab-image-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-black);
}
.tab-image-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.tab-image-size_xl {
  height: 3.75vw;
  padding-inline: 0.4166666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl {
    height: 5.270863836vw;
    padding-inline: 0.5856515373vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl {
    height: 9.375vw;
    padding-inline: 1.0416666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl {
    height: 19.2vw;
    padding-inline: 2.1333333333vw;
    gap: 2.1333333333vw;
  }
}
.tab-image-size_xl:has(.tab-image__image, .tab-image__marker) {
  padding-inline-start: 0.2083333333vw;
  padding-inline-end: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.2928257687vw;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.5208333333vw;
    padding-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 1.0666666667vw;
    padding-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
  margin-inline-start: 0vw;
  margin-inline-end: 0.625vw;
  border-radius: 0.4166666667vw;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    width: 4.6852122987vw;
    height: 4.6852122987vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 3.2vw;
  }
}
.tab-image-size_xl .tab-image__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl .tab-image__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl .tab-image__text {
    font-size: 4.2666666667vw;
  }
}
.tab-image-size_xl .tab-image__desc {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xl .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xl .tab-image__desc {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl .tab-image__desc {
    font-size: 2.9333333333vw;
  }
}
.tab-image-size_l {
  height: 3.3333333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_l {
    height: 4.6852122987vw;
    padding-inline: 0.5856515373vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l {
    height: 8.3333333333vw;
    padding-inline: 1.0416666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l {
    height: 17.0666666667vw;
    padding-inline: 2.1333333333vw;
    gap: 2.1333333333vw;
  }
}
.tab-image-size_l:has(.tab-image__image, .tab-image__marker) {
  padding-inline-start: 0.2083333333vw;
  padding-inline-end: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_l:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.2928257687vw;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.5208333333vw;
    padding-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 1.0666666667vw;
    padding-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
  margin-inline-start: 0vw;
  margin-inline-end: 0.878477306vw;
  border-radius: 0.4166666667vw;
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 3.2vw;
  }
}
.tab-image-size_l .tab-image__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .tab-image-size_l .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l .tab-image__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l .tab-image__text {
    font-size: 4.2666666667vw;
  }
}
.tab-image-size_l .tab-image__desc {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_l .tab-image__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_l .tab-image__desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l .tab-image__desc {
    font-size: 3.4666666667vw;
  }
}
.tab-image-size_m {
  height: 2.9166666667vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_m {
    height: 4.0995607613vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m {
    height: 7.2916666667vw;
    padding-inline: 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m {
    height: 14.9333333333vw;
    padding-inline: 3.2vw;
    gap: 1.0666666667vw;
  }
}
.tab-image-size_m:has(.tab-image__image, .tab-image__marker) {
  padding-inline-start: 0.2083333333vw;
  padding-inline-end: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_m:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.2928257687vw;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.5208333333vw;
    padding-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 1.0666666667vw;
    padding-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
  margin-inline-start: 0vw;
  margin-inline-end: 0.4166666667vw;
  border-radius: 0.4166666667vw;
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    width: 12.8vw;
    height: 12.8vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_m .tab-image__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_m .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m .tab-image__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m .tab-image__text {
    font-size: 4.2666666667vw;
  }
}
.tab-image-size_m .tab-image__desc {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_m .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_m .tab-image__desc {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m .tab-image__desc {
    font-size: 2.9333333333vw;
  }
}
.tab-image-size_s {
  height: 2.5vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_s {
    height: 3.513909224vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s {
    height: 6.25vw;
    padding-inline: 1.0416666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s {
    height: 12.8vw;
    padding-inline: 2.1333333333vw;
    gap: 1.0666666667vw;
  }
}
.tab-image-size_s:has(.tab-image__image, .tab-image__marker) {
  padding-inline-start: 0.2083333333vw;
  padding-inline-end: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_s:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.2928257687vw;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0.5208333333vw;
    padding-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 1.0666666667vw;
    padding-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
  margin-inline-start: 0vw;
  margin-inline-end: 0.4166666667vw;
  border-radius: 0.4166666667vw;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    margin-inline-start: 0vw;
    margin-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_s .tab-image__text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_s .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s .tab-image__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s .tab-image__text {
    font-size: 4.2666666667vw;
  }
}
.tab-image-size_s .tab-image__desc {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_s .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_s .tab-image__desc {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s .tab-image__desc {
    font-size: 2.9333333333vw;
  }
}
.tab-image-size_xs {
  height: 2.0833333333vw;
  padding-inline: 0.2083333333vw;
  gap: 0;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs {
    height: 2.9282576867vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs {
    height: 5.2083333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs {
    height: 10.6666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-image-size_xs:has(.tab-image__image, .tab-image__marker) {
  padding-inline-start: 0;
  padding-inline-end: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0;
    padding-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0;
    padding-inline-end: 2.1333333333vw;
  }
}
.tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
  margin-inline-start: -0.15625vw;
  margin-inline-end: 0.5729166667vw;
  border-radius: 0.625vw;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    margin-inline-start: -0.2196193265vw;
    margin-inline-end: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    margin-inline-start: -0.390625vw;
    margin-inline-end: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    margin-inline-start: -0.8vw;
    margin-inline-end: 2.9333333333vw;
  }
}
.tab-image-size_xs .tab-image__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__text {
    font-size: 3.4666666667vw;
  }
}
.tab-image-size_xs .tab-image__desc {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__desc {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__desc {
    font-size: 2.9333333333vw;
  }
}
.tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    margin-inline: 1.0666666667vw;
  }
}
.tab-image-theme_dark .tab-image__marker {
  background: var(--gray-medium);
  color: var(--gray-darker);
}
.tab-image-theme_dark.tab-image-primary {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-theme_dark.tab-image-primary:hover {
    color: var(--color1-light);
  }
}
.tab-image-theme_dark.tab-image-primary:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.tab-image-theme_dark.tab-image-primary.active {
  cursor: default;
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-image-theme_dark.tab-image-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-theme_dark.tab-image-secondary {
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-theme_dark.tab-image-secondary:hover {
    background: var(--gray-dark);
    color: var(--color1-light);
  }
}
.tab-image-theme_dark.tab-image-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--color1-main);
}
.tab-image-theme_dark.tab-image-secondary.active {
  cursor: default;
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-image-theme_dark.tab-image-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-theme_dark.tab-image-outline {
  background: transparent;
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-theme_dark.tab-image-outline:hover {
    border-color: var(--gray-medium);
  }
}
.tab-image-theme_dark.tab-image-outline:active {
  background: var(--gray-dark);
  border-color: var(--gray-medium);
}
.tab-image-theme_dark.tab-image-outline.active {
  cursor: default;
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-lighter);
}
.tab-image-theme_dark.tab-image-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-image-theme_dark.tab-image-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-theme_dark.tab-image-underline:hover {
    border-bottom-color: var(--gray-medium);
  }
}
.tab-image-theme_dark.tab-image-underline:active {
  border-bottom-color: var(--gray-dark);
}
.tab-image-theme_dark.tab-image-underline.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
  border-bottom-color: var(--color1-main);
}
.tab-image-theme_dark.tab-image-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-image-theme_dark.tab-image-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .tab-image-theme_dark.tab-image-flat:hover {
    color: var(--color1-light);
  }
}
.tab-image-theme_dark.tab-image-flat:active {
  color: var(--color1-main);
}
.tab-image-theme_dark.tab-image-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
}
.tab-image-theme_dark.tab-image-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.modal-newsletter-success {
  max-width: 33.3333333333vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success {
    max-width: 46.8521229868vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success {
    max-width: 83.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success {
    max-width: 170.6666666667vw;
  }
}
.modal-newsletter-success__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal-newsletter-success__content {
  padding: 2.0833333333vw;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__content {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__content {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__content {
    padding: 5.3333333333vw;
  }
}
.modal-newsletter-success__top {
  display: flex;
  flex-direction: row;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__top {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__top {
    flex-direction: column;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__top {
    gap: 3.2vw;
  }
}
.modal-newsletter-success__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-white);
  background: var(--success-light);
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__marker {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__marker {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__marker {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.modal-newsletter-success__marker svg {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__marker svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__marker svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__marker svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.modal-newsletter-success__text {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__text {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__text {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__text {
    gap: 3.2vw;
  }
}
.modal-newsletter-success__title {
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__title {
    font-size: 5.3333333333vw;
  }
}
.modal-newsletter-success__desc {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__desc {
    font-size: 4.2666666667vw;
  }
}
.modal-newsletter-success__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__buttons {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__buttons {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.modal-newsletter-success__button-confirm {
  width: 100%;
}
.modal-newsletter-success__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-newsletter-success__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-newsletter-success__button-close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-newsletter-success__button-close {
    top: 2.1333333333vw;
    right: 2.1333333333vw;
  }
}
.modal-form-error {
  max-width: 26.0416666667vw;
  width: 100%;
  z-index: 2003;
}
@media screen and (width <= 1440px) {
  .modal-form-error {
    max-width: 36.6032210835vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error {
    max-width: none;
    height: fit-content;
  }
  .modal-form-error.modal_dialog {
    transform: none;
    top: auto;
    left: auto;
    bottom: -25%;
    opacity: 0;
    transition: bottom 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-form-error.active {
    bottom: 0;
    opacity: 1;
  }
}
.modal-form-error__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 1025px) {
  .modal-form-error__wrapper {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__wrapper {
    padding: 2.1333333333vw;
  }
}
.modal-form-error__content {
  padding: 2.0833333333vw;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-form-error__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-form-error__content {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__content {
    padding: 2.6041666667vw 0 9.1145833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .modal-form-error__content {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-form-error__content {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .modal-form-error__content {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__content {
    padding: 5.3333333333vw 0 18.6666666667vw;
  }
}
.modal-form-error__top {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  gap: 0.625vw 1.0416666667vw;
  grid-auto-flow: row;
  grid-template-areas: "marker title" "marker text";
}
@media screen and (width <= 1440px) {
  .modal-form-error__top {
    gap: 0.878477306vw 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__top {
    gap: 1.5625vw 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__top {
    gap: 3.2vw 5.3333333333vw;
  }
}
.modal-form-error__marker {
  background: var(--error-light);
  color: var(--error-dark);
  grid-area: marker;
}
.modal-form-error__title {
  color: var(--gray-black);
  grid-area: title;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-form-error__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__title {
    font-size: 5.3333333333vw;
  }
}
.modal-form-error__text {
  color: var(--gray-dark);
  grid-area: text;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-form-error__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__text {
    font-size: 4.2666666667vw;
  }
}
.modal-form-error__button-confirm {
  width: 100%;
}
.modal-form-error__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-form-error__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-form-error__button-close {
    background: var(--gray-lighter);
    color: var(--gray-darker);
    margin-bottom: 1.0416666667vw;
    position: static;
    align-self: flex-end;
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
  .modal-form-error__button-close:active {
    background: var(--color1-lighter);
    color: var(--color1-darker);
  }
}
@media screen and (width <= 481px) {
  .modal-form-error__button-close {
    margin-bottom: 2.1333333333vw;
  }
}
.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: transparent solid;
  width: fit-content;
  color: var(--gray-dark);
  background: var(--gray-lighter);
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------SIZES-----------*/
}
.marker__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.marker-size_xl {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
}
@media screen and (width <= 1440px) {
  .marker-size_xl {
    width: 5.8565153734vw;
    height: 5.8565153734vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_xl {
    width: 10.4166666667vw;
    height: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
  }
}
.marker-size_xl .marker__icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .marker-size_xl .marker__icon {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_xl .marker__icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl .marker__icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.marker-size_l {
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1440px) {
  .marker-size_l {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_l {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.marker-size_l .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .marker-size_l .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_l .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_m {
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1440px) {
  .marker-size_m {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_m {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.marker-size_m .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .marker-size_m .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_m .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_s {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .marker-size_s {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_s {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.marker-size_s .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .marker-size_s .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_s .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_xs {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .marker-size_xs {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_xs {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.marker-size_xs .marker__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .marker-size_xs .marker__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .marker-size_xs .marker__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs .marker__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.search-modal {
  width: 100%;
  max-width: 52.0833333333vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  z-index: 2005;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.search-modal::-webkit-scrollbar {
  display: none;
}
.search-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1440px) {
  .search-modal {
    max-width: 73.2064421669vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 7.8125vw;
    transform: translate(100%, -50%) translateZ(0) !important;
  }
}
@media screen and (width <= 481px) {
  .search-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 16vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal.active {
    transform: translate(-50%, -50%) translateZ(0) !important;
  }
}
.search-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__container {
    gap: 0;
  }
}
.search-modal__button-close {
  flex-shrink: 0;
}
.search-modal__button-submit {
  flex-shrink: 0;
}
.search-modal__input-search {
  display: flex;
  width: 100%;
}
.search-modal__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  height: 2.5vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__top {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__top {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__top {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .search-modal__top {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__top {
    max-width: unset;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__top {
    height: 12.8vw;
  }
}
.search-modal__title {
  color: var(--gray-black);
  max-width: 24ch;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1440px) {
  .search-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__title {
    font-size: 5.3333333333vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .search-modal__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__title {
    max-width: 60ch;
  }
}
@media screen and (width <= 481px) {
  .search-modal__title {
    max-width: 20ch;
  }
}
.search-modal__desc {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .search-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__desc {
    font-size: 4.2666666667vw;
  }
}
.search-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  max-height: 50dvh;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__body {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__body {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body {
    margin-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__body {
    padding-top: 1.5625vw;
    max-height: unset;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body {
    padding-top: 3.2vw;
  }
}
.search-modal__body-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .search-modal__body-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__body-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body-wrap {
    gap: 3.2vw;
  }
}
.search-modal__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 0.8333333333vw;
  column-gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__list {
    row-gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list {
    row-gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list {
    row-gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .search-modal__list {
    column-gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list {
    column-gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list {
    column-gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.8333333333vw;
    column-gap: 0.625vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .search-modal__list {
    row-gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .search-modal__list {
    row-gap: 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .search-modal__list {
    row-gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .search-modal__list {
    column-gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .search-modal__list {
    column-gap: 1.5625vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .search-modal__list {
    column-gap: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list {
    grid-template-columns: 1fr;
  }
}
.search-modal__list-title {
  color: var(--gray-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .search-modal__list-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-title {
    font-size: 4.2666666667vw;
  }
}
.search-modal__list-title.highlighted {
  font-size: 1.4583333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-heading);
}
@media screen and (width <= 1440px) {
  .search-modal__list-title.highlighted {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list-title.highlighted {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-title.highlighted {
    font-size: 6.4vw;
  }
}
.search-modal__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__list-wrap {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__list-wrap {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-wrap {
    gap: 5.3333333333vw;
  }
}
.search-modal__button {
  justify-content: flex-start !important;
  width: 100% !important;
}
.search-modal__actions {
  display: flex;
  flex-direction: column;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .search-modal__actions {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__actions {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__actions {
    margin-top: 2.1333333333vw;
  }
}
.search-modal__actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .search-modal__actions-buttons {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .search-modal__actions-buttons {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__actions-buttons {
    gap: 1.0666666667vw;
  }
}
.search-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .search-card {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card {
    gap: 3.2vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search-card:hover .search-card__content-bottom {
    opacity: 0.8;
    visibility: visible;
  }
  .search-card:hover .search-card__img img {
    transform: scale(1.1);
  }
  .search-card:hover .search-card__name {
    color: var(--color1-main);
  }
}
.search-card:active .search-card__img img {
  transform: none;
}
.search-card:active .search-card__name {
  color: var(--color1-dark);
}
.search-card__link {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search-card__img {
  overflow: hidden;
}
@media screen and (width <= 1025px) {
  .search-card__img {
    height: 60.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__img {
    height: 118.4vw;
  }
}
.search-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.search-card__img--desktop {
  height: 28.3333333333vw;
}
@media screen and (width <= 1440px) {
  .search-card__img--desktop {
    height: 28.9165446559vw;
  }
}
.search-card__img--mobile {
  height: 100%;
}
.search-card__name {
  margin-bottom: 0.2083333333vw;
  color: var(--gray-darker);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1440px) {
  .search-card__name {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__name {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__name {
    font-size: 5.3333333333vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .search-card__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1440px) {
  .search-card__name {
    margin-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__name {
    margin-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__name {
    margin-bottom: 1.0666666667vw;
  }
}
.search-card__prices {
  display: flex;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .search-card__prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__prices {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__prices {
    gap: 2.1333333333vw;
  }
}
.search-card__price {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .search-card__price {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__price {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__price {
    font-size: 4.2666666667vw;
  }
}
.search-card__price--actual {
  color: var(--gray-dark);
}
.search-card__price--old {
  color: var(--gray-medium);
  text-decoration: line-through;
}
.search-card__top {
  display: flex;
  justify-content: center;
}
.search-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.search-card__content-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.4583333333vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--gray-lighter);
  transition: opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .search-card__content-bottom {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__content-bottom {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__content-bottom {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .search-card__content-bottom {
    padding: 2.0497803807vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__content-bottom {
    display: none;
  }
}
.search-card__content-bottom span {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .search-card__content-bottom span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__content-bottom span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__content-bottom span {
    font-size: 3.4666666667vw;
  }
}
.search-card__sizes {
  display: flex;
  gap: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .search-card__sizes {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__sizes {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__sizes {
    gap: 4.2666666667vw;
  }
}
.search-card__badges {
  position: absolute;
  top: 0.625vw;
  left: 0.625vw;
  display: flex;
  gap: 0.4166666667vw;
  gap: 0.4166666667vw;
  top: 0.625vw;
  left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .search-card__badges {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__badges {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__badges {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .search-card__badges {
    top: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__badges {
    top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__badges {
    top: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .search-card__badges {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__badges {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__badges {
    left: 3.2vw;
  }
}
.search-card__button-favorite {
  z-index: 2;
  position: absolute;
  top: 0.625vw;
  right: 0.625vw;
}
@media screen and (width <= 1440px) {
  .search-card__button-favorite {
    top: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__button-favorite {
    top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__button-favorite {
    top: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .search-card__button-favorite {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .search-card__button-favorite {
    right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__button-favorite {
    right: 3.2vw;
  }
}
.badge {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: background 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
}
.badge__icon {
  flex-shrink: 0;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.badge__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.badge-size_xl {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xl {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xl {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl {
    font-size: 4.2666666667vw;
  }
}
.badge-size_l {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .badge-size_l {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_l {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l {
    font-size: 3.4666666667vw;
  }
}
.badge-size_m {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .badge-size_m {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_m {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m {
    font-size: 3.4666666667vw;
  }
}
.badge-size_s {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .badge-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_s {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s {
    font-size: 2.9333333333vw;
  }
}
.badge-size_xs {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .badge-size_xs {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xs {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xs {
    font-size: 2.9333333333vw;
  }
}
.badge-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
.badge-primary-light {
  background: var(--color1-light);
  color: var(--gray-dark);
}
.badge-secondary {
  background: var(--gray-lighter);
  color: var(--gray-dark);
}
.badge-accent {
  background: var(--color2-dark);
  color: var(--gray-dark);
}
.badge-accent-light {
  background: var(--color2-main);
  color: var(--gray-white);
}
.badge-error {
  background: var(--error-dark);
  color: var(--gray-white);
}
.badge-alert {
  background: var(--alert-light);
  color: var(--gray-dark);
}
.badge-success {
  background: var(--success-light);
  color: var(--gray-dark);
}
.badge-gray {
  background: var(--color1-lighter);
  color: var(--gray-dark);
}
.badge-dark {
  background: var(--gray-dark);
  color: var(--gray-white);
}
.badge-white {
  background: var(--gray-white);
  color: var(--color1-dark);
}
.badge-gradient {
  background: var(--gradient1-main);
  color: var(--gray-white);
}
.badge-gradient-light {
  background: var(--gradient1-light);
  color: var(--gray-white);
}
.badge-sale {
  background: var(--error-light);
  color: var(--error-dark);
}
.badge-new {
  background: var(--alert-light);
  color: var(--gray-dark);
}
.badge-no-stock {
  background: var(--gray-medium);
  color: var(--gray-white);
}
.badge-size_xl {
  height: 2.5vw;
  padding: 0 1.0416666667vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xl {
    height: 3.513909224vw;
    padding: 0 1.4641288433vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xl {
    height: 6.25vw;
    padding: 0 2.6041666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl {
    height: 12.8vw;
    padding: 0 5.3333333333vw;
    gap: 1.0666666667vw;
  }
}
.badge-size_xl:has(.badge__icon) {
  padding-left: 0.625vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xl:has(.badge__icon) {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xl:has(.badge__icon) {
    padding-left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl:has(.badge__icon) {
    padding-left: 3.2vw;
  }
}
.badge-size_xl .badge__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xl .badge__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xl .badge__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl .badge__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.badge-size_l {
  height: 2.0833333333vw;
  padding: 0 0.8333333333vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_l {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_l {
    height: 5.2083333333vw;
    padding: 0 2.0833333333vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l {
    height: 10.6666666667vw;
    padding: 0 4.2666666667vw;
    gap: 1.0666666667vw;
  }
}
.badge-size_l:has(.badge__icon) {
  padding-left: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .badge-size_l:has(.badge__icon) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_l:has(.badge__icon) {
    padding-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l:has(.badge__icon) {
    padding-left: 2.1333333333vw;
  }
}
.badge-size_l .badge__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .badge-size_l .badge__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_l .badge__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l .badge__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.badge-size_m {
  height: 1.6666666667vw;
  padding: 0 0.625vw;
  gap: 0.1041666667vw;
}
@media screen and (width <= 1440px) {
  .badge-size_m {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_m {
    height: 4.1666666667vw;
    padding: 0 1.5625vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m {
    height: 8.5333333333vw;
    padding: 0 3.2vw;
    gap: 0.5333333333vw;
  }
}
.badge-size_m:has(.badge__icon) {
  padding-left: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .badge-size_m:has(.badge__icon) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_m:has(.badge__icon) {
    padding-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m:has(.badge__icon) {
    padding-left: 2.1333333333vw;
  }
}
.badge-size_m .badge__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_m .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_m .badge__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m .badge__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.badge-size_s {
  height: 1.25vw;
  padding: 0 0.4166666667vw;
  gap: 0.1041666667vw;
}
@media screen and (width <= 1440px) {
  .badge-size_s {
    height: 1.756954612vw;
    padding: 0 0.5856515373vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_s {
    height: 3.125vw;
    padding: 0 1.0416666667vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s {
    height: 6.4vw;
    padding: 0 2.1333333333vw;
    gap: 0.5333333333vw;
  }
}
.badge-size_s:has(.badge__icon) {
  padding-left: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_s:has(.badge__icon) {
    padding-left: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_s:has(.badge__icon) {
    padding-left: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s:has(.badge__icon) {
    padding-left: 1.0666666667vw;
  }
}
.badge-size_s .badge__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_s .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_s .badge__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s .badge__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.badge-size_xs {
  height: 0.8333333333vw;
  padding: 0 0.2083333333vw;
  gap: 0.1041666667vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xs {
    height: 1.1713030747vw;
    padding: 0 0.2928257687vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xs {
    height: 2.0833333333vw;
    padding: 0 0.5208333333vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xs {
    height: 4.2666666667vw;
    padding: 0 1.0666666667vw;
    gap: 0.5333333333vw;
  }
}
.badge-size_xs:has(.badge__icon) {
  padding-left: 0.0520833333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xs:has(.badge__icon) {
    padding-left: 0.0732064422vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xs:has(.badge__icon) {
    padding-left: 0.1302083333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xs:has(.badge__icon) {
    padding-left: 0.2666666667vw;
  }
}
.badge-size_xs .badge__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .badge-size_xs .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .badge-size_xs .badge__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xs .badge__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.modal-cookie {
  width: 100%;
  max-width: 100dvw;
  position: fixed !important;
  margin: 0;
  bottom: 0;
  top: auto;
  background: var(--gray-lighter);
  z-index: 2005;
  transform: translateY(100%);
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.modal-cookie.active {
  transform: translateY(0);
  user-select: auto;
  pointer-events: auto;
}
.modal-cookie__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4166666667vw;
  padding: 0.625vw 0 0.8333333333vw 0;
  border-top: solid var(--gray-light);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1440px) {
  .modal-cookie__container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .modal-cookie__container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1440px) {
  .modal-cookie__container {
    gap: 0.5856515373vw;
    padding: 0.878477306vw 0 1.1713030747vw 0;
  }
}
@media screen and (width <= 1025px) {
  .modal-cookie__container {
    display: grid;
    gap: 1.5625vw;
    padding: 1.5625vw 0 9.375vw 0;
  }
  .modal-cookie__container.cookie_extended-tapbar {
    padding-bottom: 16.2760416667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    gap: 3.2vw;
    padding: 3.2vw 0 19.2vw 0;
  }
  .modal-cookie__container.cookie_extended-tapbar {
    padding-bottom: 36vw;
  }
}
.modal-cookie__description {
  display: grid;
  gap: 0.2083333333vw;
  color: var(--gray-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .modal-cookie__description {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cookie__description {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-cookie__description {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cookie__description {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    gap: 1.0666666667vw;
  }
}
.modal-cookie__title {
  color: var(--gray-darker);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .modal-cookie__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cookie__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__title {
    font-size: 4.2666666667vw;
  }
}
.modal-cookie__submit {
  width: max-content;
}
@media screen and (width <= 481px) {
  .modal-cookie__submit {
    width: 100%;
  }
}
.modal-cookie__submit:focus-visible {
  outline: none;
}
.toast-container {
  position: fixed;
  width: fit-content;
  margin-inline: auto;
  right: 0.4166666667vw;
  left: 0.4166666667vw;
  bottom: 0.4166666667vw;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .toast-container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .toast-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .toast-container {
    right: 0.5856515373vw;
    left: 0.5856515373vw;
    bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .toast-container {
    right: 1.0416666667vw;
    left: 1.0416666667vw;
    bottom: 8.59375vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    right: 2.1333333333vw;
    left: 2.1333333333vw;
    bottom: 17.6vw;
  }
}
.toast {
  position: relative;
  max-width: 18.6458333333vw;
  width: fit-content;
  padding: 0.4166666667vw 0.625vw;
  box-shadow: var(--shadow-near);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--gray-black);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(100%) scale(0.8);
  transform-origin: bottom center;
  transition: opacity 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02), filter 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .toast {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .toast {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1440px) {
  .toast {
    max-width: 26.2079062958vw;
    padding: 0.5856515373vw 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .toast {
    max-width: 46.6145833333vw;
    padding: 1.0416666667vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    max-width: 95.4666666667vw;
    padding: 2.1333333333vw 3.2vw;
  }
}
.toast.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.toast.hide {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(100%) scale(0.8);
}
.toast--success {
  background-color: var(--success-dark);
}
.toast--success .toast__link {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .toast--success .toast__link:hover {
    color: var(--gray-lighter);
  }
}
.toast--success .toast__link:active {
  color: var(--gray-light);
}
.toast--error {
  background-color: var(--error-dark);
}
.toast--error .toast__link {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .toast--error .toast__link:hover {
    color: var(--gray-lighter);
  }
}
.toast--error .toast__link:active {
  color: var(--gray-light);
}
.toast__content {
  display: flex;
  align-items: center;
  color: var(--gray-white);
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .toast__content {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .toast__content {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast__content {
    gap: 3.2vw;
  }
}
.toast__message {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .toast__message {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .toast__message {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .toast__message {
    font-size: 3.4666666667vw;
  }
}
.toast__close svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .toast__close svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .toast__close svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .toast__close svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.toast__link {
  color: var(--color1-light);
  text-decoration: underline;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .toast__link {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .toast__link {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .toast__link {
    font-size: 3.4666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .toast__link:hover {
    color: var(--color1-lighter);
  }
}
.toast__link:active {
  color: var(--color1-main);
}
.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.15625vw;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
}
@media screen and (width <= 1440px) {
  .toast__progress {
    height: 0.2196193265vw;
  }
}
@media screen and (width <= 1025px) {
  .toast__progress {
    height: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .toast__progress {
    height: 0.8vw;
  }
}
button.trigger-toast {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #2563eb;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}
button.trigger-toast:hover {
  background-color: #1d4ed8;
}
.modal-product-remove {
  max-width: 25vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .modal-product-remove {
    max-width: 35.1390922401vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove {
    max-width: none;
    height: fit-content;
  }
  .modal-product-remove.modal_dialog {
    transform: none;
    top: auto;
    left: auto;
    bottom: -25%;
    opacity: 0;
    transition: bottom 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-product-remove.active {
    bottom: 0;
    opacity: 1;
  }
}
.modal-product-remove__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 1025px) {
  .modal-product-remove__wrapper {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__wrapper {
    padding: 2.1333333333vw;
  }
}
.modal-product-remove__content {
  padding: 2.0833333333vw;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-product-remove__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-product-remove__content {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__content {
    padding: 2.6041666667vw 0 9.1145833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .modal-product-remove__content {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-product-remove__content {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .modal-product-remove__content {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__content {
    padding: 5.3333333333vw 0 18.6666666667vw;
  }
}
.modal-product-remove__title {
  margin-bottom: 0.625vw;
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-product-remove__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-product-remove__title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__title {
    margin-bottom: 3.2vw;
  }
}
.modal-product-remove__text {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-product-remove__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__text {
    font-size: 4.2666666667vw;
  }
}
.modal-product-remove__submit {
  width: 100%;
}
.modal-product-remove__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-product-remove__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__buttons {
    gap: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__buttons {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.modal-product-remove__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-product-remove__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-product-remove__button-close {
    background: var(--gray-lighter);
    color: var(--gray-darker);
    margin-bottom: 1.0416666667vw;
    position: static;
    align-self: flex-end;
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
  .modal-product-remove__button-close:active {
    background: var(--color1-lighter);
    color: var(--color1-darker);
  }
}
@media screen and (width <= 481px) {
  .modal-product-remove__button-close {
    margin-bottom: 2.1333333333vw;
  }
}
.modal-present {
  background: var(--gray-white);
  width: 29.1666666667vw;
  height: 31.25vw;
  z-index: 2100;
}
@media screen and (width <= 1440px) {
  .modal-present {
    width: 40.9956076135vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present {
    width: 72.9166666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present {
    width: 149.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-present {
    height: 43.9238653001vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present {
    height: 78.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present {
    height: 160vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present {
    width: 100%;
    height: 100%;
    background: var(--gray-white);
    transform: translate(-50%, 200%);
    z-index: 3000;
  }
  .modal-present.active {
    transform: translate(-50%, -50%);
  }
}
.modal-present__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.1875vw;
}
@media screen and (width <= 1440px) {
  .modal-present__container {
    padding: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__container {
    padding: 5.46875vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__container {
    padding: 11.2vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__container {
    padding: 5.3333333333vw;
  }
}
.modal-present__image {
  position: absolute;
  top: 0vw;
  left: 0vw;
  width: 27.0833333333vw;
  height: 29.1666666667vw;
  user-select: none;
  z-index: 10;
}
@media screen and (width <= 1440px) {
  .modal-present__image {
    top: 0vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__image {
    top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__image {
    top: 0vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-present__image {
    left: 0vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__image {
    left: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__image {
    left: 0vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-present__image {
    width: 38.0673499268vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__image {
    width: 67.7083333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__image {
    width: 138.6666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-present__image {
    height: 40.9956076135vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__image {
    height: 72.9166666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__image {
    height: 149.3333333333vw;
  }
}
.modal-present__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 1025px) {
  .modal-present__image {
    width: 100%;
    height: 100%;
  }
}
.modal-present__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(64, 64, 64, 0) 50%, rgba(13, 13, 13, 0.6) 100%);
  pointer-events: none;
}
.modal-present__top {
  display: none;
  border-bottom: solid var(--gray-lighter);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .modal-present__top {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-present__top {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-present__top {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-present__top {
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__top {
    padding: 2.1333333333vw;
  }
}
.modal-present__close {
  display: none;
}
@media screen and (width <= 1025px) {
  .modal-present__close {
    display: flex;
  }
}
.modal-present__wrapper {
  position: relative;
  padding: 1.0416666667vw;
  background: var(--gray-white);
  box-shadow: 0 0 0.78125vw 0 rgba(0, 0, 0, 0.1);
  height: 100%;
}
@media screen and (width <= 1440px) {
  .modal-present__wrapper {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__wrapper {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__wrapper {
    padding: 5.3333333333vw;
  }
}
.modal-present__wrapper--close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-present__wrapper--close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__wrapper--close {
    right: -7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__wrapper--close {
    right: -16vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-present__wrapper {
    box-shadow: 0 0 1.0980966325vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (width <= 1025px) {
  .modal-present__wrapper {
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
    width: 100%;
    height: 100%;
    box-shadow: none;
  }
}
@media screen and (width <= 481px) {
  .modal-present__wrapper {
    padding: 3.2vw 3.2vw 18.6666666667vw;
  }
}
.modal-present__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  justify-content: flex-start;
  z-index: 20;
}
@media screen and (width <= 1440px) {
  .modal-present__card {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__card {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__card {
    gap: 3.2vw;
  }
}
.modal-present__card--title {
  font-size: 2.1875vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .modal-present__card--title {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__card--title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__card--title {
    font-size: 7.4666666667vw;
  }
}
.modal-present__card--text {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .modal-present__card--text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__card--text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__card--text {
    font-size: 4.2666666667vw;
  }
}
.modal-present__bottom {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  margin-top: auto;
}
@media screen and (width <= 1440px) {
  .modal-present__bottom {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__bottom {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__bottom {
    gap: 3.2vw;
  }
}
.modal-present__bottom--description {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .modal-present__bottom--description {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-present__bottom--description {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-present__bottom--description {
    font-size: 4.2666666667vw;
  }
}
.modal-present__form--checkbox .checkbox__custom {
  border-color: var(--gray-white);
}
.modal-present__form--checkbox .checkbox__policy {
  color: var(--gray-white);
}
.modal-present__form--checkbox .checkbox__policy a {
  color: var(--color1-light);
}
.modal-present__form--button {
  width: 100% !important;
}
.tapbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--gray-white);
  z-index: 2004;
}
.tapbar nav {
  height: 100%;
}
@media screen and (width <= 1025px) {
  .tapbar {
    display: flex;
    flex-direction: column;
    padding: 0.5208333333vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar {
    padding: 1.0666666667vw 2.1333333333vw;
  }
}
.tapbar__product {
  display: flex;
  width: 100%;
  background-color: var(--gray-white);
  border-top: solid var(--gray-lighter);
  border-bottom: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1440px) {
  .tapbar__product {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .tapbar__product {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tapbar__product {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1025px) {
  .tapbar__product {
    padding: 1.0416666667vw 0;
    align-items: center;
    gap: 1.0416666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__product {
    padding: 2.1333333333vw 0;
    gap: 2.1333333333vw;
    height: 14.9333333333vw;
  }
}
.tapbar__product:has(button.active) .tapbar__product-price--old {
  display: none;
}
.tapbar__product-controls {
  position: relative;
  width: 100%;
}
@media screen and (width <= 1025px) {
  .tapbar__product-controls {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__product-controls {
    height: 10.6666666667vw;
  }
}
.tapbar__product-minus, .tapbar__product-plus {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.tapbar__product-minus {
  left: 0;
}
.tapbar__product-plus {
  right: 0;
}
.tapbar__product-cart {
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tapbar__product-cart.active {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media screen and (width <= 1025px) {
  .tapbar__product-cart.active {
    width: calc(100% - 12.2395833333vw);
  }
}
@media screen and (width <= 481px) {
  .tapbar__product-cart.active {
    width: calc(100% - 25.0666666667vw);
  }
}
.tapbar__product-cart.active .btn__text {
  transition: none;
}
@media (hover: hover) and (pointer: fine) {
  .tapbar__product-cart.active:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.tapbar__product-cart.active:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.tapbar__product-nonstock {
  display: none;
}
.tapbar__product-nonstock_active {
  display: flex;
}
.tapbar__product-price--old {
  flex-shrink: 0;
  color: var(--gray-light);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .tapbar__product-price--old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .tapbar__product-price--old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__product-price--old {
    font-size: 3.4666666667vw;
  }
}
.tapbar__cart {
  display: flex;
  width: 100%;
  background-color: var(--gray-white);
}
@media screen and (width <= 1025px) {
  .tapbar__cart {
    flex-direction: column;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__cart {
    gap: 2.1333333333vw;
  }
}
.tapbar__cart .btn {
  width: 100%;
}
.tapbar__list {
  width: 100%;
}
@media screen and (width <= 1025px) {
  .tapbar__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 0.5208333333vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__list {
    gap: 1.0666666667vw;
    height: 14.9333333333vw;
  }
}
.tapbar li {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.tapbar li a, .tapbar li button {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (width <= 1025px) {
  .tapbar__button .btn-menu__badge {
    transform: translateX(-50%);
    left: calc(50% + 2.0833333333vw);
    width: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar__button .btn-menu__badge {
    transform: translateX(-50%);
    left: calc(50% + 4.2666666667vw);
    width: 4.2666666667vw;
  }
}
.modal-login {
  width: 25vw;
  background: transparent;
}
@media screen and (width <= 1440px) {
  .modal-login {
    width: 35.1390922401vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login {
    padding: 1.0416666667vw;
    max-width: none;
    width: 100%;
    height: 75dvh;
    background: var(--gray-white);
  }
  .modal-login.modal_dialog {
    transform: none;
    top: auto;
    left: auto;
    bottom: -25%;
    opacity: 0;
    z-index: 2003;
    transition: bottom 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-login.active {
    bottom: 0;
    opacity: 1;
  }
}
@media screen and (width <= 481px) {
  .modal-login {
    padding: 2.1333333333vw;
  }
}
.modal-login__wrapper {
  position: relative;
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-login__wrapper {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__wrapper {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__wrapper {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.modal-login__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
  flex-shrink: 0;
}
@media screen and (width <= 1440px) {
  .modal-login__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__button-close {
    background: var(--gray-lighter);
    color: var(--gray-darker);
    position: static;
    align-self: flex-end;
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
  .modal-login__button-close:active {
    background: var(--color1-lighter);
    color: var(--color1-darker);
  }
}
.modal-login__form {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-login__form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__form {
    gap: 5.3333333333vw;
  }
}
.modal-login__first-content {
  padding: 2.0833333333vw 1.0416666667vw;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-login__first-content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__first-content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__first-content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-login__first-content {
    padding: 2.9282576867vw 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__first-content {
    padding: 2.6041666667vw 0 9.1145833333vw;
    border-top: solid var(--gray-lighter);
    width: 100%;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .modal-login__first-content {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-login__first-content {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .modal-login__first-content {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-login__first-content {
    padding: 5.3333333333vw 0 18.6666666667vw;
  }
}
.modal-login__title {
  margin-bottom: 0.625vw;
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-login__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-login__title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__title {
    margin-bottom: 3.2vw;
  }
}
.modal-login__text {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-login__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__text {
    font-size: 4.2666666667vw;
  }
}
.modal-login__submit {
  width: 100%;
}
.modal-login__buttons {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  gap: 0.4166666667vw 0.625vw;
  grid-template-areas: "title title" "vk ya";
}
@media screen and (width <= 1440px) {
  .modal-login__buttons {
    gap: 0.5856515373vw 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-login__buttons {
    gap: 1.0416666667vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-login__buttons {
    gap: 2.1333333333vw 3.2vw;
  }
}
.modal-login__buttons-title {
  grid-area: title;
  justify-self: center;
}
.modal-login__buttons-vk {
  grid-area: vk;
  justify-self: end;
}
.modal-login__buttons-ya {
  grid-area: ya;
  justify-self: start;
}
.modal-sms {
  width: 25vw;
  background: transparent;
}
@media screen and (width <= 1440px) {
  .modal-sms {
    width: 35.1390922401vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms {
    padding: 1.0416666667vw;
    max-width: none;
    width: 100%;
    height: 80dvh;
    background: var(--gray-white);
  }
  .modal-sms.modal_dialog {
    transform: none;
    top: auto;
    left: auto;
    bottom: -25%;
    opacity: 0;
    z-index: 2003;
    transition: bottom 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-sms.active {
    bottom: 0;
    opacity: 1;
  }
}
@media screen and (width <= 481px) {
  .modal-sms {
    padding: 2.1333333333vw;
  }
}
.modal-sms__wrapper {
  position: relative;
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-sms__wrapper {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__wrapper {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__wrapper {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.modal-sms__form {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-sms__form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__form {
    gap: 5.3333333333vw;
  }
}
.modal-sms__first-content {
  padding: 2.0833333333vw 1.0416666667vw;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-sms__first-content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__first-content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__first-content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-sms__first-content {
    padding: 2.9282576867vw 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__first-content {
    padding: 2.6041666667vw 0 9.1145833333vw;
    border-top: solid var(--gray-lighter);
    width: 100%;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .modal-sms__first-content {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .modal-sms__first-content {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .modal-sms__first-content {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-sms__first-content {
    padding: 5.3333333333vw 0 18.6666666667vw;
  }
}
.modal-sms__title {
  margin-bottom: 0.625vw;
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-sms__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-sms__title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__title {
    margin-bottom: 3.2vw;
  }
}
.modal-sms__text {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-sms__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__text {
    font-size: 4.2666666667vw;
  }
}
.modal-sms__submit {
  width: 100%;
}
.modal-sms__notification {
  color: var(--success-medium);
  text-align: center;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .modal-sms__notification {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__notification {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__notification {
    font-size: 3.4666666667vw;
  }
}
.modal-sms__button {
  width: 100%;
}
.modal-sms__button-back {
  display: flex;
  gap: 0.2083333333vw;
  justify-content: center;
  color: var(--color1-dark);
  width: 100%;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .modal-sms__button-back {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__button-back {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__button-back {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-sms__button-back {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__button-back {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__button-back {
    gap: 1.0666666667vw;
  }
}
.modal-sms__button-back svg {
  width: 1.25vw;
  height: 1.25vw;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .modal-sms__button-back svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__button-back svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__button-back svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal-sms__button-back:hover {
    outline-color: var(--color1-main);
  }
}
.modal-sms__button-back:active {
  outline-color: var(--color1-darker);
}
.modal-sms__button-submit, .modal-sms__button-retry {
  width: 100%;
}
.modal-sms__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
  flex-shrink: 0;
}
@media screen and (width <= 1440px) {
  .modal-sms__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__button-close {
    background: var(--gray-lighter);
    color: var(--gray-darker);
    position: static;
    align-self: flex-end;
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
  .modal-sms__button-close:active {
    background: var(--color1-lighter);
    color: var(--color1-darker);
  }
}
.modal-sms__buttons {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  gap: 0.4166666667vw 0.625vw;
  grid-template-areas: "title title" "vk ya";
}
@media screen and (width <= 1440px) {
  .modal-sms__buttons {
    gap: 0.5856515373vw 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-sms__buttons {
    gap: 1.0416666667vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-sms__buttons {
    gap: 2.1333333333vw 3.2vw;
  }
}
.modal-sms__buttons-title {
  grid-area: title;
  justify-self: center;
}
.modal-sms__buttons-vk {
  grid-area: vk;
  justify-self: end;
}
.modal-sms__buttons-ya {
  grid-area: ya;
  justify-self: start;
}
.modal-auth-success {
  max-width: 20.625vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .modal-auth-success {
    max-width: 28.9897510981vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success {
    max-width: 51.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success {
    max-width: 105.6vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success {
    z-index: 2003;
    max-width: 100%;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success.active {
    top: 0;
    transform: translate(-50%, 0);
  }
}
.modal-auth-success__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal-auth-success__content {
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 1.0416666667vw;
  padding-block: 2.0833333333vw;
  padding-inline: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-auth-success__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-auth-success__content {
    padding-block: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__content {
    padding-block: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__content {
    padding-block: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-auth-success__content {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__content {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__content {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__content {
    height: 94vh;
  }
}
.modal-auth-success__title {
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
}
@media screen and (width <= 1440px) {
  .modal-auth-success__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__title {
    font-size: 5.3333333333vw;
  }
}
.modal-auth-success__text {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-auth-success__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__text {
    font-size: 4.2666666667vw;
  }
}
.modal-auth-success__submit {
  width: 100%;
}
.modal-auth-success__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.625vw;
}
@media screen and (width <= 1440px) {
  .modal-auth-success__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__buttons {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__buttons {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-top: auto;
  }
}
.modal-auth-success__button-close {
  position: absolute;
  top: 0;
  right: -3.125vw;
}
@media screen and (width <= 1440px) {
  .modal-auth-success__button-close {
    right: -4.39238653vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__button-close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__button-close {
    top: 2.1333333333vw;
    right: 2.1333333333vw;
  }
}
.modal-auth-success__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-auth-success__top {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__top {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__top {
    gap: 5.3333333333vw;
  }
}
.modal-auth-success__done {
  padding: 0.625vw;
  background: var(--success-light);
}
@media screen and (width <= 1440px) {
  .modal-auth-success__done {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__done {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__done {
    padding: 3.2vw;
  }
}
.modal-auth-success__done svg {
  width: 1.25vw;
  height: 1.25vw;
  color: var(--gray-white);
}
@media screen and (width <= 1440px) {
  .modal-auth-success__done svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-auth-success__done svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-auth-success__done svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.modal-cart {
  padding: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .modal-cart {
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart {
    padding: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart {
    padding: 8.5333333333vw;
  }
}
.modal-cart .modal__content {
  height: 100%;
  display: grid;
  background-color: var(--gray-white);
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
}
.modal-cart__top {
  padding-bottom: 0.625vw;
  display: flex;
  justify-content: space-between;
  gap: 0.625vw;
  height: fit-content;
}
@media screen and (width <= 1440px) {
  .modal-cart__top {
    gap: 0.878477306vw;
    padding-bottom: 0.878477306vw;
  }
}
.modal-cart__title {
  padding: 0.625vw 0;
  color: var(--gray-black);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (width <= 1440px) {
  .modal-cart__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .modal-cart__title {
    padding: 0.878477306vw 0;
  }
}
.modal-cart .js--mc-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.modal-cart .js--mc-total {
  color: var(--gray-black);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-cart .js--mc-total {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart .js--mc-total {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart .js--mc-total {
    font-size: 4.2666666667vw;
  }
}
.modal-cart .js--mc-sale {
  color: var(--error-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-cart .js--mc-sale {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart .js--mc-sale {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart .js--mc-sale {
    font-size: 4.2666666667vw;
  }
}
.modal-cart .js--mc-actual {
  color: var(--gray-black);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (width <= 1440px) {
  .modal-cart .js--mc-actual {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart .js--mc-actual {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart .js--mc-actual {
    font-size: 5.3333333333vw;
  }
}
.modal-cart__products {
  padding-right: 0.78125vw;
  display: flex;
  flex-direction: column;
  overflow-Y: scroll;
  overscroll-behavior: contain;
  height: 58dvh;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-cart__products::-webkit-scrollbar {
  display: none;
}
.modal-cart__products::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1440px) {
  .modal-cart__products {
    padding-right: 1.0980966325vw;
  }
}
.modal-cart__products li {
  padding: 0.625vw 0;
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .modal-cart__products li {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-cart__products li {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-cart__products li {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .modal-cart__products li {
    padding: 0.878477306vw 0;
  }
}
.modal-cart__products li:not(:first-child) {
  border-style: solid;
  border-color: transparent;
  border-bottom-color: var(--gray-lighter);
}
.modal-cart__products li:last-child {
  border-bottom-color: transparent;
}
.modal-cart__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .modal-cart__bottom {
    gap: 1.4641288433vw;
  }
}
.modal-cart__check-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal-cart__check-list li {
  padding: 0.4166666667vw;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--gray-lighter);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .modal-cart__check-list li {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .modal-cart__check-list li {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .modal-cart__check-list li {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .modal-cart__check-list li {
    padding: 0.5856515373vw;
  }
}
.modal-cart__check-heading {
  color: var(--gray-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .modal-cart__check-heading {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart__check-heading {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cart__check-heading {
    font-size: 4.2666666667vw;
  }
}
.modal-cart__buttons {
  display: grid;
  justify-self: end;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  gap: 0.625vw 1.0416666667vw;
  grid-auto-flow: row;
  grid-template-areas: "button-checkout button-cart" "button-back button-back";
  width: 100%;
}
@media screen and (width <= 1440px) {
  .modal-cart__buttons {
    gap: 0.878477306vw 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .modal-cart__buttons {
    gap: 1.5625vw 2.6041666667vw;
  }
}
.modal-cart__button {
  width: 100% !important;
}
.modal-cart__button-checkout {
  grid-area: button-checkout;
}
.modal-cart__button-cart {
  grid-area: button-cart;
}
.modal-cart__button-back {
  grid-area: button-back;
}
.cart-card {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625vw;
  cursor: pointer;
  /*----------SIZES-----------*/
}
@media screen and (width <= 1440px) {
  .cart-card {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card {
    flex-direction: column;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card {
    gap: 3.2vw;
  }
}
.cart-card__content {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .cart-card__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__content {
    gap: 5.3333333333vw;
  }
}
.cart-card a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.cart-card__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .cart-card__info {
    gap: 1.25vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info {
    gap: 1.25vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info {
    gap: 1.25vw;
  }
}
.cart-card__info-top {
  position: relative;
}
.cart-card__info-bottom {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card__info-bottom {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-bottom {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-bottom {
    gap: 5.3333333333vw;
  }
}
.cart-card__info-subtitle {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .cart-card__info-subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-subtitle {
    font-size: 3.4666666667vw;
  }
}
.cart-card__info-size {
  display: flex;
  align-items: center;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__info-size {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-size {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-size {
    gap: 1.0666666667vw;
  }
}
.cart-card__info-size .dropdown-sort {
  width: fit-content;
}
.cart-card__info-size .dropdown-sort__menu {
  padding: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__info-size .dropdown-sort__menu {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-size .dropdown-sort__menu {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-size .dropdown-sort__menu {
    padding: 1.0666666667vw;
  }
}
.cart-card__info-size .dropdown-sort__trigger {
  padding: 0.2083333333vw 0.2083333333vw 0.2083333333vw 0.3125vw;
  grid-template-columns: 1fr auto;
  background: var(--gray-lighter);
  border-color: var(--gray-lighter);
}
@media screen and (width <= 1440px) {
  .cart-card__info-size .dropdown-sort__trigger {
    padding: 0.2928257687vw 0.2928257687vw 0.2928257687vw 0.439238653vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-size .dropdown-sort__trigger {
    padding: 0.78125vw 0.78125vw 0.78125vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-size .dropdown-sort__trigger {
    padding: 1.6vw 1.6vw 1.6vw 2.1333333333vw;
  }
}
.cart-card__info-size .dropdown-sort__trigger-text {
  text-transform: uppercase;
}
.cart-card__info-size .dropdown-sort__option {
  padding: 0.3125vw 0.4166666667vw;
  text-align: center;
}
@media screen and (width <= 1440px) {
  .cart-card__info-size .dropdown-sort__option {
    padding: 0.439238653vw 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-size .dropdown-sort__option {
    padding: 0.78125vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-size .dropdown-sort__option {
    padding: 1.6vw 2.1333333333vw;
  }
}
.cart-card__info-size .dropdown-sort__icon {
  display: none;
}
.cart-card__info-size .dropdown-sort svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__info-size .dropdown-sort svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__info-size .dropdown-sort svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__info-size .dropdown-sort svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.cart-card__size {
  padding: 0.3125vw 0.4166666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-lighter);
  color: var(--gray-darker);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .cart-card__size {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__size {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__size {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .cart-card__size {
    padding: 0.439238653vw 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__size {
    padding: 0.78125vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__size {
    padding: 1.6vw 2.1333333333vw;
  }
}
.cart-card__color {
  display: flex;
  align-items: center;
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__color {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__color {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__color {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .cart-card__color {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__color {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__color {
    gap: 1.0666666667vw;
  }
}
.cart-card__color-color {
  display: inline-block;
  border-radius: 100%;
  outline-style: solid;
  outline-color: var(--gray-lighter);
  outline-width: max(0.0520833333vw, 1px);
  outline-offset: max(0.0520833333vw, 1px);
  width: 1.1458333333vw;
  height: 1.1458333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__color-color {
    outline-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .cart-card__color-color {
    outline-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .cart-card__color-color {
    outline-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .cart-card__color-color {
    outline-offset: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .cart-card__color-color {
    outline-offset: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .cart-card__color-color {
    outline-offset: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .cart-card__color-color {
    width: 1.6105417277vw;
    height: 1.6105417277vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__color-color {
    width: 2.8645833333vw;
    height: 2.8645833333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__color-color {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__color-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  @supports (-webkit-line-clamp: 1) {
    .cart-card__color-name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
  }
}
.cart-card__sku {
  display: flex;
  color: var(--gray-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1440px) {
  .cart-card__sku {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__sku {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__sku {
    font-size: 2.9333333333vw;
  }
}
.cart-card h3 {
  color: var(--gray-darker);
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  font-family: var(--font-family-body);
}
.cart-card__image {
  position: relative;
  height: 100%;
}
@media screen and (width <= 481px) {
  .cart-card__image {
    width: 17.0666666667vw;
  }
}
.cart-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-card .cart-card__badge-promo {
  margin-block: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card .cart-card__badge-promo {
    margin-block: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card .cart-card__badge-promo {
    margin-block: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    margin-block: 2.1333333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    height: 0.8333333333vw;
    padding-inline: 0.2083333333vw;
    gap: 0.1041666667vw;
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .cart-card .cart-card__badge-promo {
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .cart-card .cart-card__badge-promo {
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .cart-card .cart-card__badge-promo {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .cart-card .cart-card__badge-promo {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    padding-inline: 1.0666666667vw;
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .cart-card .cart-card__badge-promo {
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .cart-card .cart-card__badge-promo {
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    gap: 0.5333333333vw;
  }
}
@media screen and (width <= 481px) and (width <= 1440px) {
  .cart-card .cart-card__badge-promo {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 481px) and (width <= 1025px) {
  .cart-card .cart-card__badge-promo {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .cart-card .cart-card__badge-promo {
    font-size: 2.9333333333vw;
  }
}
.cart-card__badges {
  display: flex;
  gap: 0.9375vw;
}
@media screen and (width <= 1440px) {
  .cart-card__badges {
    gap: 1.317715959vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__badges {
    gap: 2.34375vw;
  }
}
.cart-card__badges li {
  position: relative;
  display: inline-block;
  color: var(--gray-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .cart-card__badges li {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__badges li {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__badges li {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.cart-card__buttons {
  display: flex;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card__buttons {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card__buttons {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card__buttons {
    gap: 1.0666666667vw;
  }
}
.cart-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (width <= 1025px) {
  .cart-card__prices {
    align-items: flex-start;
  }
}
.cart-card__price--old {
  color: var(--gray-medium);
  text-decoration: line-through;
}
@media (hover: hover) and (pointer: fine) {
  .cart-card:hover h3 {
    color: var(--color1-main);
  }
}
.cart-card:active h3 {
  color: var(--color1-dark);
}
.cart-card-size_m {
  width: 100%;
}
.cart-card-size_m .cart-card__image {
  flex-shrink: 0;
  width: 7.2916666667vw;
  height: 9.7395833333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m .cart-card__image {
    width: 10.2489019034vw;
    height: 13.6896046852vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m .cart-card__image {
    width: 14.3229166667vw;
    height: 19.53125vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_m .cart-card__image {
    width: 17.0666666667vw;
    height: 21.8666666667vw;
  }
}
.cart-card-size_m h3 {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m h3 {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m h3 {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_m h3 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m h3 {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 0.8333333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1440px) {
  .cart-card-size_m h3 {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) and (width <= 1025px) {
  .cart-card-size_m h3 {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1025px) and (width <= 481px) {
  .cart-card-size_m h3 {
    font-size: 4.2666666667vw;
  }
}
.cart-card-size_m .cart-card__prices {
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m .cart-card__prices {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m .cart-card__prices {
    margin-bottom: 0;
  }
}
.cart-card-size_m .cart-card__price--new {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m .cart-card__price--new {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m .cart-card__price--new {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_m .cart-card__price--new {
    font-size: 4.2666666667vw;
  }
}
.cart-card-size_m .cart-card__price--old {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m .cart-card__price--old {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m .cart-card__price--old {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_m .cart-card__price--old {
    font-size: 2.9333333333vw;
  }
}
.cart-card-size_m .cart-card__button--delete.btn {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_m .cart-card__button--delete.btn {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_m .cart-card__button--delete.btn {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_m .cart-card__button--delete.btn {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.cart-card-size_s .cart-card__image {
  flex-shrink: 0;
  width: 3.3333333333vw;
  height: 4.2708333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__image {
    width: 4.6852122987vw;
    height: 6.0029282577vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__image {
    width: 14.3229166667vw;
    height: 19.53125vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__image {
    width: 17.0666666667vw;
    height: 21.8666666667vw;
  }
}
.cart-card-size_s h3 {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s h3 {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s h3 {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s h3 {
    font-size: 4.2666666667vw;
  }
}
.cart-card-size_s .cart-card__info {
  gap: 0.4166666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__info {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__info {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__info {
    gap: 2.1333333333vw;
  }
}
.cart-card-size_s .cart-card__sku {
  display: none;
}
.cart-card-size_s .cart-card__badges {
  display: none;
}
.cart-card-size_s .cart-card__prices {
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__prices {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__prices {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__prices {
    margin-bottom: 3.2vw;
  }
}
.cart-card-size_s .cart-card__price--new {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__price--new {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__price--new {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__price--new {
    font-size: 4.2666666667vw;
  }
}
.cart-card-size_s .cart-card__price--old {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__price--old {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__price--old {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__price--old {
    font-size: 2.9333333333vw;
  }
}
.cart-card-size_s .cart-card__color {
  width: 1.1458333333vw;
  height: 1.1458333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__color {
    width: 1.6105417277vw;
    height: 1.6105417277vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__color {
    width: 2.8645833333vw;
    height: 2.8645833333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__color {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.cart-card-size_s .cart-card__button--delete.btn {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__button--delete.btn {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__button--delete.btn {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__button--delete.btn {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.cart-card-size_s .cart-card__button--favorite.btn-heart-m {
  padding: 0.4166666667vw;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .cart-card__button--favorite.btn-heart-m {
    padding: 0.5856515373vw;
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .cart-card__button--favorite.btn-heart-m {
    padding: 1.0416666667vw;
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .cart-card__button--favorite.btn-heart-m {
    padding: 2.1333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.cart-card-size_s .btn-size_s .btn__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .btn-size_s .btn__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .btn-size_s .btn__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .btn-size_s .btn__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.cart-card-size_s .quantity-input {
  align-items: flex-start;
}
.cart-card-size_s .quantity-input__button {
  width: 0.8333333333vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .quantity-input__button {
    width: 1.1713030747vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .quantity-input__button {
    width: 2.0833333333vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .quantity-input__button {
    width: 4.2666666667vw;
    height: 8.5333333333vw;
  }
}
.cart-card-size_s .quantity-input__label input {
  padding: 0.4166666667vw 0.1041666667vw;
  width: 1.1458333333vw;
  height: auto;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .quantity-input__label input {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .quantity-input__label input {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .quantity-input__label input {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .quantity-input__label input {
    padding: 0.5856515373vw 0.1464128843vw;
    width: 1.6105417277vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .quantity-input__label input {
    padding: 1.0416666667vw 0.2604166667vw;
    width: 2.8645833333vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .quantity-input__label input {
    padding: 2.1333333333vw 0.5333333333vw;
    width: 5.8666666667vw;
  }
}
.cart-card-size_s .quantity-input__label input::placeholder {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .quantity-input__label input::placeholder {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .quantity-input__label input::placeholder {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .quantity-input__label input::placeholder {
    font-size: 2.9333333333vw;
  }
}
.cart-card-size_s .btn-heart {
  padding: 0.4166666667vw !important;
  width: 1.6666666667vw !important;
  height: 1.6666666667vw !important;
}
@media screen and (width <= 1440px) {
  .cart-card-size_s .btn-heart {
    padding: 0.5856515373vw !important;
    width: 2.3426061493vw !important;
    height: 2.3426061493vw !important;
  }
}
@media screen and (width <= 1025px) {
  .cart-card-size_s .btn-heart {
    padding: 1.0416666667vw !important;
    width: 4.1666666667vw !important;
    height: 4.1666666667vw !important;
  }
}
@media screen and (width <= 481px) {
  .cart-card-size_s .btn-heart {
    padding: 2.1333333333vw !important;
    width: 8.5333333333vw !important;
    height: 8.5333333333vw !important;
  }
}
.dropdown-sort {
  position: relative;
  width: 10.2604166667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .dropdown-sort {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .dropdown-sort {
    width: 14.4216691069vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort {
    width: 25.6510416667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort {
    width: 52.5333333333vw;
  }
}
.dropdown-sort__trigger {
  padding: 0.4166666667vw;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.2083333333vw;
  border: solid var(--gray-light);
  border-width: max(0.0520833333vw, 1px);
  transition: background-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .dropdown-sort__trigger {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__trigger {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__trigger {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .dropdown-sort__trigger {
    padding: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__trigger {
    padding: 1.0416666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__trigger {
    padding: 2.1333333333vw;
    gap: 1.0666666667vw;
  }
}
.dropdown-sort__trigger--active .dropdown-sort__chevron {
  transform: rotateX(180deg);
}
.dropdown-sort__trigger svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .dropdown-sort__trigger svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__trigger svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__trigger svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.dropdown-sort__trigger .dropdown-sort__chevron {
  transition: transform 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-sort__trigger:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.dropdown-sort__trigger:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.dropdown-sort__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0.4166666667vw 0;
  padding: 0.4166666667vw;
  list-style: none;
  background: var(--gray-white);
  box-shadow: 0 0.2083333333vw 0.3125vw -0.0520833333vw rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.625vw);
  z-index: 100;
  transition: 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1440px) {
  .dropdown-sort__menu {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__menu {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__menu {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 1440px) {
  .dropdown-sort__menu {
    margin: 0.5856515373vw 0;
    padding: 0.5856515373vw;
    box-shadow: 0 0.2928257687vw 0.439238653vw -0.0732064422vw rgba(0, 0, 0, 0.1);
    transform: translateY(-0.878477306vw);
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__menu {
    margin: 1.0416666667vw 0;
    padding: 1.0416666667vw;
    box-shadow: 0 0.5208333333vw 0.78125vw -0.1302083333vw rgba(0, 0, 0, 0.1);
    transform: translateY(-1.5625vw);
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__menu {
    margin: 2.1333333333vw 0;
    padding: 2.1333333333vw;
    box-shadow: 0 1.0666666667vw 1.6vw -0.2666666667vw rgba(0, 0, 0, 0.1);
    transform: translateY(-3.2vw);
  }
}
.dropdown-sort__menu--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-sort__option {
  padding: 0.4166666667vw;
  background-color: transparent;
  color: var(--gray-darker);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .dropdown-sort__option {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__option {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__option {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .dropdown-sort__option {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 1025px) {
  .dropdown-sort__option {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-sort__option {
    padding: 2.1333333333vw;
  }
}
.dropdown-sort__option--selected {
  background-color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-sort__option:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.dropdown-sort__option:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.quantity-input {
  display: flex;
  align-items: center;
}
.quantity-input__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.0416666667vw;
  height: 2.0833333333vw;
  color: var(--gray-dark);
  background-color: var(--gray-lighter);
  transition: background-color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1440px) {
  .quantity-input__button {
    width: 1.4641288433vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .quantity-input__button {
    width: 2.6041666667vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .quantity-input__button {
    width: 5.3333333333vw;
    height: 10.6666666667vw;
  }
}
.quantity-input__button svg {
  width: 0.625vw;
  height: 0.625vw;
}
@media screen and (width <= 1440px) {
  .quantity-input__button svg {
    width: 0.878477306vw;
    height: 0.878477306vw;
  }
}
@media screen and (width <= 1025px) {
  .quantity-input__button svg {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .quantity-input__button svg {
    width: 3.2vw;
    height: 3.2vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .quantity-input__button:hover {
    background-color: var(--gray-light);
  }
}
.quantity-input__button:active {
  background-color: var(--gray-darker);
  color: var(--gray-white);
}
.quantity-input__label input {
  padding: 0.5208333333vw 0.2083333333vw;
  field-sizing: content;
  max-width: 4ch;
  height: 2.0833333333vw;
  background: var(--gray-lighter);
  outline: none;
  border: none;
  color: var(--gray-darker);
  text-align: center;
  flex: 0 0 auto;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .quantity-input__label input {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .quantity-input__label input {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .quantity-input__label input {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1440px) {
  .quantity-input__label input {
    padding: 0.7320644217vw 0.2928257687vw;
    width: 2.4890190337vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 1025px) {
  .quantity-input__label input {
    padding: 1.3020833333vw 0.5208333333vw;
    width: 4.4270833333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .quantity-input__label input {
    padding: 2.6666666667vw 1.0666666667vw;
    width: 9.0666666667vw;
    height: 10.6666666667vw;
  }
}
.quantity-input__label input::placeholder {
  color: var(--gray-darker);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .quantity-input__label input::placeholder {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .quantity-input__label input::placeholder {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .quantity-input__label input::placeholder {
    font-size: 3.4666666667vw;
  }
}
.empty-modal-cart {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.empty-modal-cart__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625vw;
  height: 100%;
}
@media screen and (width <= 1440px) {
  .empty-modal-cart__content {
    gap: 0.878477306vw;
  }
}
.empty-modal-cart__title {
  color: var(--gray-medium);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-family-body);
  font-family: var(--font-family-body);
  font-weight: 700;
}
@media screen and (width <= 1440px) {
  .empty-modal-cart__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .empty-modal-cart__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .empty-modal-cart__title {
    font-size: 5.3333333333vw;
  }
}
.empty-modal-cart__button-back {
  width: 100%;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .empty-modal-cart__button-back {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .empty-modal-cart__button-back {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .empty-modal-cart__button-back {
    font-size: 4.2666666667vw;
  }
}
.empty-modal-cart__marker {
  background: var(--error-light) !important;
  color: var(--error-dark) !important;
}
.btn-link {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-bottom: transparent solid;
  width: fit-content;
  transition: border 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.0520833333vw, 1px);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1440px) {
  .btn-link {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 1025px) {
  .btn-link {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .btn-link {
    border-width: max(0.2666666667vw, 1px);
  }
}
.btn-link__text {
  transition: color 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-link:has(.btn-link__icon_left) {
  gap: 0.2083333333vw;
}
@media screen and (width <= 1440px) {
  .btn-link:has(.btn-link__icon_left) {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link:has(.btn-link__icon_left) {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link:has(.btn-link__icon_left) {
    gap: 1.0666666667vw;
  }
}
.btn-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-link__icon svg {
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.35s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-link__loader {
  display: none;
}
.btn-link.loading .btn-link__loader {
  display: block;
}
.btn-link.loading .btn-link__text, .btn-link.loading .btn-link__icon {
  display: none;
}
.btn-link-size_xl {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_xl {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_xl {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_xl {
    font-size: 5.3333333333vw;
  }
}
.btn-link-size_l {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_l {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_l {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_l {
    font-size: 4.2666666667vw;
  }
}
.btn-link-size_m {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1440px) {
  .btn-link-size_m {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_m {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_m {
    font-size: 3.4666666667vw;
  }
}
.btn-link-size_s {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1440px) {
  .btn-link-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_s {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_s {
    font-size: 2.9333333333vw;
  }
}
.btn-link-underline, .btn-link-flat {
  color: var(--color1-dark);
}
@media (hover: hover) and (pointer: fine) {
  .btn-link-underline:hover, .btn-link-flat:hover {
    color: var(--color1-main);
  }
}
.btn-link-underline:active, .btn-link-flat:active {
  color: var(--color1-darker);
}
.btn-link-underline {
  border-color: currentColor;
}
.btn-link-size_xl {
  height: 1.5625vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_xl {
    height: 2.196193265vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_xl {
    height: 3.90625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_xl {
    height: 8vw;
  }
}
.btn-link-size_xl .btn-link__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_xl .btn-link__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_xl .btn-link__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_xl .btn-link__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-link-size_xl:has(.btn-link__icon_left) svg {
  padding: 0.15625vw 0;
}
@media screen and (width <= 1440px) {
  .btn-link-size_xl:has(.btn-link__icon_left) svg {
    padding: 0.2196193265vw 0;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_xl:has(.btn-link__icon_left) svg {
    padding: 0.390625vw 0;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_xl:has(.btn-link__icon_left) svg {
    padding: 0.8vw 0;
  }
}
.btn-link-size_l {
  height: 1.25vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_l {
    height: 1.756954612vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_l {
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_l {
    height: 6.4vw;
  }
}
.btn-link-size_l .btn-link__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_l .btn-link__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_l .btn-link__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_l .btn-link__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-link-size_m {
  height: 1.0416666667vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_m {
    height: 1.4641288433vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_m {
    height: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_m {
    height: 5.3333333333vw;
  }
}
.btn-link-size_m:has(.btn-link__icon_left) svg {
  padding: 0.1041666667vw 0;
}
@media screen and (width <= 1440px) {
  .btn-link-size_m:has(.btn-link__icon_left) svg {
    padding: 0.1464128843vw 0;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_m:has(.btn-link__icon_left) svg {
    padding: 0.2604166667vw 0;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_m:has(.btn-link__icon_left) svg {
    padding: 0.5333333333vw 0;
  }
}
.btn-link-size_m .btn-link__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_m .btn-link__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_m .btn-link__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_m .btn-link__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-link-size_s {
  height: 1.6666666667vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_s {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_s {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_s {
    height: 8.5333333333vw;
  }
}
.btn-link-size_s .btn-link__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1440px) {
  .btn-link-size_s .btn-link__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1025px) {
  .btn-link-size_s .btn-link__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-link-size_s .btn-link__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-link-theme_dark.btn-link {
  color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-link-theme_dark.btn-link:hover {
    color: var(--color1-dark);
  }
}
.btn-link-theme_dark.btn-link:active {
  color: var(--color1-darker);
}
.btn-link-theme_dark.btn-link:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-link-theme_dark.btn-link-underline {
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-link-theme_dark.btn-link-underline:hover {
    border-color: var(--color1-dark);
  }
}
.btn-link-theme_dark.btn-link-underline:active {
  border-color: var(--color1-darker);
}
.btn-link-theme_dark.btn-link-underline:disabled {
  cursor: not-allowed;
  border-color: transparent;
}
