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

/* Core Dependencies */
/*----------RESPONSIVE MEDIA-----------*/
/*----------DEFAULT Z-INDEXES-----------*/
/*----------BORDER RADIUS-----------*/
/*----------BORDER WIDTH-----------*/
/*----------ICON SIZE-----------*/
/*----------TRANSITIONS-----------*/
/*----------TEXT TRUNCATE-----------*/
/*----------FLEX LAYOUT-----------*/
/*----------GRID LAYOUT-----------*/
/*----------CENTER ELEMENT-----------*/
/*----------GAP-----------*/
/*----------PADDING-----------*/
/*----------MARGIN-----------*/
/*----------SCROLLBAR-----------*/
/*----------HARDWARE ACCELERATION (ONLY USE WHEN NEEDED)-----------*/
/*----------SPACING-----------*/
/*----------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;
    min-width: 0;
  }
  /* 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;
    interpolate-size: allow-keywords;
  }
  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: 100dvh;
  }
  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;
    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;
  }
  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: "Commissioner", Montserrat, Inter, Helvetica, sans-serif;
    --font-family-body: "Commissioner", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /*----------ROOT STYLES-----------*/
    font-family: var(--font-family-body);
    color-scheme: light;
    accent-color: var(--color1-main);
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    --cubic-bezier: cubic-bezier(0.14, 0.18, 0.16, 1.02);
    --ease-spring: linear(
            0, 0.009, 0.035 2.1%, 0.141, 0.281 6.7%,
            0.723 12.9%, 0.938 16.7%, 1.017, 1.077, 1.121,
            1.149 24.3%, 1.159, 1.163, 1.161, 1.154 29.9%,
            1.129 32.8%, 1.051 39.6%, 1.017 43.1%, 0.991,
            0.977 51%, 0.974 53.8%, 0.975 57.1%, 0.997 69.8%,
            1.003 76.9%, 1.004 83.8%, 1
    );
  }
  body {
    position: relative;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    text-wrap: balance;
  }
  @view-transition {
    navigation: auto;
  }
  :target {
    scroll-margin-top: 6.3541666667vw;
  }
  @media screen and (width <= 1401px) {
    :target {
      scroll-margin-top: 8.345534407vw;
    }
  }
  @media screen and (width <= 811px) {
    :target {
      scroll-margin-top: 8.59375vw;
    }
  }
  @media screen and (width <= 481px) {
    :target {
      scroll-margin-top: 17.6vw;
    }
  }
  *::selection {
    background: var(--color1-lighter);
  }
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    z-index: 900;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout paint;
    transition: opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal-overlay.active {
    opacity: 1;
  }
  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250%) translateZ(0);
    background: var(--gray-white);
    z-index: 1000;
    display: none;
    opacity: 0;
    box-shadow: var(--shadow-far);
    will-change: transform, opacity;
    backface-visibility: hidden;
    overscroll-behavior: contain;
    transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 811px) {
    .modal {
      transform: translate(0, 100%) translateZ(0);
      inset: 0;
    }
  }
  .modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(0);
  }
  @media screen and (width <= 811px) {
    .modal.active {
      transform: translate(0) translateZ(0);
    }
  }
  .img-expand {
    position: relative;
  }
  .img-expand__btn {
    position: absolute;
    border: none !important;
    pointer-events: none;
    bottom: 0.625vw;
    right: 0.625vw;
  }
  @media screen and (width <= 1401px) {
    .img-expand__btn {
      bottom: 0.878477306vw;
    }
  }
  @media screen and (width <= 811px) {
    .img-expand__btn {
      bottom: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .img-expand__btn {
      bottom: 3.2vw;
    }
  }
  @media screen and (width <= 1401px) {
    .img-expand__btn {
      right: 0.878477306vw;
    }
  }
  @media screen and (width <= 811px) {
    .img-expand__btn {
      right: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .img-expand__btn {
      right: 3.2vw;
    }
  }
  @font-face {
    font-family: "Commissioner";
    src: url("/assets/fonts/Commissioner/Commissioner-VF.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Commissioner";
    src: url("/assets/fonts/Commissioner/Commissioner-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  :root {
    /*----------GRAY-----------*/
    --gray-black: #191818;
    --gray-darker: #292727;
    --gray-dark: #474443;
    --gray-medium: #A3A0A0;
    --gray-light: #E5DFDF;
    --gray-lighter: #F7F5F5;
    --gray-white: #FFFFFF;
    /*----------COLOR1-----------*/
    --color1-darker: #A61111;
    --color1-dark: #BF190E;
    --color1-main: #DB1E16;
    --color1-light: #F05A54;
    --color1-lighter: #FACBC8;
    /*----------COLOR2-----------*/
    --color2-darker: #331E17;
    --color2-dark: #4D3026;
    --color2-main: #734839;
    --color2-light: #A67B6C;
    --color2-lighter: #F2D7CE;
    /*----------GRADIENT-----------*/
    --gradient1-dark: linear-gradient(90deg, #800000 0%, #CC0000 100%);
    --gradient1-main: linear-gradient(90deg, #990000 0%, #DE0B0B 100%);
    --gradient1-light: linear-gradient(90deg, #FFD6D6 0%, #FF3333 100%);
    /*----------BACKGROUND-----------*/
    --bg-light: #FAF5F5;
    --bg-dark: #262626;
    --bg-gradient: linear-gradient(90deg, #D9F2FF 0%, #B6D4F2 100%);
    /*----------ERROR-----------*/
    --error-dark: #CC2929;
    --error-medium: #FFA6A6;
    --error-light: #FF9999;
    /*----------ALERT-----------*/
    --alert-dark: #BFBF00;
    --alert-medium: #D9D998;
    --alert-light: #E5E573;
    /*----------SUCCESS-----------*/
    --success-dark: #1F991F;
    --success-medium: #98D998;
    --success-light: #8AE58A;
    /*----------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: #058405;
    --uniq-blue: #2C73EE;
    --uniq-yellow: #B0A200;
    --uniq-violet: #7D31DE;
    --uniq-purple: #C279A3;
    --uniq-pink: #F9AFCA;
    --uniq-red: #CE1F0F;
    --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: 13.0208333333vw;
  }
  @media screen and (width <= 1401px) {
    .container {
      margin-inline: 3.2942898975vw;
    }
  }
  @media screen and (width <= 811px) {
    .container {
      margin-inline: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .container {
      margin-inline: 3.2vw;
    }
  }
  .container-sm {
    margin-inline: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .container-sm {
      margin-inline: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .container-sm {
      margin-inline: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .container-sm {
      margin-inline: 2.1333333333vw;
    }
  }
  .info-container {
    max-width: 36.4583333333vw;
  }
  @media screen and (width <= 1401px) {
    .info-container {
      max-width: 51.2445095168vw;
    }
  }
  @media screen and (width <= 811px) {
    .info-container {
      max-width: 62.5vw;
      margin-inline: auto;
    }
  }
  @media screen and (width <= 481px) {
    .info-container {
      max-width: 93.3333333333vw;
    }
  }
  .wrapper {
    padding-inline: 13.0208333333vw;
  }
  @media screen and (width <= 1401px) {
    .wrapper {
      padding-inline: 3.2942898975vw;
    }
  }
  @media screen and (width <= 811px) {
    .wrapper {
      padding-inline: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .wrapper {
      padding-inline: 3.2vw;
    }
  }
  .wrapper-sm {
    padding-inline: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .wrapper-sm {
      padding-inline: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .wrapper-sm {
      padding-inline: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .wrapper-sm {
      padding-inline: 2.1333333333vw;
    }
  }
  .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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1401px) {
    .underline {
      text-underline-offset: 0.2928257687vw;
    }
  }
  @media screen and (width <= 811px) {
    .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;
  }
  .section-title {
    max-width: 21ch;
    color: var(--gray-black);
    font-size: 2.1875vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .section-title {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 811px) {
    .section-title {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .section-title {
      font-size: 7.4666666667vw;
    }
  }
  .section-title span {
    color: var(--color1-dark);
  }
  .content {
    width: 100%;
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  @media screen and (width <= 1401px) {
    .content {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .content {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content {
      font-size: 4.2666666667vw;
    }
  }
  .content table {
    width: 100%;
    text-align: left;
    margin-bottom: 2.0833333333vw;
    border-spacing: 0.1041666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table {
      margin-bottom: 2.9282576867vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table {
      margin-bottom: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table {
      margin-bottom: 10.6666666667vw;
    }
  }
  @media screen and (width <= 1401px) {
    .content table {
      border-spacing: 0.1464128843vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table {
      border-spacing: 0.2604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table {
      border-spacing: 0.5333333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table {
      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-medium);
  }
  @media screen and (width <= 1401px) {
    .content table th {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th {
      font-size: 1.6927083333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th {
      font-size: 3.4666666667vw;
    }
  }
  .content table tr:last-child td {
    border: none !important;
  }
  .content table tr:nth-child(2n-1) {
    background: var(--gray-lighter);
  }
  .content table th, .content table td {
    height: unset !important;
    padding: 0.4166666667vw 0.625vw;
  }
  @media screen and (width <= 1401px) {
    .content table th, .content table td {
      padding: 0.5856515373vw 0.878477306vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th, .content table td {
      padding: 1.0416666667vw 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th, .content table td {
      padding: 2.1333333333vw 3.2vw;
    }
  }
  .content table th > p, .content table td > p {
    width: auto !important;
  }
  .content table th:first-child, .content table td:first-child {
    border-top-left-radius: 0.4166666667vw;
    border-bottom-left-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table th:first-child, .content table td:first-child {
      border-top-left-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:first-child, .content table td:first-child {
      border-top-left-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:first-child, .content table td:first-child {
      border-top-left-radius: 2.1333333333vw;
    }
  }
  @media screen and (width <= 1401px) {
    .content table th:first-child, .content table td:first-child {
      border-bottom-left-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:first-child, .content table td:first-child {
      border-bottom-left-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:first-child, .content table td:first-child {
      border-bottom-left-radius: 2.1333333333vw;
    }
  }
  .content table th:last-child, .content table td:last-child {
    border-top-right-radius: 0.4166666667vw;
    border-bottom-right-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table th:last-child, .content table td:last-child {
      border-top-right-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:last-child, .content table td:last-child {
      border-top-right-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:last-child, .content table td:last-child {
      border-top-right-radius: 2.1333333333vw;
    }
  }
  @media screen and (width <= 1401px) {
    .content table th:last-child, .content table td:last-child {
      border-bottom-right-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:last-child, .content table td:last-child {
      border-bottom-right-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:last-child, .content table td:last-child {
      border-bottom-right-radius: 2.1333333333vw;
    }
  }
  .content table td {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--Gray-Dark);
  }
  @media screen and (width <= 1401px) {
    .content table td {
      font-size: 0.9516837482vw;
    }
  }
  @media screen and (width <= 811px) {
    .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 <= 1401px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      margin-top: 2.9282576867vw;
      margin-bottom: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .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: 2.9166666667vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h1 {
      font-size: 3.513909224vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h1 {
      font-size: 4.6875vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1 {
      font-size: 9.6vw;
    }
  }
  .content h1 span {
    font-size: 2.9166666667vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h1 span {
      font-size: 3.513909224vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h1 span {
      font-size: 4.6875vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1 span {
      font-size: 9.6vw;
    }
  }
  .content h2 {
    font-size: 2.1875vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h2 {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 811px) {
    .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: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h2 span {
      font-size: 3.074670571vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h2 span {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h2 span {
      font-size: 7.4666666667vw;
    }
  }
  .content h3 {
    font-size: 1.6666666667vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h3 {
      font-size: 2.3426061493vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h3 {
      font-size: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h3 {
      font-size: 6.4vw;
    }
  }
  .content h3 span {
    font-size: 1.6666666667vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h3 span {
      font-size: 2.3426061493vw;
    }
  }
  @media screen and (width <= 811px) {
    .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: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h4 {
      font-size: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .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: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h4 span {
      font-size: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .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: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h5, .content h6 {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h5, .content h6 {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h5, .content h6 {
      font-size: 4.2666666667vw;
    }
  }
  .content h5 span, .content h6 span {
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .content h5 span, .content h6 span {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h5 span, .content h6 span {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h5 span, .content h6 span {
      font-size: 4.2666666667vw;
    }
  }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 :first-child {
    margin-top: 0;
  }
  .content p, .content span, .content div {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--gray-dark);
  }
  @media screen and (width <= 1401px) {
    .content p, .content span, .content div {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .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-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color1-main);
    transition: color 0.3s ease;
    text-decoration: none;
  }
  @media screen and (width <= 1401px) {
    .content a {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .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-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--gray-dark);
    list-style: disc;
    margin-left: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .content li {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .content li {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content li {
      font-size: 4.2666666667vw;
    }
  }
  @media screen and (width <= 1401px) {
    .content li {
      margin-left: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .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 <= 1401px) {
    .content ol {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .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;
    border-radius: 1.25vw;
    z-index: 10;
  }
  @media screen and (width <= 1401px) {
    .content img, .content video, .content iframe {
      border-radius: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .content img, .content video, .content iframe {
      border-radius: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content img, .content video, .content iframe {
      border-radius: 6.4vw;
    }
  }
  .content p {
    text-align: left !important;
    padding-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .content p {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .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 <= 1401px) {
    .content iframe {
      height: 26.0614934114vw;
    }
  }
  @media screen and (width <= 811px) {
    .content iframe {
      height: 35.15625vw;
    }
  }
  @media screen and (width <= 481px) {
    .content iframe {
      height: 51.7333333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .__jivoMobileButton {
      bottom: 16vw !important;
    }
  }
}
/* Component Library */
@layer components {
  /*----------FADE IN-----------*/
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /*----------SLIDE UP-----------*/
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  /*----------SLIDE IN-----------*/
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /*----------SLIDE OUT-----------*/
  @keyframes slideOut {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /*----------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);
    }
  }
  @keyframes pulse-sm {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.9;
      transform: scale(0.99);
    }
  }
  /*----------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);
    }
  }
  .product-layout {
    position: relative;
    display: flex;
    gap: 2.5vw;
    margin-top: 0.625vw;
  }
  @media screen and (width <= 1401px) {
    .product-layout {
      gap: 3.513909224vw;
      margin-top: 0.878477306vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout {
      gap: 0;
      margin-top: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout {
      margin-top: 3.2vw;
    }
  }
  .product-layout__content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .product-layout__buy-block {
    display: none !important;
  }
  @media screen and (width <= 811px) {
    .product-layout__buy-block {
      margin-top: 2.0833333333vw;
      display: flex !important;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__buy-block {
      margin-top: 4.2666666667vw;
    }
  }
  .product-layout__manager-info {
    display: none !important;
  }
  @media screen and (width <= 811px) {
    .product-layout__manager-info {
      margin-top: 2.0833333333vw;
      display: grid !important;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__manager-info {
      margin-top: 4.2666666667vw;
    }
  }
  .product-layout__aside {
    position: sticky;
    top: 6.4583333333vw;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: fit-content;
    gap: 0.8333333333vw;
  }
  @media screen and (width <= 1401px) {
    .product-layout__aside {
      gap: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__aside {
      gap: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__aside {
      gap: 4.2666666667vw;
    }
  }
  @media screen and (width <= 1401px) {
    .product-layout__aside {
      top: 9.0775988287vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__aside {
      display: none;
    }
  }
  .product-layout__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
    margin-top: 1.0416666667vw;
    transition: grid-template-rows 0.3s cubic-bezier(0.14, 0.18, 0.16, 1.02);
    border-radius: 0.1041666667vw;
  }
  @media screen and (width <= 1401px) {
    .product-layout__group {
      border-radius: 0.1464128843vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group {
      border-radius: 0.2604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group {
      border-radius: 0.5333333333vw;
    }
  }
  @media screen and (width <= 1401px) {
    .product-layout__group {
      margin-top: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group {
      margin-top: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group {
      margin-top: 5.3333333333vw;
    }
  }
  .product-layout__group--top {
    margin-top: 1.25vw;
    padding-top: 1.25vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
  @media screen and (width <= 1401px) {
    .product-layout__group--top {
      border-width: max(0.1464128843vw, 2px);
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group--top {
      border-width: max(0.2604166667vw, 2px);
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group--top {
      border-width: max(0.5333333333vw, 2px);
    }
  }
  @media screen and (width <= 1401px) {
    .product-layout__group--top {
      margin-top: 1.756954612vw;
      padding-top: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group--top {
      margin-top: 3.125vw;
      padding-top: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group--top {
      margin-top: 6.4vw;
      padding-top: 6.4vw;
    }
  }
  .product-layout__group.collapsed {
    grid-template-rows: min-content 0fr;
  }
  .product-layout__group.collapsed .product-layout__group-top svg {
    transform: rotateX(180deg);
  }
  .product-layout__group.collapsed .product-layout__group-body {
    opacity: 0;
  }
  .product-layout__group-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.0416666667vw;
    width: 100%;
    background: var(--gray-lighter);
    color: var(--gray-black);
    border: solid transparent;
    border-radius: 0.625vw;
    border-width: max(0.0520833333vw, 1px);
    transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), border-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1401px) {
    .product-layout__group-top {
      border-radius: 0.878477306vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group-top {
      border-radius: 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group-top {
      border-radius: 3.2vw;
    }
  }
  @media screen and (width <= 1401px) {
    .product-layout__group-top {
      border-width: max(0.0732064422vw, 1px);
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group-top {
      border-width: max(0.1302083333vw, 1px);
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group-top {
      border-width: max(0.2666666667vw, 1px);
    }
  }
  @media screen and (width <= 1401px) {
    .product-layout__group-top {
      padding: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group-top {
      padding: 2.0833333333vw 1.5625vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group-top {
      padding: 4.2666666667vw 3.2vw;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .product-layout__group-top:hover {
      color: var(--color1-main);
      border-color: var(--gray-light);
    }
  }
  .product-layout__group-top:active {
    color: var(--color1-main);
    background: var(--gray-light);
    border-color: var(--gray-light);
  }
  .product-layout__group-top h3 {
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  @media screen and (width <= 1401px) {
    .product-layout__group-top h3 {
      font-size: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group-top h3 {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group-top h3 {
      font-size: 5.3333333333vw;
    }
  }
  .product-layout__group-top svg {
    flex-shrink: 0;
    width: 1.25vw;
    height: 1.25vw;
    transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1401px) {
    .product-layout__group-top svg {
      width: 1.756954612vw;
      height: 1.756954612vw;
    }
  }
  @media screen and (width <= 811px) {
    .product-layout__group-top svg {
      width: 3.125vw;
      height: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .product-layout__group-top svg {
      width: 6.4vw;
      height: 6.4vw;
    }
  }
  .product-layout__group-body {
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
}
/* Override Layer - for project-specific modifications */
@layer overrides {
  /* Project-specific overrides */
}
/* Development/Temporary Fixes */
.swiper-button-lock {
  display: none !important;
}
.simplebar-scrollbar::before {
  background-color: var(--color1-light);
}
.simplebar-horizontal {
  display: none;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  bottom: 0;
}
.simplebar-scrollbar {
  min-height: auto;
}
.simplebar-scrollbar.simplebar-visible::before {
  background-color: var(--color1-main);
  opacity: 0.5;
}
:root {
  --fancybox-scrollbar-compensate: 0 !important;
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transform: translateY(0) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.header.collapsed {
  transform: translateY(-2.6041666667vw) translateZ(0);
}
@media screen and (width <= 1401px) {
  .header.collapsed {
    transform: translateY(-3.6603221083vw) translateZ(0);
  }
}
@media screen and (width <= 811px) {
  .header.collapsed {
    transform: translateY(0) translateZ(0);
  }
}
.header.collapsed .header__top {
  overflow: hidden;
  user-select: none;
}
.header__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--gray-white);
}
.header__top {
  height: fit-content;
  z-index: 2;
}
@media screen and (width <= 811px) {
  .header__top {
    display: none;
  }
}
.header__bottom {
  position: relative;
  display: flex;
}
.header__bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 3.75vw;
  width: 100%;
  border-bottom: solid var(--gray-lighter);
  z-index: 1;
  border-width: max(0.1041666667vw, 2px);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header__bottom-container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .header__bottom-container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .header__bottom-container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .header__bottom-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header__bottom-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom-container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .header__bottom-container {
    height: 4.6852122987vw;
  }
}
@media screen and (width <= 811px) {
  .header__bottom-container {
    grid-template-columns: auto auto;
    height: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom-container {
    height: 17.0666666667vw;
  }
}
.header__bottom-wrap {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header__bottom-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header__bottom-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom-wrap {
    gap: 3.2vw;
  }
}
.header__bottom-wrap--left {
  flex-shrink: 0;
}
.header__bottom-wrap--center {
  width: 100%;
}
@media screen and (width <= 811px) {
  .header__bottom-wrap--center {
    display: none;
  }
}
.header__bottom-wrap--right {
  flex-shrink: 0;
}
@media screen and (width <= 811px) {
  .header__bottom-wrap--right {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__bottom-wrap--right {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .header__bottom-wrap.with-title .header__logo {
    display: none;
  }
  .header__bottom-wrap.with-title .header__page-title-wrap {
    display: flex;
  }
  .header__bottom-wrap.with-title .header__separator {
    display: none;
  }
  .header__bottom-wrap.with-title .header__subtitle {
    display: none;
  }
}
.header__page-title-wrap {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header__page-title-wrap {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header__page-title-wrap {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header__page-title-wrap {
    gap: 2.1333333333vw;
  }
}
.header__page-title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .header__page-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .header__page-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .header__page-title {
    font-size: 4.2666666667vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .header__page-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 811px) {
  .header__page-title {
    max-width: 50ch;
  }
}
@media screen and (width <= 481px) {
  .header__page-title {
    max-width: 14ch;
  }
}
.header__separator {
  height: 1.25vw !important;
}
@media screen and (width <= 1401px) {
  .header__separator {
    height: 1.756954612vw !important;
  }
}
@media screen and (width <= 811px) {
  .header__separator {
    display: none !important;
  }
}
.header__subtitle {
  max-width: 19ch;
  color: var(--gray-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .header__subtitle {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .header__subtitle {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .header__subtitle {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 811px) {
  .header__subtitle {
    display: none;
  }
}
.header__button-catalog {
  flex-shrink: 0;
}
.header__button-compare {
  flex-shrink: 0;
}
@media screen and (width <= 811px) {
  .header__button-compare {
    display: none !important;
  }
}
.header__button-callback {
  flex-shrink: 0;
}
@media screen and (width <= 811px) {
  .header__button-callback {
    display: none !important;
  }
}
.header__button-search {
  display: none !important;
}
@media screen and (width <= 811px) {
  .header__button-search {
    display: inline-flex !important;
  }
}
.header__button-menu {
  display: none !important;
}
@media screen and (width <= 811px) {
  .header__button-menu {
    display: inline-flex !important;
  }
}
.header-nav {
  display: inline-flex;
  width: 100%;
  background: var(--gray-darker);
  padding-block: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .header-nav {
    padding-block: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .header-nav {
    padding-block: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-nav {
    padding-block: 1.0666666667vw;
  }
}
.header-nav__container {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header-nav__container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-nav__container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header-nav__container {
    gap: 3.2vw;
  }
}
.header-nav__wrap {
  display: inline-flex;
  align-items: center;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .header-nav__wrap {
    gap: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .header-nav__wrap {
    gap: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-nav__wrap {
    gap: 7.4666666667vw;
  }
}
.header-nav__nav-list {
  display: inline-flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header-nav__nav-list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-nav__nav-list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header-nav__nav-list {
    gap: 3.2vw;
  }
}
.header-nav__contacts {
  height: 100%;
  display: inline-flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header-nav__contacts {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-nav__contacts {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header-nav__contacts {
    gap: 3.2vw;
  }
}
.header-nav__separator {
  align-self: stretch;
}
.tab {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .tab {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .tab {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tab {
    border-width: max(0.5333333333vw, 2px);
  }
}
.tab__text {
  white-space: nowrap;
  margin-inline: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .tab__text {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab__text {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__text {
    margin-inline: 1.0666666667vw;
  }
}
.tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab__icon {
    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%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab__chevron {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.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;
  pointer-events: none;
  background: var(--gray-lighter);
  color: var(--gray-black);
}
.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: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-underline:hover {
    border-bottom-color: var(--color1-lighter);
  }
}
.tab-underline:active {
  border-bottom-color: var(--color1-light);
}
.tab-underline.active {
  cursor: default;
  background: transparent;
  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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-size_l {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_l {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_l {
    height: 4.0995607613vw;
    padding-inline: 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_l .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_m {
    height: 3.513909224vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_m .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_s {
    height: 2.9282576867vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_s .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_xs {
    height: 2.635431918vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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 {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__icon {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__icon {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon {
    margin-inline: 1.0666666667vw;
  }
}
.tab-size_xs .tab__chevron {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__chevron {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__chevron {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__chevron {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__chevron {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__chevron {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__chevron {
    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);
}
.dropdown-tab {
  /*----------CORE STYLE-----------*/
  position: relative;
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab:hover .dropdown-tab__menu {
    opacity: 1;
    visibility: visible;
    user-select: auto;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .dropdown-tab:hover .dropdown-tab__trigger .dropdown-tab__chevron {
    transform: rotateX(180deg);
  }
}
.dropdown-tab__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .dropdown-tab__trigger {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__trigger {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__trigger {
    border-width: max(0.5333333333vw, 2px);
  }
}
.dropdown-tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.dropdown-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%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.dropdown-tab__chevron {
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__chevron {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.dropdown-tab__trigger--active .dropdown-tab__chevron {
  transform: rotateX(180deg);
}
.dropdown-tab__menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  top: calc(100% + 0.8333333333vw);
  left: 0;
  width: max-content;
  margin: 0;
  padding: 0.625vw;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  transform: translateY(-2%) scale(0.95);
  transform-origin: top center;
  background: var(--gray-white);
  box-shadow: var(--shadow-medium);
  border: solid transparent;
  z-index: 500;
  border-radius: 1.0416666667vw;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), visibilty 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Forgiveness zone */
  /* Top pointer */
  /* Top pointer position */
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu {
    border-width: max(0.5333333333vw, 2px);
  }
}
.dropdown-tab__menu::-webkit-scrollbar {
  display: none;
}
.dropdown-tab__menu::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu {
    gap: 0.878477306vw;
    top: calc(100% + 1.1713030747vw);
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu {
    gap: 1.5625vw;
    top: calc(100% + 2.0833333333vw);
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu {
    gap: 3.2vw;
    top: calc(100% + 4.2666666667vw);
    padding: 3.2vw;
  }
}
.dropdown-tab__menu::before {
  content: "";
  position: absolute;
  top: -0.9375vw;
  left: 0;
  width: 100%;
  height: 0.9375vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu::before {
    top: -1.317715959vw;
    height: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu::before {
    top: -2.34375vw;
    height: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu::before {
    top: -4.8vw;
    height: 4.8vw;
  }
}
.dropdown-tab__menu::after {
  content: "";
  position: absolute;
  top: -0.2604166667vw;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gray-white);
  border-radius: 0.2604166667vw 0 0 0;
  z-index: -1;
  width: 0.5208333333vw;
  height: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu::after {
    width: 0.7320644217vw;
    height: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu::after {
    width: 1.3020833333vw;
    height: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab__menu::after {
    border-radius: 0.3660322108vw 0 0 0;
    top: -0.3660322108vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__menu::after {
    border-radius: 0.6510416667vw 0 0 0;
    top: -0.6510416667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__menu::after {
    border-radius: 1.3333333333vw 0 0 0;
    top: -1.3333333333vw;
  }
}
.dropdown-tab__menu[data-pointer="center"]::after {
  left: 50%;
}
.dropdown-tab__menu[data-pointer="left"]::after {
  left: 25%;
}
.dropdown-tab__menu[data-pointer="right"]::after {
  left: 75%;
}
.dropdown-tab__menu_locked ..dropdown-tab__menu {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-tab__menu--active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-tab__option {
  display: block;
}
.dropdown-tab__option:nth-child(5n):not(:last-child) {
  border-bottom: solid var(--gray-lighter);
  padding-bottom: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab__option:nth-child(5n):not(:last-child) {
    padding-bottom: 3.2vw;
  }
}
.dropdown-tab__link {
  width: 100% !important;
  justify-content: unset !important;
}
.dropdown-tab__link .tab__text {
  white-space: nowrap;
}
.dropdown-tab__link .tab__chevron {
  margin-left: auto;
}
.dropdown-tab-primary .dropdown-tab__trigger {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-primary .dropdown-tab__trigger:hover {
    color: var(--color1-main);
  }
}
.dropdown-tab-primary .dropdown-tab__trigger:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.dropdown-tab-primary .dropdown-tab__trigger.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
.dropdown-tab-primary .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-secondary .dropdown-tab__trigger {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-secondary .dropdown-tab__trigger:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.dropdown-tab-secondary .dropdown-tab__trigger:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.dropdown-tab-secondary .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  color: var(--gray-darker);
}
.dropdown-tab-secondary .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-outline .dropdown-tab__trigger {
  background: transparent;
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-outline .dropdown-tab__trigger:hover {
    background: var(--gray-lighter);
    border-color: var(--color1-light);
    color: var(--gray-dark);
  }
}
.dropdown-tab-outline .dropdown-tab__trigger:active {
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-black);
}
.dropdown-tab-outline .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: var(--gray-darker);
}
.dropdown-tab-outline .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-underline .dropdown-tab__trigger {
  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) {
  .dropdown-tab-underline .dropdown-tab__trigger:hover {
    border-bottom-color: var(--color1-light);
  }
}
.dropdown-tab-underline .dropdown-tab__trigger:active {
  border-bottom-color: var(--color1-main);
}
.dropdown-tab-underline .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  color: var(--color1-main);
  border-bottom-color: var(--color1-main);
}
.dropdown-tab-underline .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.dropdown-tab-flat .dropdown-tab__trigger {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-flat .dropdown-tab__trigger:hover {
    color: var(--color1-main);
  }
}
.dropdown-tab-flat .dropdown-tab__trigger:active {
  color: var(--color1-darker);
}
.dropdown-tab-flat .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  color: var(--gray-black);
}
.dropdown-tab-flat .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.dropdown-tab-size_l .dropdown-tab__trigger {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
  gap: 0.4166666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    height: 4.0995607613vw;
    padding-inline: 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    height: 7.2916666667vw;
    padding-inline: 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_l .dropdown-tab__trigger {
    height: 14.9333333333vw;
    padding-inline: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.dropdown-tab-size_l .dropdown-tab__trigger .dropdown-tab__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_l .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_l .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_l .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 4.2666666667vw;
  }
}
.dropdown-tab-size_m .dropdown-tab__trigger {
  height: 2.5vw;
  padding-inline: 0.625vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    height: 3.513909224vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    height: 6.25vw;
    padding-inline: 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_m .dropdown-tab__trigger {
    height: 12.8vw;
    padding-inline: 3.2vw;
    gap: 1.0666666667vw;
  }
}
.dropdown-tab-size_m .dropdown-tab__trigger .dropdown-tab__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_m .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_m .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_m .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 4.2666666667vw;
  }
}
.dropdown-tab-size_s .dropdown-tab__trigger {
  height: 2.0833333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    height: 2.9282576867vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    height: 5.2083333333vw;
    padding-inline: 1.0416666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_s .dropdown-tab__trigger {
    height: 10.6666666667vw;
    padding-inline: 2.1333333333vw;
    gap: 1.0666666667vw;
  }
}
.dropdown-tab-size_s .dropdown-tab__trigger .dropdown-tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_s .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_s .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_s .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 3.4666666667vw;
  }
}
.dropdown-tab-size_xs .dropdown-tab__trigger {
  height: 1.875vw;
  padding-inline: 0.2083333333vw;
  gap: 0;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    height: 2.635431918vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    height: 4.6875vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger {
    height: 9.6vw;
    padding-inline: 1.0666666667vw;
  }
}
.dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__text {
    font-size: 3.4666666667vw;
  }
}
.dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__icon {
    margin-inline: 1.0666666667vw;
  }
}
.dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab-size_xs .dropdown-tab__trigger .dropdown-tab__chevron {
    margin-inline: 1.0666666667vw;
  }
}
.dropdown-tab-theme_dark {
  /* Menu Style */
  /* Trigger Styles */
}
.dropdown-tab-theme_dark .dropdown-tab__menu_dark {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
}
.dropdown-tab-theme_dark .dropdown-tab__menu_dark::after {
  background: var(--gray-darker);
}
.dropdown-tab-theme_dark .dropdown-tab__menu_dark .dropdown-tab__option:nth-child(5n):not(:last-child) {
  border-bottom: solid var(--gray-dark);
}
.dropdown-tab-theme_dark.dropdown-tab-primary .dropdown-tab__trigger {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-theme_dark.dropdown-tab-primary .dropdown-tab__trigger:hover {
    color: var(--color1-light);
  }
}
.dropdown-tab-theme_dark.dropdown-tab-primary .dropdown-tab__trigger:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.dropdown-tab-theme_dark.dropdown-tab-primary .dropdown-tab__trigger.active {
  cursor: default;
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
.dropdown-tab-theme_dark.dropdown-tab-primary .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-theme_dark.dropdown-tab-secondary .dropdown-tab__trigger {
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-theme_dark.dropdown-tab-secondary .dropdown-tab__trigger:hover {
    background: var(--gray-dark);
    color: var(--color1-light);
  }
}
.dropdown-tab-theme_dark.dropdown-tab-secondary .dropdown-tab__trigger:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--color1-main);
}
.dropdown-tab-theme_dark.dropdown-tab-secondary .dropdown-tab__trigger.active {
  cursor: default;
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
.dropdown-tab-theme_dark.dropdown-tab-secondary .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-theme_dark.dropdown-tab-outline .dropdown-tab__trigger {
  background: transparent;
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-theme_dark.dropdown-tab-outline .dropdown-tab__trigger:hover {
    border-color: var(--gray-medium);
  }
}
.dropdown-tab-theme_dark.dropdown-tab-outline .dropdown-tab__trigger:active {
  background: var(--gray-dark);
  border-color: var(--gray-medium);
}
.dropdown-tab-theme_dark.dropdown-tab-outline .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-lighter);
}
.dropdown-tab-theme_dark.dropdown-tab-outline .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.dropdown-tab-theme_dark.dropdown-tab-underline .dropdown-tab__trigger {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-theme_dark.dropdown-tab-underline .dropdown-tab__trigger:hover {
    border-bottom-color: var(--gray-medium);
  }
}
.dropdown-tab-theme_dark.dropdown-tab-underline .dropdown-tab__trigger:active {
  border-bottom-color: var(--gray-dark);
}
.dropdown-tab-theme_dark.dropdown-tab-underline .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
  border-bottom-color: var(--color1-main);
}
.dropdown-tab-theme_dark.dropdown-tab-underline .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.dropdown-tab-theme_dark.dropdown-tab-flat .dropdown-tab__trigger {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-tab-theme_dark.dropdown-tab-flat .dropdown-tab__trigger:hover {
    color: var(--color1-light);
  }
}
.dropdown-tab-theme_dark.dropdown-tab-flat .dropdown-tab__trigger:active {
  color: var(--color1-main);
}
.dropdown-tab-theme_dark.dropdown-tab-flat .dropdown-tab__trigger.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
}
.dropdown-tab-theme_dark.dropdown-tab-flat .dropdown-tab__trigger:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.btn-contact {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn-contact {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .btn-contact {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-contact {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn-contact__text {
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn-contact-flat {
  color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact-flat:hover {
    color: var(--color1-light);
  }
}
.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 {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.btn-contact-filled:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-contact-monochrome {
  color: var(--gray-darker);
}
@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-size_l.btn-contact-filled {
  height: 3.4375vw;
  padding: 0.625vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_l.btn-contact-filled {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_l.btn-contact-filled {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_l.btn-contact-filled {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-contact-size_l.btn-contact-filled {
    height: 4.831625183vw;
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_l.btn-contact-filled {
    height: 8.59375vw;
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_l.btn-contact-filled {
    height: 17.6vw;
    padding: 3.2vw;
  }
}
.btn-contact-size_l .btn-contact__text {
  font-size: 2.1875vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_l .btn-contact__text {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_l .btn-contact__text {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_l .btn-contact__text {
    font-size: 7.4666666667vw;
  }
}
.btn-contact-size_m.btn-contact-filled {
  height: 2.6041666667vw;
  padding: 0 0.625vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_m.btn-contact-filled {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_m.btn-contact-filled {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_m.btn-contact-filled {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-contact-size_m.btn-contact-filled {
    height: 3.6603221083vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_m.btn-contact-filled {
    height: 6.5104166667vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_m.btn-contact-filled {
    height: 13.3333333333vw;
    padding: 0 3.2vw;
  }
}
.btn-contact-size_m .btn-contact__text {
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_m .btn-contact__text {
    font-size: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_m .btn-contact__text {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_m .btn-contact__text {
    font-size: 6.4vw;
  }
}
.btn-contact-size_s.btn-contact-filled {
  height: 2.5vw;
  padding: 0 0.7291666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_s.btn-contact-filled {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_s.btn-contact-filled {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s.btn-contact-filled {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-contact-size_s.btn-contact-filled {
    height: 3.513909224vw;
    padding: 0 1.0248901903vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_s.btn-contact-filled {
    height: 6.25vw;
    padding: 0 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s.btn-contact-filled {
    height: 12.8vw;
    padding: 0 3.7333333333vw;
  }
}
.btn-contact-size_s .btn-contact__text {
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_s .btn-contact__text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_s .btn-contact__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_s .btn-contact__text {
    font-size: 4.2666666667vw;
  }
}
.btn-contact-size_xs.btn-contact-filled {
  height: 2.0833333333vw;
  padding: 0 0.4166666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_xs.btn-contact-filled {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_xs.btn-contact-filled {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs.btn-contact-filled {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-contact-size_xs.btn-contact-filled {
    height: 2.9282576867vw;
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_xs.btn-contact-filled {
    height: 5.2083333333vw;
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs.btn-contact-filled {
    height: 10.6666666667vw;
    padding: 0 2.1333333333vw;
  }
}
.btn-contact-size_xs .btn-contact__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .btn-contact-size_xs .btn-contact__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-contact-size_xs .btn-contact__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-contact-size_xs .btn-contact__text {
    font-size: 4.2666666667vw;
  }
}
.btn-contact-theme_dark.btn-contact-filled {
  background-color: var(--gray-dark);
  color: var(--color1-lighter);
}
@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: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-light);
  }
}
.btn-contact-theme_dark.btn-contact-monochrome:active {
  color: var(--color1-dark);
}
.btn-contact-theme_dark.btn-contact-monochrome:disabled {
  cursor: not-allowed;
  color: var(--gray-dark);
  border-color: transparent;
}
.separator {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  /*----------ORIENTATION-----------*/
  /*----------THEME-----------*/
}
.separator-orientation_horizontal {
  width: 100%;
  min-width: 100%;
  height: max(0.1041666667vw, 2px);
  align-self: center;
}
@media screen and (width <= 1401px) {
  .separator-orientation_horizontal {
    height: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .separator-orientation_horizontal {
    height: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .separator-orientation_horizontal {
    height: max(0.5333333333vw, 2px);
  }
}
.separator-orientation_vertical {
  height: 100%;
  width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .separator-orientation_vertical {
    width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .separator-orientation_vertical {
    width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .separator-orientation_vertical {
    width: max(0.5333333333vw, 2px);
  }
}
.separator-theme_light {
  background: var(--gray-lighter);
}
.separator-theme_dark {
  background: var(--gray-dark);
}
.logo-button {
  position: relative;
  display: flex;
  width: 8.3333333333vw;
  height: 2.0833333333vw;
  overflow: hidden;
  touch-action: manipulation;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .logo-button {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .logo-button {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .logo-button {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .logo-button {
    width: 11.7130307467vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .logo-button {
    width: 20.8333333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .logo-button {
    width: 42.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .logo-button:hover .logo-button__icon {
    top: -100%;
  }
  .logo-button:hover .logo-button__tab {
    top: 0;
  }
  .logo-button:active .logo-button__icon {
    top: -100%;
  }
  .logo-button:active .logo-button__tab {
    top: 0;
  }
}
.logo-button__icon {
  position: absolute;
  top: 0;
  width: 8.3333333333vw;
  height: 2.0833333333vw;
  flex-shrink: 0;
  transition: top 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .logo-button__icon {
    width: 11.7130307467vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .logo-button__icon {
    width: 20.8333333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .logo-button__icon {
    width: 42.6666666667vw;
    height: 10.6666666667vw;
  }
}
.logo-button__tab {
  position: absolute;
  top: 100%;
  width: 100%;
  transition: top 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.logo-button__tab .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .logo-button__tab .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .logo-button__tab .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .logo-button__tab .tab__text {
    font-size: 3.4666666667vw;
  }
}
.btn {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .btn {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__icon svg {
  display: inline-block;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn__loader {
  display: none;
}
.btn.loading .btn__loader {
  display: block;
}
.btn.loading .btn__text, .btn.loading .btn__icon {
  display: none;
}
.btn-size_l {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    border-radius: 2.1333333333vw;
  }
}
.btn-size_m {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    border-radius: 2.1333333333vw;
  }
}
.btn-size_s {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    border-radius: 2.1333333333vw;
  }
}
.btn-size_xs {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    border-radius: 2.1333333333vw;
  }
}
.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color1-light);
  }
}
.btn-primary:active {
  background: var(--color1-dark);
}
.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-secondary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: var(--color1-lighter);
  }
}
.btn-secondary:active {
  background: var(--color1-light);
}
.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-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gray:hover {
    background: var(--gray-darker);
  }
}
.btn-gray:active {
  background: var(--gray-black);
}
.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-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-monochrome:hover {
    background: var(--gray-light);
    color: var(--color1-dark);
  }
}
.btn-monochrome:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.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 <= 1401px) {
  .btn-size_l {
    height: 4.0995607613vw;
    padding: 0 1.756954612vw;
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_l .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_l .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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-inline: 1.0416666667vw;
  padding: 0 1.0416666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    height: 3.513909224vw;
    padding-inline: 1.4641288433vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    height: 6.25vw;
    padding-inline: 2.6041666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    height: 12.8vw;
    padding-inline: 4.8vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_m:has(.btn__icon_left) {
  padding-left: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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-inline: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_center) {
    padding-inline: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m:has(.btn__icon_center) {
    padding-inline: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_center) {
    padding-inline: 2.6666666667vw;
  }
}
.btn-size_m .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_m .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    height: 5.2083333333vw;
    padding: 0 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    height: 10.6666666667vw;
    padding: 0 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_s:has(.btn__icon_left) {
  padding-left: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_s .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_s .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 0.625vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_xs .btn__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-size_xs .btn__loader {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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(--gray-dark);
  color: var(--gray-white);
  border-color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-primary:hover {
    color: var(--color1-light);
  }
}
.btn-theme_dark.btn-primary:active {
  background: var(--gray-darker);
  color: var(--color1-main);
}
.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-medium);
  color: var(--gray-dark);
}
.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;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 99;
  transition: opacity 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 811px) {
  .search-overlay {
    display: none;
  }
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}
.search-form {
  display: grid;
  position: relative;
  grid-template-columns: 1fr min-content;
  width: 100%;
  z-index: 1000;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-form {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form {
    gap: 3.2vw;
  }
}
.search-form__results {
  position: absolute;
  background: var(--gray-white);
  overflow: hidden;
  width: 100%;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  box-shadow: var(--shadow-medium);
  border-radius: 0.4166666667vw;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  top: 3.125vw;
}
@media screen and (width <= 1401px) {
  .search-form__results {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__results {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__results {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .search-form__results {
    top: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__results {
    top: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__results {
    top: 14.9333333333vw;
  }
}
.search-form__results.active {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
.search-form__results-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  max-height: 50dvh;
  padding: 0.625vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-form__results-wrap {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__results-wrap {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__results-wrap {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .search-form__results-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__results-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__results-wrap {
    gap: 3.2vw;
  }
}
.search-form__info-text {
  color: var(--gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .search-form__info-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__info-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__info-text {
    font-size: 4.2666666667vw;
  }
}
.search-form__list {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .search-form__list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__list {
    gap: 1.0666666667vw;
  }
}
.search-form__list-title {
  color: var(--gray-medium);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .search-form__list-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__list-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__list-title {
    font-size: 4.2666666667vw;
  }
}
.search-form__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-form__list-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__list-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__list-wrap {
    gap: 3.2vw;
  }
}
.search-form__list-wrap:not(:first-of-type) {
  border-top: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
  padding-top: 0.625vw;
  margin-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-form__list-wrap:not(:first-of-type) {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .search-form__list-wrap:not(:first-of-type) {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .search-form__list-wrap:not(:first-of-type) {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .search-form__list-wrap:not(:first-of-type) {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__list-wrap:not(:first-of-type) {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__list-wrap:not(:first-of-type) {
    padding-top: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .search-form__list-wrap:not(:first-of-type) {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__list-wrap:not(:first-of-type) {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__list-wrap:not(:first-of-type) {
    margin-top: 3.2vw;
  }
}
.search-form__button {
  justify-content: flex-start !important;
  width: 100% !important;
}
.search-form__actions {
  display: flex;
  flex-direction: column;
  padding: 0.625vw;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-form__actions {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__actions {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__actions {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .search-form__actions {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__actions {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__actions {
    margin-top: 2.1333333333vw;
  }
}
.search-form__actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .search-form__actions-buttons {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-form__actions-buttons {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-form__actions-buttons {
    gap: 1.0666666667vw;
  }
}
.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 <= 1401px) {
  .text-input__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s 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 <= 1401px) {
  .text-input__reset-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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__reset * {
  pointer-events: none;
}
.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 <= 1401px) {
  .text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__label {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), filter 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .text-input__field {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .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: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 <= 1401px) {
  .text-input__error-message {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input__error-message {
    margin-top: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-pos_standard.text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_l .text-input__icon {
    left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_l .text-input__reset {
    right: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_l .text-input__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_m .text-input__icon {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_m .text-input__reset {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_m .text-input__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field {
    height: 3.513909224vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_s .text-input__icon {
    left: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_s .text-input__reset {
    right: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_s .text-input__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field {
    height: 2.9282576867vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_xs .text-input__icon {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_xs .text-input__reset {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .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%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .text-input-size_xs .text-input__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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;
}
.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.2604166667vw;
  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 <= 1401px) {
  .loader-icon__car {
    stroke-width: 0.3660322108vw;
  }
}
@media screen and (width <= 811px) {
  .loader-icon__car {
    stroke-width: 0.6510416667vw;
  }
}
@media screen and (width <= 481px) {
  .loader-icon__car {
    stroke-width: 1.3333333333vw;
  }
}
@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;
  }
}
.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;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn-menu {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .btn-menu {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-menu {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn-menu__badge {
  position: absolute;
  top: -0.1041666667vw;
  right: -0.1041666667vw;
  height: 0.8333333333vw;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  background: var(--error-dark);
  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 <= 1401px) {
  .btn-menu__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge {
    border-radius: 3.2vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .btn-menu__badge {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu__badge {
    top: -0.1041666667vw;
    right: -0.1041666667vw;
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu__badge {
    top: -0.2604166667vw;
    right: -0.2604166667vw;
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu__badge {
    top: -0.5333333333vw;
    right: -0.5333333333vw;
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.btn-menu__text {
  transition: color 0.2s 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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-menu__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_l {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-menu-size_l {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_l {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_l {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding: 0 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .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.625vw;
  gap: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-menu-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m {
    height: 3.513909224vw;
    padding: 0 0.878477306vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m {
    height: 6.25vw;
    padding: 0 1.5625vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    height: 12.8vw;
    padding: 0 3.2vw;
    gap: 0.5333333333vw;
  }
}
.btn-menu-size_m:has(.btn-menu__text) {
  padding: 0 0.3125vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding: 0 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .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%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .btn-menu-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_s {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_s {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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;
}
.sheet {
  position: absolute;
  top: 3.75vw;
  left: 0;
  right: 0;
  background: var(--gray-white);
  height: 70dvh;
  width: 100%;
  z-index: -1;
  transform: translateY(-130%) translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.6s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .sheet {
    top: 4.6852122987vw;
  }
}
@media screen and (width <= 811px) {
  .sheet {
    display: none;
    top: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .sheet {
    top: 17.0666666667vw;
  }
}
.sheet.active {
  transform: translateY(-1%) translateZ(0);
  pointer-events: auto;
  user-select: auto;
}
.sheet__container {
  display: grid;
  grid-template-columns: 1fr 12.5vw;
  height: 100%;
  padding: 1.0416666667vw 0 2.0833333333vw;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .sheet__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .sheet__container {
    grid-template-columns: 1fr 16.9838945827vw;
    padding: 1.4641288433vw 0 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__container {
    grid-template-columns: 1fr 12.5vw;
    padding: 1.4641288433vw 0 2.9282576867vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__container {
    grid-template-columns: 1fr 12.5vw;
    padding: 5.3333333333vw 0 10.6666666667vw;
  }
}
.sheet__body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1.25vw;
}
@media screen and (width <= 1401px) {
  .sheet__body {
    gap: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__body {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__body {
    gap: 6.4vw;
  }
}
.sheet__aside {
  display: flex;
  flex-direction: column;
  overflow: scroll;
  border-left: solid var(--gray-light);
  padding-left: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
  gap: 1.0416666667vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .sheet__aside {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .sheet__aside {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .sheet__aside {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .sheet__aside {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__aside {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__aside {
    gap: 5.3333333333vw;
  }
}
.sheet__aside::-webkit-scrollbar {
  display: none;
}
.sheet__aside::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .sheet__aside {
    padding-left: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__aside {
    padding-left: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__aside {
    padding-left: 5.3333333333vw;
  }
}
.sheet__nav {
  height: fit-content;
}
.sheet__categories {
  display: flex;
  flex-direction: column;
  overflow: hidden scroll;
  gap: 2.0833333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .sheet__categories {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__categories {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__categories {
    gap: 10.6666666667vw;
  }
}
.sheet__categories::-webkit-scrollbar {
  display: none;
}
.sheet__categories::-webkit-scrollbar-thumb {
  display: none;
}
.sheet__cat-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
  margin-top: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .sheet__cat-wrap {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-wrap {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-wrap {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .sheet__cat-wrap {
    margin-top: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-wrap {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-wrap {
    margin-top: 10.6666666667vw;
  }
}
.sheet__cat-title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .sheet__cat-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-title {
    font-size: 4.2666666667vw;
  }
}
.sheet__cat-list {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  gap: 1.0416666667vw;
  animation: pulse-sm 0.5s ease forwards;
}
@media screen and (width <= 1401px) {
  .sheet__cat-list {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-list {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-list {
    gap: 5.3333333333vw;
  }
}
.sheet__cat-list.active {
  display: grid;
}
.sheet__cat-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet__cat-empty p {
  color: var(--gray-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  font-weight: 700;
  margin-block: 1.875vw;
}
@media screen and (width <= 1401px) {
  .sheet__cat-empty p {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-empty p {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-empty p {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .sheet__cat-empty p {
    margin-block: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .sheet__cat-empty p {
    margin-block: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .sheet__cat-empty p {
    margin-block: 9.6vw;
  }
}
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 99;
  transition: opacity 0.4s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 811px) {
  .sheet-overlay {
    display: none;
  }
}
.sheet-overlay.active {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}
.tab-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: var(--gray-lighter);
  padding: 0.625vw;
  border-radius: 0.625vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-list {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-list {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-list {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list {
    flex-direction: column;
    padding: 3.2vw;
  }
}
.tab-list__tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 2.9166666667vw;
  width: 100%;
  background: transparent;
  color: var(--gray-medium);
  touch-action: manipulation;
  gap: 0.4166666667vw;
  border-radius: 0.4166666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .tab-list__tab {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list__tab {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list__tab {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-list__tab {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list__tab {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list__tab {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-list__tab {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list__tab {
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list__tab {
    height: 12.8vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tab-list__tab:hover {
    color: var(--color1-main);
  }
}
.tab-list__tab:active {
  background: var(--gray-white);
  color: var(--gray-darker);
}
.tab-list__tab.active {
  pointer-events: none;
  background: var(--gray-white);
  color: var(--gray-darker);
}
.tab-list__tab svg {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab-list__tab svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list__tab svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list__tab svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab-list__tab span {
  white-space: nowrap;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-list__tab span {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-list__tab span {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-list__tab span {
    font-size: 4.2666666667vw;
  }
}
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------SIZES-----------*/
}
@media (hover: hover) and (pointer: fine) {
  .category-card:hover .category-card__title {
    color: var(--color1-main);
  }
  .category-card:hover .category-card__image-wrapper img {
    scale: 1.1;
  }
  .category-card:hover .category-card__button-link svg {
    transform: rotate(45deg);
  }
}
.category-card:active .category-card__title {
  color: var(--color1-darker);
}
.category-card:active .category-card__image-wrapper img {
  scale: 1;
}
.category-card:active .category-card__button-link svg {
  transform: translateX(20%) rotate(45deg);
}
.category-card__link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.category-card__image-wrapper img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  transition: scale 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.category-card__title {
  display: flex;
  align-items: flex-end;
  color: var(--gray-darker);
  height: 2lh;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .category-card__title {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__title {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__title {
    gap: 3.2vw;
  }
}
.category-card__title span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .category-card__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.category-card__title svg {
  flex-shrink: 0;
  display: none;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .category-card__title svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__title svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__title svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.category-card__button-link {
  z-index: 2;
  position: relative;
  display: none;
  flex-direction: row;
  align-items: center;
  color: var(--color1-dark);
  margin-top: 0.625vw;
  gap: 0.1041666667vw;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .category-card__button-link {
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__button-link {
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__button-link {
    gap: 0.5333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card__button-link {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__button-link {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__button-link {
    margin-top: 2.1333333333vw;
  }
}
.category-card__button-link span {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .category-card__button-link span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__button-link span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__button-link span {
    font-size: 3.4666666667vw;
  }
}
.category-card__button-link svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .category-card__button-link svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__button-link svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__button-link svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.category-card__subcategories {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: solid var(--gray-light);
  padding-top: 0.8333333333vw;
  margin-top: 0.8333333333vw;
  z-index: 2;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .category-card__subcategories {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategories {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategories {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .category-card__subcategories {
    padding-top: 1.1713030747vw;
    margin-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategories {
    padding-top: 2.0833333333vw;
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategories {
    padding-top: 4.2666666667vw;
    margin-top: 4.2666666667vw;
  }
}
.category-card__subcategory-link {
  color: var(--gray-darker);
  background: transparent;
  padding: 0.5208333333vw 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .category-card__subcategory-link {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategory-link {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategory-link {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card__subcategory-link {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategory-link {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategory-link {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card__subcategory-link {
    padding: 0.7320644217vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategory-link {
    padding: 1.3020833333vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategory-link {
    padding: 2.6666666667vw 3.2vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .category-card__subcategory-link:hover {
    color: var(--color1-main);
    background: var(--gray-white);
  }
}
.category-card__subcategory-link:active {
  color: var(--color1-darker);
  background: var(--color1-lighter);
}
.category-card__subcategory-link b {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .category-card__subcategory-link b {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .category-card__subcategory-link b {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card__subcategory-link b {
    font-size: 3.4666666667vw;
  }
}
.category-card-size--l {
  background: var(--gray-lighter);
  padding: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--l {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--l {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--l {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--l {
    padding: 5.3333333333vw;
  }
}
.category-card-size--l .category-card__image-wrapper {
  height: 14.5833333333vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--l .category-card__image-wrapper {
    height: 18.1551976574vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--l .category-card__image-wrapper {
    height: 27.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--l .category-card__image-wrapper {
    height: 54.4vw;
  }
}
.category-card-size--l .category-card__title {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 0.4166666667vw;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .category-card-size--l .category-card__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--l .category-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--l .category-card__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--l .category-card__title {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--l .category-card__title {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--l .category-card__title {
    margin-top: 2.1333333333vw;
  }
}
.category-card-size--l .category-card__title svg {
  display: block;
}
.category-card-size--m {
  background: var(--gray-lighter);
  padding: 1.25vw 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--m {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--m {
    padding: 1.756954612vw 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--m {
    padding: 2.0833333333vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--m {
    padding: 4.2666666667vw 3.2vw;
  }
}
.category-card-size--m .category-card__image-wrapper {
  height: 10.7291666667vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--m .category-card__image-wrapper {
    height: 13.17715959vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--m .category-card__image-wrapper {
    height: 19.0104166667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--m .category-card__image-wrapper {
    height: 58.1333333333vw;
  }
}
.category-card-size--m .category-card__title {
  margin-top: 0.625vw;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .category-card-size--m .category-card__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--m .category-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--m .category-card__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--m .category-card__title {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--m .category-card__title {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--m .category-card__title {
    margin-top: 2.1333333333vw;
  }
}
.category-card-size--m .category-card__button-link {
  display: flex;
}
.category-card-size--s {
  background: var(--gray-white);
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--s {
    border-radius: 2.1333333333vw;
  }
}
.category-card-size--s .category-card__image-wrapper {
  height: 6.3541666667vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--s .category-card__image-wrapper {
    height: 7.7598828697vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--s .category-card__image-wrapper {
    height: 13.8020833333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--s .category-card__image-wrapper {
    height: 28.2666666667vw;
  }
}
.category-card-size--s .category-card__title {
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0.2083333333vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .category-card-size--s .category-card__title {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--s .category-card__title {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--s .category-card__title {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--s .category-card__title {
    margin-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--s .category-card__title {
    margin-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--s .category-card__title {
    margin-top: 1.0666666667vw;
  }
}
.category-card-size--xs {
  flex-shrink: 0;
  height: fit-content;
  padding: 0.8333333333vw 0.625vw;
  background: var(--gray-lighter);
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--xs {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--xs {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--xs {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--xs {
    padding: 1.1713030747vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--xs {
    padding: 2.0833333333vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--xs {
    padding: 4.2666666667vw 3.2vw;
  }
}
.category-card-size--xs:active {
  background: var(--gray-light);
}
.category-card-size--xs .category-card__image-wrapper {
  margin-inline: auto;
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .category-card-size--xs .category-card__image-wrapper {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--xs .category-card__image-wrapper {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--xs .category-card__image-wrapper {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.category-card-size--xs .category-card__image-wrapper img {
  object-fit: cover;
}
.category-card-size--xs .category-card__title {
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0.4166666667vw;
  height: auto;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .category-card-size--xs .category-card__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--xs .category-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--xs .category-card__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .category-card-size--xs .category-card__title {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .category-card-size--xs .category-card__title {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .category-card-size--xs .category-card__title {
    margin-top: 2.1333333333vw;
  }
}
.geo-modal {
  padding: 1.0416666667vw;
  left: 13.0208333333vw;
  top: 2.9166666667vw;
  max-width: 20.8333333333vw;
  width: 100%;
  transform: translate(0) translateZ(0);
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .geo-modal {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal {
    left: 3.2942898975vw;
    top: 4.0995607613vw;
    padding: 1.4641288433vw;
    max-width: 29.2825768668vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal {
    inset: 0;
    padding: 1.0416666667vw;
    max-width: unset;
    transform: translate(0, 100%) translateZ(0);
  }
}
@media screen and (width <= 481px) {
  .geo-modal {
    padding: 2.1333333333vw;
  }
}
.geo-modal.active {
  transform: translate(0) translateZ(0);
}
.geo-modal::before {
  content: "";
  position: absolute;
  background: inherit;
  top: -5px;
  left: 10%;
  transform: rotate(45deg);
  border-radius: 0.15625vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .geo-modal::before {
    border-radius: 0.2196193265vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal::before {
    border-radius: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal::before {
    border-radius: 0.8vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal::before {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal::before {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal::before {
    display: none;
  }
}
.geo-modal__container {
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 811px) {
  .geo-modal__container {
    height: 100%;
  }
}
.geo-modal__top {
  display: none;
  flex-shrink: 0;
  justify-content: flex-end;
  border-bottom: solid var(--gray-light);
  border-width: max(0.1041666667vw, 2px);
  margin-bottom: 1.0416666667vw;
  padding-bottom: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .geo-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .geo-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .geo-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__top {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__top {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__top {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__top {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__top {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__top {
    padding-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__top {
    display: flex;
  }
}
.geo-modal__body {
  display: flex;
  flex-direction: column;
}
.geo-modal__title {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .geo-modal__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__title {
    font-size: 4.2666666667vw;
  }
}
.geo-modal__title span {
  color: var(--color1-dark);
}
.geo-modal__block {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .geo-modal__block {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__block {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__block {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__block {
    margin-inline: 1.0416666667vw;
    padding-bottom: 8.3333333333vw;
    height: 100%;
    justify-content: space-between;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__block {
    margin-inline: 2.1333333333vw;
    padding-bottom: 17.0666666667vw;
  }
}
.geo-modal__block-body {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .geo-modal__block-body {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__block-body {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__block-body {
    gap: 5.3333333333vw;
  }
}
.geo-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .geo-modal__actions {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__actions {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__actions {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__actions {
    flex-direction: column;
  }
}
.geo-modal__dropdown {
  position: relative;
}
.geo-modal__dropdown-list {
  position: absolute;
  display: flex;
  width: 100%;
  max-height: 30dvh;
  flex-direction: column;
  padding: 0.4166666667vw;
  background: var(--gray-white);
  opacity: 0;
  box-shadow: var(--shadow-medium);
  user-select: none;
  pointer-events: none;
  overflow: hidden scroll;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-radius: 0.8333333333vw;
  gap: 0.4166666667vw;
}
.geo-modal__dropdown-list::-webkit-scrollbar {
  display: none;
}
.geo-modal__dropdown-list::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-list {
    border-radius: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-list {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-list {
    border-radius: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-list {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-list {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-list {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-list {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-list {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-list {
    padding: 2.1333333333vw;
  }
}
.geo-modal__dropdown-list.active {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
.geo-modal__dropdown-item {
  padding: 0.5208333333vw 0.625vw;
  width: 100%;
  color: var(--gray-darker);
  background: var(--gray-lighter);
  cursor: pointer;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-item {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-item {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-item {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-item {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-item {
    padding: 0.7320644217vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-item {
    padding: 1.3020833333vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-item {
    padding: 2.6666666667vw 3.2vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .geo-modal__dropdown-item:hover {
    color: var(--color1-main);
  }
}
.geo-modal__dropdown-item:active {
  color: var(--color1-dark);
  background: var(--color1-lighter);
}
.geo-modal__dropdown-item--no-results {
  color: var(--gray-medium);
  padding: 0.2083333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-item--no-results {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-item--no-results {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-item--no-results {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-modal__dropdown-item--no-results {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .geo-modal__dropdown-item--no-results {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-modal__dropdown-item--no-results {
    padding: 1.0666666667vw;
  }
}
.btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  background: var(--gray-lighter);
  color: var(--gray-darker);
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  gap: 0.4166666667vw;
  border-radius: 0.4166666667vw;
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1401px) {
  .btn-close {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .btn-close {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-close {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .btn-close {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-close {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-close {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-close {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-close {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-close {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-close {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .btn-close {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .btn-close {
    width: 12.8vw;
    height: 12.8vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-close:hover {
    background: var(--color1-lighter);
  }
}
.btn-close:active {
  background: var(--color1-light);
}
.btn-close__icon {
  color: var(--gray-darker);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-close__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-close__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-close__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.catalog-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .catalog-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal {
    border-radius: 0vw;
  }
}
.catalog-modal::-webkit-scrollbar {
  display: none;
}
.catalog-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .catalog-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
    transform: translate(100%, 0) translateZ(0) !important;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal.active {
    transform: translate(0) translateZ(0) !important;
  }
}
.catalog-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__container {
    gap: 0;
    padding-bottom: 17.0666666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__container {
    padding-bottom: 17.0666666667vw;
  }
}
.catalog-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.catalog-modal__button-search {
  position: absolute;
  top: 0;
  right: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__button-search {
    right: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__button-search {
    right: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__button-search {
    right: 14.9333333333vw;
  }
}
.catalog-modal__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  max-width: 22.8125vw;
  height: 2.5vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-modal__top {
    max-width: 31.9180087848vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__top {
    max-width: unset;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__top {
    height: 12.8vw;
  }
}
.catalog-modal__title {
  color: var(--gray-black);
  max-width: 24ch;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .catalog-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__title {
    font-size: 5.3333333333vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .catalog-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 <= 811px) {
  .catalog-modal__title {
    max-width: 60ch;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__title {
    max-width: 20ch;
  }
}
.catalog-modal__desc {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .catalog-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__desc {
    font-size: 4.2666666667vw;
  }
}
.catalog-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  max-height: 50dvh;
  border-radius: 0.2083333333vw;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-modal__body {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__body {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__body {
    margin-top: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__body {
    padding-top: 1.0416666667vw;
    border-top: solid var(--gray-lighter);
    max-height: unset;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .catalog-modal__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .catalog-modal__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .catalog-modal__body {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__body {
    padding-top: 2.1333333333vw;
  }
}
.catalog-modal__body-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__body-wrap {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__body-wrap {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__body-wrap {
    gap: 2.1333333333vw;
  }
}
.catalog-modal__panel {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
  animation: fadeIn 0.5s ease forwards;
}
@media screen and (width <= 1401px) {
  .catalog-modal__panel {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__panel {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__panel {
    gap: 1.0666666667vw;
  }
}
.catalog-modal__tab-category {
  width: 100% !important;
  justify-content: space-between !important;
}
.catalog-modal__tab-category .tab-image__text-wrap {
  margin-right: auto !important;
}
.catalog-modal__button {
  justify-content: flex-start !important;
  width: 100% !important;
}
.catalog-modal__actions {
  display: flex;
  flex-direction: column;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__actions {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__actions {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__actions {
    margin-top: 2.1333333333vw;
  }
}
.catalog-modal__actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .catalog-modal__actions-buttons {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-modal__actions-buttons {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-modal__actions-buttons {
    gap: 1.0666666667vw;
  }
}
.tab-image {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .tab-image {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image__text-wrap {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image__text-wrap {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__text-wrap {
    margin-inline: 1.0666666667vw;
  }
}
.tab-image__text {
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 1) {
  .tab-image__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.tab-image__desc {
  color: var(--gray-medium);
}
.tab-image__image {
  object-fit: contain;
  flex-shrink: 0;
  user-select: none;
}
.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 <= 1401px) {
  .tab-image__marker-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab-image__icon-left, .tab-image__icon-right {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 {
  flex-shrink: 0;
  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 <= 1401px) {
  .tab-image__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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.tab-cat .tab-image__image {
  object-fit: cover;
}
.tab-image.tab-cat .tab-image__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .tab-image.tab-cat .tab-image__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.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 {
  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;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xl {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl {
    height: 5.270863836vw;
    padding-inline: 0.5856515373vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xl .tab-image__image, .tab-image-size_xl .tab-image__marker {
    width: 4.6852122987vw;
    height: 4.6852122987vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xl .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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_xl.tab-cat {
  gap: 0;
  padding-inline: 0.2083333333vw;
  margin-inline-end: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl.tab-cat {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xl.tab-cat {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl.tab-cat {
    padding-inline: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl.tab-cat {
    margin-inline-end: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xl.tab-cat {
    margin-inline-end: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl.tab-cat {
    margin-inline-end: 4.2666666667vw;
  }
}
.tab-image-size_xl.tab-cat .tab-image__image {
  width: 5vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xl.tab-cat .tab-image__image {
    width: 7.027818448vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xl.tab-cat .tab-image__image {
    width: 12.5vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xl.tab-cat .tab-image__image {
    width: 25.6vw;
  }
}
.tab-image-size_l {
  height: 3.3333333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.4166666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_l {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_l {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_l {
    height: 4.6852122987vw;
    padding-inline: 0.5856515373vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_l .tab-image__image, .tab-image-size_l .tab-image__marker {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-image-size_l .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_l .tab-image__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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_l.tab-cat {
  gap: 0;
  padding-inline: 0.2083333333vw;
  margin-inline-end: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_l.tab-cat {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_l.tab-cat {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l.tab-cat {
    padding-inline: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_l.tab-cat {
    margin-inline-end: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_l.tab-cat {
    margin-inline-end: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l.tab-cat {
    margin-inline-end: 4.2666666667vw;
  }
}
.tab-image-size_l.tab-cat .tab-image__image {
  width: 4.375vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_l.tab-cat .tab-image__image {
    width: 6.149341142vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_l.tab-cat .tab-image__image {
    width: 10.9375vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_l.tab-cat .tab-image__image {
    width: 22.4vw;
  }
}
.tab-image-size_m {
  height: 2.9166666667vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_m {
    height: 4.0995607613vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_m .tab-image__image, .tab-image-size_m .tab-image__marker {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-image-size_m .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_m .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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_m.tab-cat {
  gap: 0;
  padding-inline: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_m.tab-cat {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_m.tab-cat {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m.tab-cat {
    padding-inline: 1.0666666667vw;
  }
}
.tab-image-size_m.tab-cat .tab-image__image {
  width: 3.75vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_m.tab-cat .tab-image__image {
    width: 5.270863836vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_m.tab-cat .tab-image__image {
    width: 9.375vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_m.tab-cat .tab-image__image {
    width: 19.2vw;
  }
}
.tab-image-size_s {
  height: 2.5vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_s {
    height: 3.513909224vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_s .tab-image__image, .tab-image-size_s .tab-image__marker {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .tab-image-size_s .tab-image__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_s .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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_s.tab-cat {
  gap: 0;
  padding-inline: unset;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_s.tab-cat {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_s.tab-cat {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s.tab-cat {
    border-radius: 2.1333333333vw;
  }
}
.tab-image-size_s.tab-cat .tab-image__image {
  width: 3.125vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_s.tab-cat .tab-image__image {
    width: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_s.tab-cat .tab-image__image {
    width: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_s.tab-cat .tab-image__image {
    width: 16vw;
  }
}
.tab-image-size_xs {
  height: 2.0833333333vw;
  padding-inline: 0.2083333333vw;
  gap: 0;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xs {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs {
    height: 2.9282576867vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xs:has(.tab-image__image, .tab-image__marker) {
    padding-inline-start: 0;
    padding-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xs .tab-image__image, .tab-image-size_xs .tab-image__marker {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs .tab-image__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xs .tab-image__desc {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .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 <= 811px) {
  .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 <= 1401px) {
  .tab-image-size_xs .tab-image__icon-left, .tab-image-size_xs .tab-image__icon-right {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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-size_xs.tab-cat {
  padding-inline: unset;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs.tab-cat {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xs.tab-cat {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs.tab-cat {
    border-radius: 2.1333333333vw;
  }
}
.tab-image-size_xs.tab-cat .tab-image__image {
  margin-inline-start: unset;
  margin-inline-end: 0.4166666667vw;
  width: 3.125vw;
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    margin-inline-end: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    margin-inline-end: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    margin-inline-end: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    width: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    width: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-image-size_xs.tab-cat .tab-image__image {
    width: 16vw;
  }
}
.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);
}
.callback-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .callback-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal {
    border-radius: 0vw;
  }
}
.callback-modal::-webkit-scrollbar {
  display: none;
}
.callback-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .callback-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.callback-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .callback-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__container {
    gap: 5.3333333333vw;
  }
}
.callback-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.callback-modal__top {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .callback-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__top {
    padding-top: 2.6041666667vw;
    margin-top: 7.5520833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .callback-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .callback-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .callback-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .callback-modal__top {
    padding-top: 5.3333333333vw;
    margin-top: 15.4666666667vw;
  }
}
.callback-modal__title {
  max-width: 22.8125vw;
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .callback-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__title {
    max-width: 31.9180087848vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__title {
    max-width: unset;
  }
}
.callback-modal__title span {
  color: var(--color1-dark);
}
.callback-modal__contacts {
  display: flex;
  flex-direction: column;
  border-bottom: solid var(--gray-lighter);
  gap: 0.4166666667vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 1.0416666667vw;
  margin-bottom: 0.4166666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .callback-modal__contacts {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__contacts {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__contacts {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__contacts {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__contacts {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__contacts {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__contacts {
    padding-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__contacts {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__contacts {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__contacts {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__contacts {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__contacts {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__contacts {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .callback-modal__contacts {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .callback-modal__contacts {
    border-width: max(0.5333333333vw, 2px);
  }
}
.callback-modal__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .callback-modal__social {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social {
    gap: 2.1333333333vw;
  }
}
.callback-modal__social--tg svg {
  color: var(--socials-tg);
}
.callback-modal__social--wt svg {
  color: var(--socials-wt);
}
.callback-modal__social--max {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4166666667vw;
  width: 100%;
  padding-block: 0.625vw;
  padding-inline: 1.0416666667vw;
  background: var(--gray-lighter);
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
  justify-content: center;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .callback-modal__social--max {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social--max {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social--max {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__social--max {
    padding-block: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social--max {
    padding-block: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social--max {
    padding-block: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__social--max {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social--max {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social--max {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__social--max {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social--max {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social--max {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__social--max {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social--max {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social--max {
    border-radius: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .callback-modal__social--max:hover {
    background: var(--color1-lighter);
  }
}
.callback-modal__social--max:active {
  background: var(--color1-light);
}
.callback-modal__social-item .callback-modal__social--max {
  height: 2.5vw;
  max-height: 2.5vw;
}
@media screen and (width <= 1401px) {
  .callback-modal__social-item .callback-modal__social--max {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social-item .callback-modal__social--max {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social-item .callback-modal__social--max {
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .callback-modal__social-item .callback-modal__social--max {
    max-height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__social-item .callback-modal__social--max {
    max-height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__social-item .callback-modal__social--max {
    max-height: 12.8vw;
  }
}
.callback-modal__desc {
  color: var(--gray-dark);
  max-width: 39ch;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .callback-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__desc {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__desc {
    max-width: unset;
  }
}
.callback-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .callback-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) {
  .callback-modal__body {
    padding-bottom: 16.9270833333vw;
  }
}
@media screen and (width <= 481px) {
  .callback-modal__body {
    padding-bottom: 42.6666666667vw;
  }
}
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form {
    gap: 5.3333333333vw;
  }
}
.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form__inputs {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form__inputs {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form__inputs {
    gap: 3.2vw;
  }
}
.form__input-row {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form__input-row {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form__input-row {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form__input-row {
    gap: 3.2vw;
  }
}
.form__text-input {
  width: 100%;
}
.form__controls {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form__controls {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form__controls {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form__controls {
    gap: 3.2vw;
  }
}
.form__button-submit {
  width: 100%;
}
.form .checkbox__input {
  width: unset;
  height: unset;
}
.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;
  pointer-events: none;
}
.checkbox {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  padding: 0.1041666667vw;
  gap: 0.5208333333vw;
  touch-action: manipulation;
  gap: 0.5208333333vw;
  transition: background-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .checkbox {
    gap: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox {
    gap: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox {
    gap: 2.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox {
    padding: 0.1464128843vw;
    margin: -0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox {
    padding: 0.2604166667vw;
    margin: -0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox {
    padding: 0.5333333333vw;
    margin: -0.5333333333vw;
  }
}
.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 .checkbox__icon {
  opacity: 1;
  transform: scale(1);
}
.checkbox__custom {
  flex-shrink: 0;
  position: relative;
  border: solid var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .checkbox__custom {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .checkbox__custom {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .checkbox__custom {
    border-width: max(0.5333333333vw, 2px);
  }
}
.checkbox__icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.1);
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.checkbox__text {
  user-select: none;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .checkbox__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__text {
    font-size: 4.2666666667vw;
  }
}
.checkbox__policy {
  color: var(--gray-medium);
  user-select: none;
  margin-block: 0.1041666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .checkbox__policy {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox__policy {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__policy {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox__policy {
    margin-block: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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.2s 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 {
    opacity: 0.5;
    transform: scale(0.9);
    color: var(--gray-medium);
  }
  .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 .checkbox__icon {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-line:hover .checkbox__input:not(:checked) ~ .checkbox__custom::after {
    opacity: 0.5;
    transform: scale(0.9);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom {
    background: transparent;
    border-color: var(--color1-dark);
    background: var(--color1-dark);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom::after {
    border-color: var(--color1-dark);
    background: var(--color1-dark);
  }
}
.checkbox-line .checkbox__input:checked ~ .checkbox__custom {
  background: transparent;
  border-color: var(--color1-main);
  background: var(--color1-main);
}
.checkbox-line .checkbox__custom .checkbox__icon {
  color: var(--gray-white);
}
.checkbox-size_m .checkbox__custom {
  border-radius: 0.3125vw;
  width: 1.4583333333vw;
  height: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 1.6vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size_m .checkbox__custom {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .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 {
  border-radius: 0.2083333333vw;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size_s .checkbox__custom {
    width: 1.4641288433vw;
    height: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .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);
}
.specs-modal {
  width: 100%;
  max-width: 33.3333333333vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .specs-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal {
    border-radius: 0vw;
  }
}
.specs-modal::-webkit-scrollbar {
  display: none;
}
.specs-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .specs-modal {
    max-width: 46.8521229868vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.specs-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__container {
    gap: 5.3333333333vw;
  }
}
.specs-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.specs-modal__top {
  display: flex;
  flex-direction: column;
  margin-top: 1.0416666667vw;
  gap: 1.5625vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__top {
    margin-top: 1.0416666667vw;
    gap: 2.196193265vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__top {
    max-width: unset;
    padding-top: 2.6041666667vw;
    margin-top: 7.5520833333vw;
    border-top: solid var(--gray-lighter);
    gap: 1.0416666667vw;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .specs-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .specs-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .specs-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .specs-modal__top {
    padding-top: 5.3333333333vw;
    margin-top: 15.4666666667vw;
    gap: 5.3333333333vw;
  }
}
.specs-modal__body {
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  flex: 1 1 auto;
  max-height: 50dvh;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__body {
    max-height: unset;
  }
}
.specs-modal__body-title {
  color: var(--gray-darker);
  margin-bottom: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .specs-modal__body-title {
    margin-bottom: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__body-title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__body-title {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal__body-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__body-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__body-title {
    font-size: 5.3333333333vw;
  }
}
.specs-modal__title {
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .specs-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__title {
    font-size: 5.3333333333vw;
  }
}
.specs-modal__desc {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__desc {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__desc {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__desc {
    gap: 3.2vw;
  }
}
.specs-modal__info {
  display: flex;
  flex-direction: row;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__info {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info {
    gap: 3.2vw;
  }
}
.specs-modal__info-image {
  height: 3.3333333333vw;
  width: 5vw;
  flex-shrink: 0;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__info-image {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info-image {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info-image {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal__info-image {
    height: 4.6852122987vw;
    width: 7.027818448vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info-image {
    height: 8.3333333333vw;
    width: 12.5vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info-image {
    height: 17.0666666667vw;
    width: 25.6vw;
  }
}
.specs-modal__info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__info-text {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info-text {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info-text {
    gap: 1.0666666667vw;
  }
}
.specs-modal__info-title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .specs-modal__info-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info-title {
    font-size: 4.2666666667vw;
  }
}
.specs-modal__info-prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__info-prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__info-prices {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__info-prices {
    gap: 2.1333333333vw;
  }
}
.specs-modal__price--request {
  color: var(--gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .specs-modal__price--request {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__price--request {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__price--request {
    font-size: 4.2666666667vw;
  }
}
.specs-modal__price--current {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .specs-modal__price--current {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__price--current {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__price--current {
    font-size: 4.2666666667vw;
  }
}
.specs-modal__price--old {
  color: var(--color1-dark);
  text-decoration: line-through solid currentColor;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .specs-modal__price--old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__price--old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__price--old {
    font-size: 3.4666666667vw;
  }
}
.specs-modal__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .specs-modal__actions {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal__actions {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal__actions {
    gap: 2.1333333333vw;
  }
}
.specs-modal .table {
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .specs-modal .table {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table {
    gap: 1.0666666667vw;
  }
}
.specs-modal .table + .specs-modal__body-title {
  margin-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .specs-modal .table + .specs-modal__body-title {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table + .specs-modal__body-title {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table + .specs-modal__body-title {
    margin-top: 3.2vw;
  }
}
.specs-modal .table__title {
  color: var(--gray-darker);
  background: var(--gray-lighter);
  padding: 0.4166666667vw;
  padding-inline: 0.625vw;
  border-radius: 0.4166666667vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .specs-modal .table__title {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__title {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__title {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal .table__title {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__title {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__title {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal .table__title {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__title {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__title {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal .table__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__title {
    font-size: 4.2666666667vw;
  }
}
.specs-modal .table__body {
  gap: unset;
}
.specs-modal .table__row {
  border-bottom: solid var(--gray-lighter);
  background: transparent;
  padding-inline: 0.625vw;
  gap: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .specs-modal .table__row {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__row {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__row {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal .table__row {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__row {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__row {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .specs-modal .table__row {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .specs-modal .table__row {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .specs-modal .table__row {
    border-width: max(0.5333333333vw, 2px);
  }
}
.specs-modal .table__row:last-child {
  border-bottom: unset;
}
.specs-modal .table__cell {
  padding-inline: unset;
}
.table {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .table {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .table {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .table {
    gap: 3.2vw;
  }
}
.table__title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .table__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .table__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .table__title {
    font-size: 4.2666666667vw;
  }
}
.table__wrap {
  overflow-x: auto;
}
.table__content {
  width: 100%;
  border-collapse: separate;
}
.table__body {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .table__body {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .table__body {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .table__body {
    gap: 2.1333333333vw;
  }
}
.table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  background: var(--gray-lighter);
  overflow: hidden;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .table__row {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .table__row {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .table__row {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .table__row {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto;
    padding: 1.0416666667vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .table__row {
    padding: 2.1333333333vw 3.2vw;
  }
}
.table__row:nth-of-type(even) {
  background: transparent;
}
.table__cell {
  color: var(--gray-dark);
  padding: 0.4166666667vw 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .table__cell {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .table__cell {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .table__cell {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .table__cell {
    padding: 0.5856515373vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .table__cell {
    padding: 0;
  }
}
.table__cell--header {
  color: var(--gray-medium);
  text-align: left;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .table__cell--header {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .table__cell--header {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .table__cell--header {
    font-size: 3.4666666667vw;
  }
}
.menu-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .menu-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal {
    border-radius: 0vw;
  }
}
.menu-modal::-webkit-scrollbar {
  display: none;
}
.menu-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .menu-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
    transform: translate(100%, 0) translateZ(0) !important;
  }
}
@media screen and (width <= 481px) {
  .menu-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal.active {
    transform: translate(0) translateZ(0) !important;
  }
}
.menu-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__container {
    gap: 0;
  }
}
.menu-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.menu-modal__top {
  display: flex;
  flex-direction: column;
  max-width: 22.8125vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .menu-modal__top {
    max-width: 31.9180087848vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__top {
    max-width: unset;
    margin-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__top {
    margin-top: 1.0666666667vw;
  }
}
.menu-modal__title {
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .menu-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__title {
    font-size: 5.3333333333vw;
  }
}
.menu-modal__desc {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .menu-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__desc {
    font-size: 4.2666666667vw;
  }
}
.menu-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  max-height: 50dvh;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__body {
    margin-top: 1.5625vw;
    padding-top: 1.0416666667vw;
    padding-bottom: 8.3333333333vw;
    border-top: solid var(--gray-lighter);
    max-height: unset;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .menu-modal__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .menu-modal__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .menu-modal__body {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .menu-modal__body {
    margin-top: 3.2vw;
    padding-top: 2.1333333333vw;
    padding-bottom: 17.0666666667vw;
  }
}
.menu-modal__body-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__body-wrap {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__body-wrap {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__body-wrap {
    gap: 2.1333333333vw;
  }
}
.menu-modal__button {
  justify-content: flex-start !important;
  width: 100% !important;
}
.menu-modal__button-catalog {
  grid-area: catalog;
  width: 100% !important;
}
.menu-modal__button-compare {
  grid-area: compare;
}
.menu-modal__button-callback {
  grid-area: callback;
  width: 100% !important;
}
.menu-modal__separator {
  grid-area: separator;
}
.menu-modal__actions {
  display: flex;
  flex-direction: column;
}
.menu-modal__actions-buttons {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "catalog compare" "separator separator" "callback callback";
  gap: 0.625vw 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__actions-buttons {
    gap: 0.878477306vw 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__actions-buttons {
    gap: 1.5625vw 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__actions-buttons {
    gap: 3.2vw 2.1333333333vw;
  }
}
.menu-modal__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.0416666667vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__info {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__info {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__info {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .menu-modal__info {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__info {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__info {
    margin-top: 5.3333333333vw;
  }
}
.menu-modal__socials {
  justify-content: center;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .menu-modal__socials {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .menu-modal__socials {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .menu-modal__socials {
    margin-top: 2.1333333333vw;
  }
}
.collapsible {
  width: 100%;
  display: grid;
  grid-template-rows: min-content 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.collapsible.active {
  grid-template-rows: min-content 1fr;
}
.collapsible.active .tab-image__icon-right {
  transform: rotateX(180deg);
}
.collapsible__trigger {
  width: 100% !important;
}
.collapsible__trigger .tab-image__text-wrap {
  margin-right: auto;
}
.collapsible__trigger.active {
  cursor: pointer !important;
  background: var(--gray-lighter) !important;
  color: var(--color1-main) !important;
}
.collapsible__menu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .collapsible__menu {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .collapsible__menu {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .collapsible__menu {
    gap: 2.1333333333vw;
  }
}
.collapsible__option:first-of-type {
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .collapsible__option:first-of-type {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .collapsible__option:first-of-type {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .collapsible__option:first-of-type {
    margin-top: 2.1333333333vw;
  }
}
.collapsible__link {
  width: 100% !important;
}
.collapsible__link .tab-image__text-wrap {
  margin-right: auto;
}
.collapsible__show-all {
  width: 100% !important;
}
.socials-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .socials-container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .socials-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .socials-container {
    gap: 2.1333333333vw;
  }
}
.btn-social {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  position: relative;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn-social {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .btn-social {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .btn-social {
    border-width: max(0.5333333333vw, 2px);
  }
}
.btn-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-social__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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-inline: 0.7291666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size--l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--l {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size--l {
    height: 4.0995607613vw;
    padding-inline: 1.0248901903vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--l {
    height: 7.2916666667vw;
    padding-inline: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--l {
    height: 14.9333333333vw;
    padding-inline: 3.7333333333vw;
  }
}
.btn-social-size--m {
  height: 2.5vw;
  padding-inline: 0.5208333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size--m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--m {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size--m {
    height: 3.513909224vw;
    padding-inline: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--m {
    height: 6.25vw;
    padding-inline: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--m {
    height: 12.8vw;
    padding-inline: 2.6666666667vw;
  }
}
.btn-social-size--s {
  height: 2.0833333333vw;
  padding-inline: 0.3125vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size--s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--s {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size--s {
    height: 2.9282576867vw;
    padding-inline: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--s {
    height: 5.2083333333vw;
    padding-inline: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--s {
    height: 10.6666666667vw;
    padding-inline: 1.6vw;
  }
}
.btn-social-size--xs {
  height: 1.6666666667vw;
  padding-inline: 0.3125vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size--xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--xs {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size--xs {
    height: 2.3426061493vw;
    padding-inline: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--xs {
    height: 4.1666666667vw;
    padding-inline: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--xs {
    height: 8.5333333333vw;
    padding-inline: 1.6vw;
  }
}
.btn-social-size--xs svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size--xs svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size--xs svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size--xs svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-social-theme--light {
  background: var(--gray-lighter);
  border-color: transparent;
}
.btn-social-theme--light .btn-social__icon {
  color: var(--color1-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-theme--light:hover {
    background: var(--color1-lighter);
  }
  .btn-social-theme--light:hover .btn-social__icon {
    color: var(--color1-main);
  }
}
.btn-social-theme--light:active {
  background: var(--color1-light);
}
.btn-social-theme--light:active .btn-social__icon {
  color: var(--color1-dark);
}
.btn-social-theme--dark {
  background: var(--gray-dark);
  border-color: transparent;
}
.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-medium);
  }
}
.btn-social-theme--dark:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
}
.success-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 0.625vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .success-modal {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal {
    border-radius: 0vw;
  }
}
.success-modal::-webkit-scrollbar {
  display: none;
}
.success-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .success-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.success-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .success-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__container {
    gap: 5.3333333333vw;
  }
}
.success-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.success-modal__top {
  display: flex;
  flex-direction: row;
  max-width: 22.8125vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .success-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .success-modal__top {
    max-width: 31.9180087848vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__top {
    flex-direction: column;
    max-width: unset;
    padding-top: 2.6041666667vw;
    margin-top: 7.5520833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .success-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .success-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .success-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .success-modal__top {
    padding-top: 5.3333333333vw;
    margin-top: 15.4666666667vw;
  }
}
.success-modal__icon {
  flex-shrink: 0;
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .success-modal__icon {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__icon {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__icon {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.success-modal__text {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .success-modal__text {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__text {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__text {
    gap: 3.2vw;
  }
}
.success-modal__title {
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .success-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__title {
    font-size: 5.3333333333vw;
  }
}
.success-modal__desc {
  max-width: 31ch;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .success-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__desc {
    font-size: 4.2666666667vw;
  }
}
.success-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  align-items: flex-end;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .success-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .success-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .success-modal__body {
    border-radius: 1.0666666667vw;
  }
}
.error-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 0.625vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .error-modal {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal {
    border-radius: 0vw;
  }
}
.error-modal::-webkit-scrollbar {
  display: none;
}
.error-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .error-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.error-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .error-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__container {
    gap: 5.3333333333vw;
  }
}
.error-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.error-modal__top {
  display: flex;
  flex-direction: row;
  max-width: 22.8125vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .error-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .error-modal__top {
    max-width: 31.9180087848vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__top {
    flex-direction: column;
    max-width: unset;
    padding-top: 2.6041666667vw;
    margin-top: 7.5520833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .error-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .error-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .error-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .error-modal__top {
    padding-top: 5.3333333333vw;
    margin-top: 15.4666666667vw;
  }
}
.error-modal__icon {
  flex-shrink: 0;
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .error-modal__icon {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__icon {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__icon {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.error-modal__text {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .error-modal__text {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__text {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__text {
    gap: 3.2vw;
  }
}
.error-modal__title {
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .error-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__title {
    font-size: 5.3333333333vw;
  }
}
.error-modal__desc {
  max-width: 31ch;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .error-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__desc {
    font-size: 4.2666666667vw;
  }
}
.error-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  align-items: flex-end;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .error-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .error-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .error-modal__body {
    border-radius: 1.0666666667vw;
  }
}
.search-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .search-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal {
    border-radius: 0vw;
  }
}
.search-modal::-webkit-scrollbar {
  display: none;
}
.search-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .search-modal {
    max-width: 36.6032210835vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
    transform: translate(100%, 0) translateZ(0) !important;
  }
}
@media screen and (width <= 481px) {
  .search-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal.active {
    transform: translate(0) translateZ(0) !important;
  }
}
.search-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .search-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__container {
    gap: 0;
    padding-bottom: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__container {
    padding-bottom: 17.0666666667vw;
  }
}
.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 <= 1401px) {
  .search-modal__top {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__top {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__top {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .search-modal__top {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .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: 600;
  line-height: 110%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .search-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 811px) {
  .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-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .search-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  border-radius: 0.2083333333vw;
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .search-modal__body {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__body {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body {
    margin-top: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__body {
    padding-top: 1.5625vw;
    border-top: solid var(--gray-lighter);
    max-height: unset;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .search-modal__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .search-modal__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .search-modal__body {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .search-modal__body {
    padding-top: 3.2vw;
  }
}
.search-modal__body-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-modal__body-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__body-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__body-wrap {
    gap: 3.2vw;
  }
}
.search-modal__info-text {
  color: var(--gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .search-modal__info-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__info-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__info-text {
    font-size: 4.2666666667vw;
  }
}
.search-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .search-modal__list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list {
    gap: 1.0666666667vw;
  }
}
.search-modal__list-title {
  color: var(--gray-medium);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .search-modal__list-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__list-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-title {
    font-size: 4.2666666667vw;
  }
}
.search-modal__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-modal__list-wrap {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__list-wrap {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-wrap {
    gap: 3.2vw;
  }
}
.search-modal__list-wrap:not(:first-of-type) {
  border-top: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
  padding-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-modal__list-wrap:not(:first-of-type) {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .search-modal__list-wrap:not(:first-of-type) {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-wrap:not(:first-of-type) {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .search-modal__list-wrap:not(:first-of-type) {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-modal__list-wrap:not(:first-of-type) {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-modal__list-wrap:not(:first-of-type) {
    padding-top: 3.2vw;
  }
}
.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 <= 1401px) {
  .search-modal__actions {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .search-modal__actions-buttons {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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: row;
  overflow: hidden;
  background: var(--gray-white);
  width: 100%;
  padding: 0.2083333333vw;
  border-radius: 0.625vw;
  gap: 0.625vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .search-card {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-card {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card {
    padding: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .search-card {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-card {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-card {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .search-card {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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__title {
    color: var(--color1-main);
  }
}
.search-card:active {
  background: var(--gray-lighter);
}
.search-card:active .search-card__title {
  color: var(--color1-dark);
}
.search-card.is-focused {
  outline: solid var(--color1-main);
}
.search-card__link {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 2;
}
.search-card__image {
  overflow: hidden;
  background: var(--gray-lighter);
  flex-shrink: 0;
  width: 3.75vw;
  height: 2.5vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-card__image {
    width: 5.270863836vw;
  }
}
@media screen and (width <= 811px) {
  .search-card__image {
    width: 9.375vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__image {
    width: 19.2vw;
  }
}
@media screen and (width <= 1401px) {
  .search-card__image {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .search-card__image {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__image {
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .search-card__image {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-card__image {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__image {
    border-radius: 2.1333333333vw;
  }
}
.search-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-card__title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .search-card__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__title {
    font-size: 4.2666666667vw;
  }
}
@supports (-webkit-line-clamp: 2) {
  .search-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.search-card__desc {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
}
@media screen and (width <= 1401px) {
  .search-card__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .search-card__desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .search-card__desc {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 2) {
  .search-card__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.toast-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  right: 0.4166666667vw;
  left: 0.4166666667vw;
  bottom: 0.4166666667vw;
  z-index: 1300;
  transform: translateZ(0);
  backface-visibility: hidden;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .toast-container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .toast-container {
    right: 0.5856515373vw;
    left: 0.5856515373vw;
    bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast-container {
    right: 1.0416666667vw;
    left: 1.0416666667vw;
    bottom: 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    right: 2.1333333333vw;
    left: 2.1333333333vw;
    bottom: 18.6666666667vw;
  }
}
.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) translateZ(0);
  transform-origin: bottom center;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  touch-action: pan-y;
  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);
  border-radius: 0.4166666667vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .toast {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .toast {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .toast {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .toast {
    max-width: 26.2079062958vw;
    padding: 0.5856515373vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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) translateZ(0);
}
.toast.hide {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(100%) scale(0.8) translateZ(0);
}
.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 <= 1401px) {
  .toast__content {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .toast__content {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast__content {
    gap: 3.2vw;
  }
}
.toast__message {
  cursor: default;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .toast__message {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .toast__close svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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-main);
  text-decoration: underline;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .toast__link {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .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-light);
  }
}
.toast__link:active {
  color: var(--color1-dark);
}
.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 <= 1401px) {
  .toast__progress {
    height: 0.2196193265vw;
  }
}
@media screen and (width <= 811px) {
  .toast__progress {
    height: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .toast__progress {
    height: 0.8vw;
  }
}
.not-found-modal {
  width: 100%;
  max-width: 29.1666666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 1.4583333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .not-found-modal {
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal {
    padding: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal {
    padding: 8.5333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal {
    border-radius: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal {
    border-radius: 0vw;
  }
}
.not-found-modal::-webkit-scrollbar {
  display: none;
}
.not-found-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .not-found-modal {
    max-width: 36.6032210835vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal {
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.not-found-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__container {
    gap: 5.3333333333vw;
  }
}
.not-found-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.not-found-modal__top {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__top {
    padding-top: 1.0416666667vw;
    margin-top: 3.0208333333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .not-found-modal__top {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .not-found-modal__top {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .not-found-modal__top {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .not-found-modal__top {
    margin-top: 4.2459736457vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .not-found-modal__top {
    margin-top: 7.5520833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .not-found-modal__top {
    margin-top: 15.4666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .not-found-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .not-found-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .not-found-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
.not-found-modal__head {
  display: flex;
  flex-direction: row;
  gap: 1.0416666667vw;
  align-items: flex-start;
}
@media screen and (width <= 1401px) {
  .not-found-modal__head {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head {
    gap: 5.3333333333vw;
  }
}
.not-found-modal__head--image {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border-radius: 0.625vw;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (width <= 1401px) {
  .not-found-modal__head--image {
    width: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head--image {
    width: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head--image {
    width: 16vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__head--image {
    height: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head--image {
    height: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head--image {
    height: 16vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__head--image {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head--image {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head--image {
    border-radius: 3.2vw;
  }
}
.not-found-modal__head_rs {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  align-items: flex-start;
  max-width: 17.0833333333vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__head_rs {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head_rs {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head_rs {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__head_rs {
    max-width: 24.0117130307vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head_rs {
    max-width: 42.7083333333vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__head_rs {
    max-width: 87.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__head_rs {
    max-width: unset;
  }
}
.not-found-modal__title {
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .not-found-modal__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__title {
    font-size: 5.3333333333vw;
  }
}
.not-found-modal__subtitle {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-dark);
}
@media screen and (width <= 1401px) {
  .not-found-modal__subtitle {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__subtitle {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__subtitle {
    font-size: 4.2666666667vw;
  }
}
.not-found-modal__contacts {
  display: flex;
  flex-direction: column;
  border-bottom: solid var(--gray-lighter);
  gap: 0.4166666667vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 1.0416666667vw;
  margin-bottom: 0.4166666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .not-found-modal__contacts {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__contacts {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__contacts {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__contacts {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__contacts {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__contacts {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__contacts {
    padding-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__contacts {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__contacts {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__contacts {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__contacts {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__contacts {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__contacts {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__contacts {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__contacts {
    border-width: max(0.5333333333vw, 2px);
  }
}
.not-found-modal__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__social {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social {
    gap: 2.1333333333vw;
  }
}
.not-found-modal__social--tg svg {
  color: var(--socials-tg);
}
.not-found-modal__social--wt svg {
  color: var(--socials-wt);
}
.not-found-modal__social--max {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4166666667vw;
  width: 100%;
  padding-block: 0.625vw;
  padding-inline: 1.0416666667vw;
  background: var(--gray-lighter);
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
  justify-content: center;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  height: 2.5vw;
  max-height: 2.5vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    padding-block: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    padding-block: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    padding-block: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .not-found-modal__social--max {
    max-height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__social--max {
    max-height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__social--max {
    max-height: 12.8vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .not-found-modal__social--max:hover {
    background: var(--color1-lighter);
  }
}
.not-found-modal__social--max:active {
  background: var(--color1-light);
}
.not-found-modal__desc {
  color: var(--gray-dark);
  max-width: 39ch;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .not-found-modal__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__desc {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__desc {
    max-width: unset;
  }
}
.not-found-modal__body {
  display: flex;
  overflow: hidden auto;
  flex: 1 1 auto;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .not-found-modal__body {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__body {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .not-found-modal__body {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) {
  .not-found-modal__body {
    padding-bottom: 6.7708333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .not-found-modal__body {
    padding-bottom: 11.7130307467vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .not-found-modal__body {
    padding-bottom: 16.9270833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .not-found-modal__body {
    padding-bottom: 34.6666666667vw;
  }
}
.tap-bar {
  position: fixed;
  display: none;
  bottom: 0.4166666667vw;
  z-index: 1100;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: calc(100% - 2 * 0.625vw);
}
@media screen and (width <= 1401px) {
  .tap-bar {
    bottom: 0.5856515373vw;
    max-width: calc(100% - 2 * 0.878477306vw);
  }
}
@media screen and (width <= 811px) {
  .tap-bar {
    display: flex;
    bottom: 1.0416666667vw;
    max-width: calc(100% - 2 * 1.5625vw);
  }
}
@media screen and (width <= 481px) {
  .tap-bar {
    bottom: 2.1333333333vw;
    right: 3.2vw;
    left: 3.2vw;
    margin-left: 0;
    margin-right: 0;
    width: unset;
    max-width: unset;
  }
}
.tap-bar--product {
  display: flex;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.tap-bar--product.show {
  animation: slideUp 0.5s ease forwards;
}
.tap-bar--product .tap-bar__container {
  background: var(--gray-darker);
}
.tap-bar--product .dropdown-tab {
  margin-top: -0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab {
    margin-top: -0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab {
    margin-top: -1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab {
    margin-top: -2.1333333333vw;
  }
}
.tap-bar--product .dropdown-tab__trigger {
  margin-top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab__trigger {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab__trigger {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab__trigger {
    margin-top: 2.1333333333vw;
  }
}
.tap-bar--product .dropdown-tab__menu {
  gap: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab__menu {
    gap: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab__menu {
    gap: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab__menu {
    gap: 2.6666666667vw;
  }
}
.tap-bar--product .dropdown-tab__menu:before, .tap-bar--product .dropdown-tab__menu:after {
  content: unset;
}
.tap-bar--product .dropdown-tab__option {
  position: relative;
}
.tap-bar--product .dropdown-tab__option .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab__option .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab__option .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab__option .tab__text {
    font-size: 3.4666666667vw;
  }
}
.tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  background: var(--gray-lighter);
  top: -0.3125vw;
  height: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    top: -0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    top: -0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    top: -1.6vw;
  }
}
@media screen and (width <= 1401px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    height: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    height: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar--product .dropdown-tab__option + .dropdown-tab__option:before {
    height: 0.5333333333vw;
  }
}
.tap-bar__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: var(--gray-white);
  box-shadow: var(--shadow-medium);
  padding: 0.4166666667vw;
  gap: 0.4166666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tap-bar__container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar__container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar__container {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tap-bar__container {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar__container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar__container {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tap-bar__container {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tap-bar__container {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tap-bar__container {
    padding: 2.1333333333vw;
  }
}
.tap-bar__button {
  width: 100% !important;
}
.tap-bar__button .btn__text {
  white-space: nowrap;
}
@media screen and (width <= 481px) {
  .tap-bar__button--catalog {
    flex: 1;
  }
}
.tap-bar__button--prod-catalog {
  display: none !important;
}
@media screen and (width <= 811px) {
  .tap-bar__button--prod-catalog {
    display: inline-flex !important;
  }
}
@media screen and (width <= 481px) {
  .tap-bar__button--prod-catalog {
    flex: 1;
  }
}
@media screen and (width <= 481px) {
  .tap-bar__button--feedback {
    flex: 1;
  }
}
@media screen and (width <= 811px) {
  .tap-bar__button--anchor {
    display: none;
  }
}
.tap-bar__button--anchor .dropdown-tab__menu {
  top: unset;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) scale(0.95);
}
@media (hover: hover) and (pointer: fine) {
  .tap-bar__button--anchor:hover .dropdown-tab__menu {
    transform: translateX(-50%) scale(1);
  }
}
.button-scroll {
  position: fixed;
  bottom: 4.6875vw;
  right: 4.375vw;
  height: 2.5vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-dark);
  color: var(--gray-white);
  padding-inline-start: 1.0416666667vw;
  padding-inline-end: 0.8333333333vw;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 98;
  transform: translateY(150%);
  transition: transform 0.4s var(--ease-spring), opacity 0.4s var(--cubic-bezier), background 0.2s var(--cubic-bezier), scale 0.2s var(--cubic-bezier);
  touch-action: manipulation;
  gap: 0.4166666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .button-scroll {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .button-scroll {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .button-scroll {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .button-scroll {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .button-scroll {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .button-scroll {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .button-scroll {
    bottom: 6.588579795vw;
    right: 0.878477306vw;
    height: 3.513909224vw;
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .button-scroll {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-scroll:hover {
    background: var(--gray-darker);
  }
}
.button-scroll:active {
  background: var(--gray-black);
  scale: 0.95;
}
.button-scroll.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  user-select: auto;
}
.button-scroll__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .button-scroll__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .button-scroll__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .button-scroll__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .button-scroll__text {
    display: none;
  }
}
.button-scroll__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .button-scroll__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .button-scroll__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .button-scroll__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.socials-sticky {
  position: fixed;
  top: 6.9791666667vw;
  right: 0.625vw;
  padding: 0.4166666667vw;
  background: var(--gray-light);
  z-index: 95;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .socials-sticky {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .socials-sticky {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .socials-sticky {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .socials-sticky {
    top: 10.3953147877vw;
    right: 0.5856515373vw;
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .socials-sticky {
    display: none;
  }
}
.socials-sticky__container {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 0.4166666667vw !important;
}
@media screen and (width <= 1401px) {
  .socials-sticky__container {
    gap: 0.2928257687vw !important;
  }
}
@media screen and (width <= 1401px) {
  .socials-sticky .btn-social {
    height: 2.3426061493vw;
    padding-inline: 0.439238653vw;
  }
}
@media screen and (width <= 1401px) {
  .socials-sticky .btn-social svg {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .socials-sticky .btn-social svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .socials-sticky .btn-social svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .socials-sticky .btn-social svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.cookie-modal {
  width: 100%;
  max-width: 100dvw;
  position: fixed !important;
  margin: 0;
  bottom: 0;
  top: auto;
  background: var(--gray-lighter);
  z-index: 1200;
  transform: translateY(100%) translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint;
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.cookie-modal.active {
  transform: translateY(0) translateZ(0);
  user-select: auto;
  pointer-events: auto;
}
.cookie-modal__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4166666667vw;
  padding: 0.625vw 0 0.8333333333vw 0;
  padding-right: 6.25vw;
  border-top: solid var(--gray-light);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .cookie-modal__container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .cookie-modal__container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .cookie-modal__container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .cookie-modal__container {
    gap: 0.5856515373vw;
    padding: 0.878477306vw 0 1.1713030747vw 0;
    padding-right: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .cookie-modal__container {
    display: grid;
    gap: 1.5625vw;
    padding: 1.5625vw 0 2.0833333333vw 0;
  }
}
@media screen and (width <= 481px) {
  .cookie-modal__container {
    gap: 3.2vw;
    padding: 3.2vw 0 4.2666666667vw 0;
  }
}
.cookie-modal__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 <= 1401px) {
  .cookie-modal__description {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .cookie-modal__description {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .cookie-modal__description {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .cookie-modal__description {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .cookie-modal__description {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .cookie-modal__description {
    gap: 1.0666666667vw;
  }
}
.cookie-modal__title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .cookie-modal__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .cookie-modal__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cookie-modal__title {
    font-size: 4.2666666667vw;
  }
}
.cookie-modal__submit {
  width: max-content;
}
@media screen and (width <= 481px) {
  .cookie-modal__submit {
    width: 100%;
  }
}
.cookie-modal__submit:focus-visible {
  outline: none;
}
.case-modal {
  width: 100%;
  max-width: 44.7916666667vw;
  padding: 1.6666666667vw;
  height: auto;
  max-height: 100dvh;
  border-radius: 2.0833333333vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (width <= 1401px) {
  .case-modal {
    border-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal {
    border-radius: 0vw;
  }
}
.case-modal::-webkit-scrollbar {
  display: none;
}
.case-modal::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  .case-modal {
    max-width: 58.5651537335vw;
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal {
    max-width: 100%;
    height: 100%;
    padding: 1.0416666667vw 1.5625vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal {
    height: 100%;
    padding: 2.1333333333vw 3.2vw 3.2vw;
  }
}
.case-modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .case-modal__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__container {
    gap: 0vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__container {
    gap: 0vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__container {
    overflow: scroll;
  }
}
.case-modal__wrap {
  display: flex;
  height: max-content;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .case-modal__wrap {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__wrap {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__wrap {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__wrap {
    display: grid;
    grid-template-columns: 1fr;
    overflow: scroll;
    grid-template-areas: "title" "video" "desc" "badges" "buttons";
  }
}
.case-modal__button-close {
  position: absolute;
  top: 0;
  right: 0;
}
.case-modal__top {
  display: none;
}
@media screen and (width <= 811px) {
  .case-modal__top {
    display: flex;
    flex-direction: column;
    gap: 0.625vw;
    padding-top: 2.6041666667vw;
    margin-top: 7.5520833333vw;
    border-top: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .case-modal__top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .case-modal__top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .case-modal__top {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .case-modal__top {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .case-modal__top {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .case-modal__top {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .case-modal__top {
    padding-top: 5.3333333333vw;
    margin-top: 15.4666666667vw;
  }
}
.case-modal__video-player, .case-modal .video-player {
  width: 17.7083333333vw;
  height: 31.4583333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .case-modal__video-player, .case-modal .video-player {
    width: 24.8901903367vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__video-player, .case-modal .video-player {
    width: 44.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__video-player, .case-modal .video-player {
    width: 90.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .case-modal__video-player, .case-modal .video-player {
    height: 44.2166910688vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__video-player, .case-modal .video-player {
    height: 80.9895833333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__video-player, .case-modal .video-player {
    height: 165.8666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .case-modal__video-player, .case-modal .video-player {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__video-player, .case-modal .video-player {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__video-player, .case-modal .video-player {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__video-player, .case-modal .video-player {
    width: 100%;
    grid-area: video;
  }
}
.case-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22.7083333333vw;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .case-modal__content {
    width: 31.9180087848vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content {
    width: 56.7708333333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content {
    width: 116.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .case-modal__content {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content {
    width: 100%;
  }
}
.case-modal__content-info {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .case-modal__content-info {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-info {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content-info {
    gap: 5.3333333333vw;
  }
}
.case-modal__content-title {
  max-width: 19.1666666667vw;
  color: var(--gray-darker);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .case-modal__content-title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content-title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .case-modal__content-title {
    max-width: 26.9399707174vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-title {
    max-width: unset;
    grid-area: title;
  }
}
.case-modal__content-desc {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .case-modal__content-desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content-desc {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-desc {
    grid-area: desc;
  }
}
.case-modal__content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .case-modal__content-badges {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-badges {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__content-badges {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__content-badges {
    grid-area: badges;
  }
}
.case-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .case-modal__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .case-modal__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .case-modal__buttons {
    gap: 3.2vw;
  }
}
.case-modal__buttons-container {
  width: 100%;
}
.case-modal__button-about, .case-modal__button-order {
  width: 100%;
}
.video-player {
  width: 100%;
  height: 26.0416666667vw;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .video-player {
    height: 36.6032210835vw;
  }
}
@media screen and (width <= 811px) {
  .video-player {
    height: 65.1041666667vw;
  }
}
@media screen and (width <= 481px) {
  .video-player {
    height: 133.3333333333vw;
  }
}
.video-player__container {
  position: relative;
  background: var(---gray-lighter);
  width: 100%;
  height: 100%;
}
.video-player__content {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  user-select: none;
}
.video-player_native {
  z-index: 1;
}
.video-player__play-button {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20%;
  touch-action: manipulation;
}
@media (hover: hover) and (pointer: fine) {
  .video-player__play-button:hover .video-player__play-button-container {
    transform: scale(1.1);
  }
}
.video-player__play-button:active .video-player__play-button-container {
  transform: scale(0.95);
}
.video-player__play-button-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: transform 0.5s var(--ease-spring);
  width: 2.9166666667vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .video-player__play-button-container {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .video-player__play-button-container {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .video-player__play-button-container {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.video-player__play-button-container svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .video-player__play-button-container svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .video-player__play-button-container svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .video-player__play-button-container svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.badge {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
}
.badge__icon {
  flex-shrink: 0;
  transition: color 0.2s 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.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.badge-size_xl {
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .badge-size_xl {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_xl {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .badge-size_xl {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_xl {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xl {
    font-size: 4.2666666667vw;
  }
}
.badge-size_l {
  border-radius: 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .badge-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .badge-size_l {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_l {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_l {
    font-size: 3.4666666667vw;
  }
}
.badge-size_m {
  border-radius: 0.4166666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .badge-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .badge-size_m {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_m {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_m {
    font-size: 3.4666666667vw;
  }
}
.badge-size_s {
  border-radius: 0.625vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .badge-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .badge-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_s {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_s {
    font-size: 2.9333333333vw;
  }
}
.badge-size_xs {
  border-radius: 0.625vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .badge-size_xs {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .badge-size_xs {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .badge-size_xs {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .badge-size_xs {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .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);
  border: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .badge-white {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .badge-white {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .badge-white {
    border-width: max(0.5333333333vw, 2px);
  }
}
.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 <= 1401px) {
  .badge-size_xl {
    height: 3.513909224vw;
    padding: 0 1.4641288433vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_xl:has(.badge__icon) {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_xl .badge__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_l {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_l:has(.badge__icon) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_l .badge__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_m {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_m:has(.badge__icon) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_m .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_s {
    height: 1.756954612vw;
    padding: 0 0.5856515373vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_s:has(.badge__icon) {
    padding-left: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_s .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_xs {
    height: 1.1713030747vw;
    padding: 0 0.2928257687vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_xs:has(.badge__icon) {
    padding-left: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) {
  .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 <= 1401px) {
  .badge-size_xs .badge__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .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;
  }
}
.bread-crumbs {
  margin-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .bread-crumbs {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs {
    display: none;
  }
}
.bread-crumbs__list {
  display: flex;
  align-items: center;
}
.bread-crumbs__item {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .bread-crumbs__item {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__item {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__item {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .bread-crumbs__item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__item {
    font-size: 3.4666666667vw;
  }
}
.bread-crumbs__item--home {
  margin-right: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .bread-crumbs__item--home {
    margin-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__item--home {
    margin-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__item--home {
    margin-right: 2.1333333333vw;
  }
}
.bread-crumbs__separator {
  color: var(--gray-medium);
  margin-inline: 0.2083333333vw;
  padding-inline: 0.2083333333vw;
  user-select: none;
  pointer-events: none;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .bread-crumbs__separator {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__separator {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__separator {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .bread-crumbs__separator {
    margin-inline: 0.2928257687vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__separator {
    margin-inline: 0.5208333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__separator {
    margin-inline: 1.0666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.bread-crumbs__button-home {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .bread-crumbs__button-home {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__button-home {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__button-home {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.bread-crumbs__item-title {
  color: var(--gray-darker);
}
.bread-crumbs__item-link {
  display: flex;
  align-items: center;
  color: var(--gray-dark);
  padding-block: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .bread-crumbs__item-link {
    padding-block: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs__item-link {
    padding-block: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs__item-link {
    padding-block: 1.0666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bread-crumbs__item-link:hover {
    color: var(--color1-main);
  }
}
.bread-crumbs__item-link:active {
  color: var(--color1-darker);
}
.bread-crumbs--minimal .bread-crumbs__item:nth-child(3) .bread-crumbs__item-link, .bread-crumbs--minimal .bread-crumbs__item:nth-child(4) .bread-crumbs__item-link {
  max-width: 10.4166666667vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: wrap;
}
@media screen and (width <= 1401px) {
  .bread-crumbs--minimal .bread-crumbs__item:nth-child(3) .bread-crumbs__item-link, .bread-crumbs--minimal .bread-crumbs__item:nth-child(4) .bread-crumbs__item-link {
    max-width: 14.6412884334vw;
  }
}
@media screen and (width <= 811px) {
  .bread-crumbs--minimal .bread-crumbs__item:nth-child(3) .bread-crumbs__item-link, .bread-crumbs--minimal .bread-crumbs__item:nth-child(4) .bread-crumbs__item-link {
    max-width: 26.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .bread-crumbs--minimal .bread-crumbs__item:nth-child(3) .bread-crumbs__item-link, .bread-crumbs--minimal .bread-crumbs__item:nth-child(4) .bread-crumbs__item-link {
    max-width: 53.3333333333vw;
  }
}
.product-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 1.0416666667vw 0;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-heading {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-heading {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-heading {
    padding: 1.4641288433vw 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading {
    display: none;
  }
}
.product-heading__title {
  color: var(--gray-black);
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-heading__title {
    font-size: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-heading__title {
    font-size: 6.4vw;
  }
}
.product-heading__actions {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-heading__actions {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading__actions {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-heading__actions {
    gap: 2.1333333333vw;
  }
}
.product-heading__button-compare {
  color: var(--gray-darker);
}
.product-heading__button-compare .compare-button__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-heading__button-compare .compare-button__text {
    font-size: 3.4666666667vw;
  }
}
.compare-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  background: var(--gray-lighter);
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-radius: 0.4166666667vw;
  gap: 0.2083333333vw;
  /*----------STYLES-----------*/
}
@media screen and (width <= 1401px) {
  .compare-button {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .compare-button {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button {
    gap: 1.0666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .compare-button:hover {
    background: var(--color1-lighter);
  }
}
.compare-button:active {
  color: var(--color1-main);
  background: var(--gray-white);
}
.compare-button:disabled {
  cursor: not-allowed !important;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.compare-button.active {
  color: var(--color1-main);
  background: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .compare-button.active:hover {
    color: var(--color1-dark);
  }
}
.compare-button.active:active {
  color: var(--color1-darker);
  background: var(--color1-lighter);
}
.compare-button.active:disabled {
  cursor: not-allowed !important;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.compare-button.loading .compare-button__loader {
  opacity: 1;
}
.compare-button.loading .compare-button__icon {
  opacity: 0;
}
.compare-button.loading .compare-button__text {
  opacity: 0;
}
.compare-button__icon {
  flex-shrink: 0;
}
.compare-button__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .compare-button__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button__text {
    font-size: 3.4666666667vw;
  }
}
.compare-button__loader {
  position: absolute;
  opacity: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .compare-button__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button__loader {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .compare-button__loader {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .compare-button__loader {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .compare-button__loader {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.compare-button__tooltip {
  position: absolute !important;
  inset: 0;
  height: 100%;
  width: 100% !important;
}
.compare-button__tooltip .tooltip__content {
  white-space: nowrap !important;
}
.compare-button--minimal {
  height: 2.0833333333vw;
  width: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .compare-button--minimal {
    height: 2.9282576867vw;
    width: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button--minimal {
    height: 4.1666666667vw;
    width: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button--minimal {
    height: 8.5333333333vw;
    width: 8.5333333333vw;
  }
}
.compare-button--minimal .compare-button__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .compare-button--minimal .compare-button__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button--minimal .compare-button__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button--minimal .compare-button__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.compare-button--minimal .compare-button__text {
  display: none;
}
.compare-button--full {
  padding-inline: 0.625vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .compare-button--full {
    height: 2.3426061493vw;
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button--full {
    height: 3.125vw;
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button--full {
    height: 6.4vw;
    padding-inline: 2.1333333333vw;
  }
}
.compare-button--full .compare-button__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .compare-button--full .compare-button__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button--full .compare-button__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .compare-button--full .compare-button__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .compare-button--full .compare-button__text {
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .compare-button--full .compare-button__text {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .compare-button--full .compare-button__text {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .compare-button--full .compare-button__text {
    font-size: 2.9333333333vw;
  }
}
.tooltip {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: fit-content;
  color: var(--gray-medium);
  --tooltip-spacing: 8px;
  --tooltip-arrow-size: 8px;
  --tooltip-arrow-offset: 4px;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .tooltip {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip {
    gap: 1.0666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tooltip:hover {
    color: var(--gray-black);
  }
}
.tooltip:active {
  color: var(--gray-black);
}
.tooltip__trigger-icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tooltip__trigger-icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__trigger-icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__trigger-icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.tooltip__trigger-text {
  text-decoration: solid underline;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .tooltip__trigger-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__trigger-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__trigger-text {
    font-size: 4.2666666667vw;
  }
}
.tooltip__content {
  position: absolute;
  background: var(--gray-black);
  color: var(--gray-white);
  padding: 0.625vw 0.8333333333vw;
  white-space: normal;
  max-width: 80vw;
  pointer-events: none;
  opacity: 0;
  z-index: 1200;
  box-shadow: var(--shadow-near);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  border-radius: 0.625vw;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .tooltip__content {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__content {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__content {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tooltip__content {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__content {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__content {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tooltip__content {
    padding: 0.878477306vw 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__content {
    padding: 1.5625vw 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__content {
    padding: 3.2vw 4.2666666667vw;
  }
}
.tooltip__content.visible {
  opacity: 1;
}
.tooltip__content::before {
  content: "";
  position: absolute;
  background: inherit;
  width: var(--tooltip-arrow-size);
  height: var(--tooltip-arrow-size);
  transform: rotate(45deg);
  border-radius: 0.0520833333vw;
}
@media screen and (width <= 1401px) {
  .tooltip__content::before {
    border-radius: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) {
  .tooltip__content::before {
    border-radius: 0.1302083333vw;
  }
}
@media screen and (width <= 481px) {
  .tooltip__content::before {
    border-radius: 0.2666666667vw;
  }
}
.tooltip__content[data-position="top"] {
  bottom: calc(100% + var(--tooltip-spacing));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.tooltip__content[data-position="top"].visible {
  transform: translateX(-50%) translateY(0);
}
.tooltip__content[data-position="top"]::before {
  bottom: calc(-1 * var(--tooltip-arrow-offset));
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip__content[data-position="bottom"] {
  top: calc(100% + var(--tooltip-spacing));
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}
.tooltip__content[data-position="bottom"].visible {
  transform: translateX(-50%) translateY(0);
}
.tooltip__content[data-position="bottom"]::before {
  top: calc(-1 * var(--tooltip-arrow-offset));
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip__content[data-position="left"] {
  right: calc(100% + var(--tooltip-spacing));
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}
.tooltip__content[data-position="left"].visible {
  transform: translateY(-50%) translateX(0);
}
.tooltip__content[data-position="left"]::before {
  right: calc(-1 * var(--tooltip-arrow-offset));
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.tooltip__content[data-position="right"] {
  left: calc(100% + var(--tooltip-spacing));
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
}
.tooltip__content[data-position="right"].visible {
  transform: translateY(-50%) translateX(0);
}
.tooltip__content[data-position="right"]::before {
  left: calc(-1 * var(--tooltip-arrow-offset));
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.product-fs {
  display: flex;
  flex-direction: column;
}
.product-fs__media {
  display: flex;
  width: 100%;
}
@media screen and (width <= 811px) {
  .product-fs__media {
    overflow: hidden;
  }
}
.product-fs__image-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  width: 100%;
  height: 27.0833333333vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__image-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__image-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__image-container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__image-container {
    height: 38.0673499268vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__image-container {
    display: none;
  }
}
.product-fs__slider {
  display: none;
  width: 100%;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slider {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider {
    display: flex;
    flex-direction: column;
  }
}
.product-fs__slider-wrap {
  overflow: hidden;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slider-wrap {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-wrap {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-wrap {
    border-radius: 3.2vw;
  }
}
.product-fs__slider-pagination {
  display: flex;
  height: fit-content !important;
  width: fit-content !important;
  margin-inline: auto;
  overflow: hidden;
}
.product-fs__slider-pagination .swiper-pagination-bullet {
  height: 0.2083333333vw;
  width: 0.4166666667vw;
  padding: 0.1041666667vw;
  margin: 0 0.1041666667vw !important;
  background: var(--gray-lighter) !important;
  transition: width 1s var(--ease-spring), background 0.4s var(--cubic-bezier);
  transform-origin: center !important;
  opacity: 1 !important;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    height: 0.2928257687vw;
    width: 0.5856515373vw;
    padding: 0.1464128843vw;
    margin: 0 0.1464128843vw !important;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    height: 0.5208333333vw;
    width: 1.0416666667vw;
    padding: 0.2604166667vw;
    margin: 0 0.2604166667vw !important;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-pagination .swiper-pagination-bullet {
    height: 1.0666666667vw;
    width: 2.1333333333vw;
    padding: 0.5333333333vw;
    margin: 0 0.5333333333vw !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-fs__slider-pagination .swiper-pagination-bullet:hover {
    background: var(--gray-dark) !important;
  }
}
.product-fs__slider-pagination .swiper-pagination-bullet-active {
  width: 0.8333333333vw;
  background: var(--gray-medium) !important;
}
@media screen and (width <= 1401px) {
  .product-fs__slider-pagination .swiper-pagination-bullet-active {
    width: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-pagination .swiper-pagination-bullet-active {
    width: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-pagination .swiper-pagination-bullet-active {
    width: 4.2666666667vw;
  }
}
.product-fs__slide {
  overflow: hidden;
  width: 100%;
  height: 21.1458333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slide {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slide {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slide {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__slide {
    height: 29.7218155198vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slide {
    height: 52.8645833333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slide {
    height: 56vw;
  }
}
.product-fs__slide img {
  width: 100%;
  height: 100%;
  background: var(--gray-lighter);
}
.product-fs__images-aside {
  position: relative;
  display: flex;
  width: 7.2916666667vw;
  padding-inline: max(0.1041666667vw, 2px);
  overflow: hidden;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__images-aside {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__images-aside {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__images-aside {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__images-aside {
    width: 10.2489019034vw;
    padding-inline: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-fs__images-aside {
    width: 18.2291666667vw;
    padding-inline: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-fs__images-aside {
    width: 37.3333333333vw;
    padding-inline: max(0.5333333333vw, 2px);
  }
}
.product-fs__slide-thumb {
  width: 7.2916666667vw;
  border: solid transparent;
  cursor: pointer;
  user-select: none;
  opacity: 0.5;
  background: var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
  border-radius: 0.4166666667vw;
  transition: border-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-fs__slide-thumb {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-fs__slide-thumb {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-fs__slide-thumb {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-fs__slide-thumb {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slide-thumb {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slide-thumb {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__slide-thumb {
    width: 10.2489019034vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slide-thumb {
    width: 18.2291666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slide-thumb {
    width: 37.3333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-fs__slide-thumb:hover {
    opacity: 0.7;
  }
}
.product-fs__slide-thumb:active {
  opacity: 0.7;
  transform: scale(0.97);
}
.product-fs__slide-thumb.swiper-slide-thumb-active {
  opacity: 1;
  pointer-events: none;
  border-color: var(--color1-main);
}
.product-fs__slider-button-prev {
  position: absolute;
  left: 30%;
  z-index: 3;
  top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slider-button-prev {
    top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-button-prev {
    top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-button-prev {
    top: 2.1333333333vw;
  }
}
.product-fs__slider-button-next {
  position: absolute;
  left: 30%;
  z-index: 3;
  bottom: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__slider-button-next {
    bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__slider-button-next {
    bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__slider-button-next {
    bottom: 2.1333333333vw;
  }
}
.product-fs .swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}
.product-fs__image-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gray-lighter);
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__image-gallery {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__image-gallery {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__image-gallery {
    border-radius: 3.2vw;
  }
}
.product-fs__main-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.product-fs__main-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__main-image {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__main-image {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__main-image {
    border-radius: 3.2vw;
  }
}
.product-fs__status-badges {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 2;
  padding: 0.625vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__status-badges {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__status-badges {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__status-badges {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__status-badges {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__status-badges {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__status-badges {
    padding: 3.2vw;
  }
}
.product-fs__badges-mobile {
  display: none;
  margin-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__badges-mobile {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__badges-mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1.5625vw;
    gap: 0.4166666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-fs__badges-mobile {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-fs__badges-mobile {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-fs__badges-mobile {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__badges-mobile {
    margin-top: 3.2vw;
  }
}
.product-fs__badge--to-order {
  color: var(--uniq-blue) !important;
}
.product-fs__badge--is-new {
  color: var(--uniq-yellow) !important;
}
.product-fs__badge--in-stock {
  color: var(--uniq-green) !important;
}
.product-fs__badge--sale {
  color: var(--uniq-red) !important;
}
.product-fs__badge.product-fs__badge--fabric {
  color: var(--color1-darker);
  background: var(--gray-light);
  border: none;
}
.product-fs__badge.product-fs__badge--chassis-dep {
  color: var(--gray-white);
  background: var(--gradient1-dark);
  border: none;
}
.product-fs__info {
  display: none;
  flex-direction: column;
  margin-top: 1.25vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__info {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__info {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__info {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__info {
    margin-top: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__info {
    display: flex;
    margin-top: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__info {
    overflow: hidden;
    margin-top: 6.4vw;
  }
}
.product-fs__info-title {
  color: var(--gray-black);
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-fs__info-title {
    font-size: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__info-title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__info-title {
    font-size: 6.4vw;
  }
}
.product-fs__info-sku {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-fs__info-sku {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__info-sku {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__info-sku {
    font-size: 3.4666666667vw;
  }
}
.product-fs__actions {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  margin-top: 0.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-fs__actions {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__actions {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__actions {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__actions {
    margin-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__actions {
    display: flex;
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__actions {
    overflow: scroll hidden;
    margin-top: 4.2666666667vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .product-fs__actions::-webkit-scrollbar {
    display: none;
  }
  .product-fs__actions::-webkit-scrollbar-thumb {
    display: none;
  }
}
.product-fs__button {
  flex-shrink: 0;
}
.product-fs__button-compare {
  color: var(--gray-darker);
  height: 2.0833333333vw;
  padding-inline: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-fs__button-compare {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__button-compare {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__button-compare {
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-fs__button-compare {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__button-compare {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__button-compare {
    padding-inline: 3.2vw;
  }
}
.product-fs__button-compare .compare-button__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-fs__button-compare .compare-button__text {
    font-size: 3.4666666667vw;
  }
}
.product-fs__button-compare .compare-button__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .product-fs__button-compare .compare-button__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-fs__button-compare .compare-button__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-fs__button-compare .compare-button__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.product-buy-block {
  display: flex;
  flex-direction: column;
  min-width: 15.8333333333vw;
  padding: 1.0416666667vw 1.0416666667vw 0.625vw 1.0416666667vw;
  background: var(--gray-lighter);
  border-radius: 0.625vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-buy-block {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block {
    min-width: 22.2547584187vw;
    padding: 1.4641288433vw 1.4641288433vw 0.878477306vw 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block {
    min-width: 39.5833333333vw;
    padding: 2.6041666667vw 2.6041666667vw 1.5625vw 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block {
    min-width: 81.0666666667vw;
    padding: 5.3333333333vw 5.3333333333vw 3.2vw 5.3333333333vw;
  }
}
.product-buy-block__info {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.625vw;
  border-bottom: solid var(--gray-white);
  gap: 0.2083333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-buy-block__info {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__info {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__info {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__info {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__info {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__info {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__info {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__info {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__info {
    padding-bottom: 3.2vw;
  }
}
.product-buy-block__sku {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 600;
}
@media screen and (width <= 1401px) {
  .product-buy-block__sku {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__sku {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__sku {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__sku {
    display: none;
  }
}
.product-buy-block__prices {
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 811px) {
  .product-buy-block__prices {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.4166666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-buy-block__prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-buy-block__prices {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-buy-block__prices {
    gap: 2.1333333333vw;
  }
}
.product-buy-block__price--request {
  color: var(--color1-light);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-buy-block__price--request {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__price--request {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__price--request {
    font-size: 4.2666666667vw;
  }
}
.product-buy-block__price--current {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-buy-block__price--current {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__price--current {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__price--current {
    font-size: 4.2666666667vw;
  }
}
.product-buy-block__price--old {
  color: var(--color1-dark);
  text-decoration: line-through solid currentColor;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-buy-block__price--old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__price--old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__price--old {
    font-size: 3.4666666667vw;
  }
}
.product-buy-block__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-buy-block__actions {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__actions {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__actions {
    gap: 3.2vw;
  }
}
.product-buy-block__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-buy-block__social {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social {
    gap: 2.1333333333vw;
  }
}
.product-buy-block__social--tg svg {
  color: var(--socials-tg);
}
.product-buy-block__social--wt svg {
  color: var(--socials-wt);
}
.product-buy-block__social--max {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 1.25vw;
  height: 1.25vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  background: var(--gray-lighter);
  color: var(--gray-darker);
  height: 2.5vw;
  min-height: 2.5vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    min-height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    min-height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    min-height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .product-buy-block__social--max {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-buy-block__social--max {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-buy-block__social--max {
    gap: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-buy-block__social--max:hover {
    background: var(--color1-lighter);
  }
}
.product-buy-block__social--max:active {
  background: var(--color1-light);
}
.product-manager-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  min-width: 15.8333333333vw;
  padding: 1.0416666667vw;
  background: var(--gray-lighter);
  gap: 0.625vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info {
    min-width: 22.2547584187vw;
    padding: 1.4641288433vw;
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-width: 39.5833333333vw;
    padding: 2.6041666667vw;
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info {
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content;
    min-width: 81.0666666667vw;
    padding: 5.3333333333vw;
    gap: 4.2666666667vw;
  }
}
.product-manager-info__credentials {
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: min-content min-content;
  grid-template-areas: "image text" "image links";
  background: var(--gray-white);
  height: fit-content;
  padding: 0.4166666667vw;
  gap: 0.2083333333vw 0.625vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__credentials {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__credentials {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__credentials {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__credentials {
    padding: 0.5856515373vw;
    gap: 0.2928257687vw 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__credentials {
    grid-template-areas: "image text" "links links";
    justify-content: center;
    grid-template-columns: 4.1666666667vw auto;
    padding: 1.0416666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__credentials {
    grid-template-columns: 8.5333333333vw auto;
    padding: 2.1333333333vw;
    gap: 2.1333333333vw;
  }
}
.product-manager-info__image-wrap {
  grid-area: image;
  padding-right: 0.4166666667vw;
  border-right: solid var(--gray-lighter);
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-manager-info__image-wrap {
    width: 4.6852122987vw;
    height: 4.6852122987vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__image-wrap {
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__image-wrap {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__image-wrap {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__image-wrap {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__image-wrap {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__image-wrap {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__image-wrap {
    border: none;
    padding-right: 0;
    justify-self: flex-end;
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-manager-info__image-wrap {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-manager-info__image-wrap {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-manager-info__image-wrap {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
.product-manager-info__avatar {
  width: 100%;
  height: 100%;
  user-select: none;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__avatar {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__avatar {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__avatar {
    border-radius: 1.0666666667vw;
  }
}
.product-manager-info__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__text {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__text {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__text {
    gap: 1.0666666667vw;
  }
}
.product-manager-info__name {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-manager-info__name {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__name {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__name {
    font-size: 4.2666666667vw;
  }
}
.product-manager-info__job {
  color: var(--gray-medium);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .product-manager-info__job {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__job {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__job {
    font-size: 2.9333333333vw;
  }
}
.product-manager-info__links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__links {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__links {
    flex-direction: row;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__links {
    gap: 2.1333333333vw;
  }
}
.product-manager-info__phone, .product-manager-info__email {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-darker);
  white-space: nowrap;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-manager-info__phone, .product-manager-info__email {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__phone, .product-manager-info__email {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__phone, .product-manager-info__email {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__phone, .product-manager-info__email {
    background: var(--gray-lighter);
    padding-inline: 1.0416666667vw;
    height: 4.1666666667vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-manager-info__phone, .product-manager-info__email {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-manager-info__phone, .product-manager-info__email {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-manager-info__phone, .product-manager-info__email {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__phone, .product-manager-info__email {
    height: 8.5333333333vw;
    padding-inline: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-manager-info__phone:hover, .product-manager-info__email:hover {
    color: var(--color1-main);
  }
}
.product-manager-info__phone:active, .product-manager-info__email:active {
  color: var(--color1-dark);
}
@media screen and (width <= 811px) {
  .product-manager-info__phone:active, .product-manager-info__email:active {
    background: var(--color1-lighter);
  }
}
.product-manager-info__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  width: 100%;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-manager-info__benefits {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__benefits {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__benefits {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__benefits {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__benefits {
    border-left: solid var(--gray-white);
    padding-left: 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__benefits {
    border-left: none;
    padding-left: 0;
    border-top: solid var(--gray-white);
    padding-top: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.product-manager-info__benefits > *:not(:first-child) {
  padding-top: 0.625vw;
  border-top: solid var(--gray-white);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-manager-info__benefits > *:not(:first-child) {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__benefits > *:not(:first-child) {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__benefits > *:not(:first-child) {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__benefits > *:not(:first-child) {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__benefits > *:not(:first-child) {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__benefits > *:not(:first-child) {
    padding-top: 2.1333333333vw;
  }
}
.product-manager-info__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__row {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__row {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__row {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-manager-info__row {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__row {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__row {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__row {
    justify-content: flex-start;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__row {
    justify-content: center;
  }
}
.product-manager-info__row svg {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .product-manager-info__row svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-manager-info__row svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-manager-info__row svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.product-manager-info__row span {
  color: var(--color1-dark);
}
.product-manager-info__row--link {
  color: var(--color1-dark);
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media (hover: hover) and (pointer: fine) {
  .product-manager-info__row--link:hover {
    color: var(--color1-main);
  }
}
.product-manager-info__row--link:active {
  color: var(--color1-darker);
}
.product-equip-section {
  display: flex;
  flex-direction: column;
  padding: 1.25vw 0 0;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section {
    padding: 1.756954612vw 0 0;
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section {
    padding: 3.125vw 0 0;
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section {
    padding: 6.4vw 0 0;
    gap: 6.4vw;
  }
}
.product-equip-section__container {
  display: flex;
  flex-direction: column;
  border-bottom: solid var(--gray-lighter);
  padding-bottom: 1.6666666667vw;
  gap: 1.4583333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-equip-section__container {
    gap: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__container {
    gap: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__container {
    gap: 7.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__container {
    padding-bottom: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__container {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__container {
    padding-bottom: 5.3333333333vw;
  }
}
.product-equip-section__text {
  display: flex;
  flex-direction: column;
  color: var(--gray-dark);
  gap: 0.2083333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-equip-section__text {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__text {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__text {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__text {
    font-size: 4.2666666667vw;
  }
}
.product-equip-section__text span {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .product-equip-section__text span {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__text span {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__text span {
    font-size: 4.2666666667vw;
  }
}
.product-equip-section__title {
  color: var(--color1-dark);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-equip-section__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__title {
    font-size: 5.3333333333vw;
  }
}
.product-equip-section__desc-image {
  width: 100%;
  height: 25vw;
  cursor: pointer;
  object-fit: contain;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__desc-image {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__desc-image {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__desc-image {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__desc-image {
    height: 32.2108345534vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__desc-image {
    height: 57.03125vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__desc-image {
    height: 54.9333333333vw;
  }
}
.product-equip-section__table-wrap, .product-equip-section__plan-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__table-wrap, .product-equip-section__plan-wrap {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__table-wrap, .product-equip-section__plan-wrap {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__table-wrap, .product-equip-section__plan-wrap {
    flex-direction: column;
    gap: 4.2666666667vw;
  }
}
.product-equip-section__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__table {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__table {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__table {
    gap: 5.3333333333vw;
  }
}
.product-equip-section__table-image {
  position: sticky;
  top: 0;
  flex-shrink: 0;
  overflow: hidden;
  width: 21.875vw;
  height: 12.5vw;
  border: solid var(--gray-light);
  cursor: pointer;
  border-radius: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-equip-section__table-image {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__table-image {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__table-image {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__table-image {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__table-image {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__table-image {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__table-image {
    width: 30.7467057101vw;
    height: 17.5695461201vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__table-image {
    width: 43.75vw;
    height: 25vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__table-image {
    width: 100%;
    height: 49.6vw;
  }
}
.product-equip-section__table-image img {
  width: 100%;
  height: 100%;
}
.product-equip-section__plan {
  display: flex;
  flex-direction: column;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan {
    font-size: 4.2666666667vw;
  }
}
.product-equip-section__plan-image {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 21.875vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image {
    width: 30.7467057101vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image {
    width: 43.75vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image {
    width: 100%;
  }
}
.product-equip-section__plan-image img {
  width: 100%;
  height: 14.5833333333vw;
  border: solid var(--gray-light);
  cursor: pointer;
  border-radius: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image img {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image img {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image img {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image img {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image img {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image img {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image img {
    height: 20.4978038067vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image img {
    height: 31.7708333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image img {
    height: 58.1333333333vw;
  }
}
.product-equip-section__plan-image span {
  text-align: center;
  color: var(--gray-medium);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .product-equip-section__plan-image span {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__plan-image span {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__plan-image span {
    font-size: 2.9333333333vw;
  }
}
.product-equip-section__equip-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2vw;
  }
}
.product-equip-section__equip-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.625vw;
  background: var(--gray-lighter);
  gap: 0.8333333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card {
    padding: 3.2vw;
  }
}
.product-equip-section__equip-card img {
  flex-shrink: 0;
  width: 3.125vw;
  height: 3.125vw;
  border-radius: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card img {
    width: 4.39238653vw;
    height: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card img {
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card img {
    width: 16vw;
    height: 16vw;
  }
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card img {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card img {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card img {
    border-radius: 1.0666666667vw;
  }
}
.product-equip-section__equip-card p {
  color: var(--gray-darker);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-equip-section__equip-card p {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__equip-card p {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__equip-card p {
    font-size: 3.4666666667vw;
  }
}
.product-equip-section__variants {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-equip-section__variants {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__variants {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-equip-section__variants {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .product-equip-section__variants {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.catalog-card {
  position: relative;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .catalog-card:hover .catalog-card__container {
    background: var(--gray-lighter);
  }
  .catalog-card:hover .catalog-card__title {
    color: var(--color1-main);
  }
  .catalog-card:hover .catalog-card__image-gallery img {
    transform: scale(1.1);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (width <= 811px) {
  .catalog-card:hover .catalog-card__container {
    background: var(--gray-white);
  }
}
.catalog-card:active .catalog-card__title {
  color: var(--color1-darker);
}
.catalog-card:active .catalog-card__image-gallery img {
  transform: scale(1);
}
.catalog-card__link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.catalog-card__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.625vw;
  background: var(--gray-white);
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__container {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__container {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__container {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__container {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__container {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    padding: 0;
  }
}
.catalog-card__status-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__status-badges {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__status-badges {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__status-badges {
    gap: 2.1333333333vw;
  }
}
.catalog-card__badge {
  height: 1.25vw !important;
  border-radius: 0.625vw !important;
}
@media screen and (width <= 1401px) {
  .catalog-card__badge {
    height: 1.756954612vw !important;
    border-radius: 0.878477306vw !important;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__badge {
    height: 3.125vw !important;
    border-radius: 1.5625vw !important;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__badge {
    height: 6.4vw !important;
    border-radius: 3.2vw !important;
  }
}
.catalog-card__badge--to-order {
  color: var(--uniq-blue) !important;
}
.catalog-card__badge--is-new {
  color: var(--uniq-yellow) !important;
}
.catalog-card__badge--in-stock {
  color: var(--uniq-green) !important;
}
.catalog-card__badge--sale {
  color: var(--uniq-red) !important;
}
.catalog-card__badge.catalog-card__badge--fabric {
  color: var(--color1-darker);
  background: var(--gray-light);
  border: none;
}
.catalog-card__badge.catalog-card__badge--chassis-dep {
  color: var(--gray-white);
  background: var(--gradient1-dark);
  border: none;
}
.catalog-card__media {
  position: relative;
  flex-shrink: 0;
}
@media screen and (width <= 811px) {
  .catalog-card__media {
    height: 36.1979166667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__media {
    height: 72vw;
  }
}
.catalog-card__image-container {
  display: flex;
  flex-direction: row;
  height: 12.5vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__image-container {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__image-container {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__image-container {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__image-container {
    height: 17.5695461201vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__image-container {
    height: 100%;
  }
}
.catalog-card__image-gallery {
  flex-shrink: 0;
  width: 16.6666666667vw !important;
  overflow: hidden;
  z-index: 1;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__image-gallery {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__image-gallery {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__image-gallery {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__image-gallery {
    width: 19.0336749634vw !important;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__image-gallery {
    max-width: 47.3958333333vw;
    width: 100%;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__image-gallery {
    max-width: 91.2vw;
  }
}
.catalog-card__image-gallery img {
  width: 100%;
  height: 100%;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.catalog-card__images-aside {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  width: 4.375vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__images-aside {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__images-aside {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__images-aside {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__images-aside {
    grid-template-rows: repeat(3, 1fr);
    width: 6.149341142vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__images-aside {
    display: none;
  }
}
.catalog-card__images-aside img {
  width: 100%;
  height: 100%;
  user-select: none;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__images-aside img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__images-aside img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__images-aside img {
    border-radius: 3.2vw;
  }
}
.catalog-card__images-aside img:nth-child(n+5) {
  display: none;
}
@media screen and (width <= 1401px) {
  .catalog-card__images-aside img:nth-child(n+4) {
    display: none;
  }
}
.catalog-card__pagination {
  position: absolute;
  top: unset !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex;
  height: fit-content !important;
  width: fit-content !important;
  margin-inline: auto;
  overflow: hidden;
  margin-block: 0.4166666667vw;
  z-index: 2;
}
@media screen and (width <= 1401px) {
  .catalog-card__pagination {
    margin-block: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__pagination {
    margin-block: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__pagination {
    margin-block: 2.1333333333vw;
  }
}
.catalog-card__pagination .swiper-pagination-bullet {
  height: 0.2083333333vw;
  width: 0.4166666667vw;
  padding: 0.1041666667vw;
  margin: 0 0.1041666667vw !important;
  background: var(--gray-medium) !important;
  transition: width 1s var(--ease-spring), background 0.4s var(--cubic-bezier);
  transform-origin: center !important;
  opacity: 1 !important;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    height: 0.2928257687vw;
    width: 0.5856515373vw;
    padding: 0.1464128843vw;
    margin: 0 0.1464128843vw !important;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    height: 0.5208333333vw;
    width: 1.0416666667vw;
    padding: 0.2604166667vw;
    margin: 0 0.2604166667vw !important;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__pagination .swiper-pagination-bullet {
    height: 1.0666666667vw;
    width: 2.1333333333vw;
    padding: 0.5333333333vw;
    margin: 0 0.5333333333vw !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .catalog-card__pagination .swiper-pagination-bullet:hover {
    background: var(--gray-dark) !important;
  }
}
.catalog-card__pagination .swiper-pagination-bullet-active {
  width: 0.8333333333vw;
  background: var(--gray-dark) !important;
}
@media screen and (width <= 1401px) {
  .catalog-card__pagination .swiper-pagination-bullet-active {
    width: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__pagination .swiper-pagination-bullet-active {
    width: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__pagination .swiper-pagination-bullet-active {
    width: 4.2666666667vw;
  }
}
.catalog-card__content {
  width: 100%;
  margin-block: auto;
  border-right: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .catalog-card__content {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .catalog-card__content {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .catalog-card__content {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .catalog-card__content {
    border: none;
  }
}
.catalog-card__info {
  display: flex;
  flex-direction: column;
  margin-inline: 1.6666666667vw;
  margin-block: auto;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__info {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__info {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__info {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__info {
    margin-inline: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__info {
    margin-inline: 0;
    margin-block: 0;
  }
}
.catalog-card__title {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .catalog-card__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__title {
    font-size: 4.2666666667vw;
  }
}
@supports (-webkit-line-clamp: 2) {
  .catalog-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.catalog-card__sku {
  color: var(--gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
}
@media screen and (width <= 1401px) {
  .catalog-card__sku {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__sku {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__sku {
    font-size: 4.2666666667vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .catalog-card__sku {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.catalog-card__desc {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .catalog-card__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__desc {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 3) {
  .catalog-card__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__desc {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  @supports (-webkit-line-clamp: 2) {
    .catalog-card__desc {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }
}
.catalog-card__actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-block: 1.0416666667vw;
  padding-inline: 2.0833333333vw;
  background: var(--gray-white);
  gap: 0.625vw;
  border-radius: 0.625vw;
  width: 18.2291666667vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__actions {
    padding-block: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    padding-block: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__actions {
    padding-block: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__actions {
    padding-inline: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    padding-inline: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__actions {
    padding-inline: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__actions {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__actions {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__actions {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__actions {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__actions {
    width: 24.1581259151vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    width: 45.5729166667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__actions {
    width: 93.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__actions {
    display: none;
  }
}
.catalog-card__action-buttons {
  display: flex;
  flex-direction: column;
  padding-top: 0.625vw;
  border-top: solid var(--gray-lighter);
  gap: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .catalog-card__action-buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__action-buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__action-buttons {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__action-buttons {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .catalog-card__action-buttons {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .catalog-card__action-buttons {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__action-buttons {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__action-buttons {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__action-buttons {
    padding-top: 3.2vw;
  }
}
.catalog-card__control-buttons {
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__control-buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__control-buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__control-buttons {
    gap: 3.2vw;
  }
}
.catalog-card__prices {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .catalog-card__prices {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__prices {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__prices {
    gap: 1.0666666667vw;
  }
}
.catalog-card__price--request {
  color: var(--gray-medium);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .catalog-card__price--request {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__price--request {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__price--request {
    font-size: 4.2666666667vw;
  }
}
.catalog-card__price--current {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .catalog-card__price--current {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__price--current {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__price--current {
    font-size: 4.2666666667vw;
  }
}
.catalog-card__price--old {
  color: var(--color1-dark);
  text-decoration: line-through solid currentColor;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .catalog-card__price--old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__price--old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__price--old {
    font-size: 3.4666666667vw;
  }
}
.catalog-card__button-compare {
  position: relative;
  z-index: 3;
}
.catalog-card__button-specification {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  color: var(--gray-darker);
  background: var(--gray-lighter);
  height: 1.6666666667vw;
  padding-inline: 0.625vw;
  border-radius: 0.4166666667vw;
  gap: 0.2083333333vw;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .catalog-card__button-specification {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__button-specification {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__button-specification {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__button-specification {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .catalog-card__button-specification {
    height: 2.3426061493vw;
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification {
    height: 3.125vw;
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__button-specification {
    height: 6.4vw;
    padding-inline: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .catalog-card__button-specification:hover {
    color: var(--color1-main);
    background: var(--color1-lighter);
  }
}
.catalog-card__button-specification:active {
  color: var(--color1-darker);
  background: var(--color1-light);
}
.catalog-card__button-specification span {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .catalog-card__button-specification span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__button-specification span {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification span {
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .catalog-card__button-specification span {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .catalog-card__button-specification span {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .catalog-card__button-specification span {
    font-size: 2.9333333333vw;
  }
}
.catalog-card__button-specification svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .catalog-card__button-specification svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-card__button-specification svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-card__button-specification svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.catalog-card__button-order {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hover-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hover-image__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  user-select: none;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.hover-image__img--active {
  opacity: 1;
}
.hover-image__link {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 10;
}
.hover-image__sections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 10;
}
.hover-image__section {
  height: 100%;
  flex: 1;
}
.hover-image__pagination {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 20;
  gap: 0.2083333333vw;
  bottom: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .hover-image__pagination {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image__pagination {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image__pagination {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .hover-image__pagination {
    bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image__pagination {
    bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image__pagination {
    bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 0.625vw;
    opacity: 1;
    width: 49%;
    transition: transform 0.4s var(--cubic-bezier);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 0.625vw;
    opacity: 0;
    width: 100%;
  }
  .hover-image--two-tablet .hover-image__img--active {
    opacity: 1;
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .hover-image--two-tablet .hover-image__img {
    border-radius: 3.2vw;
  }
}
.hover-image__dot {
  width: 0.4166666667vw;
  height: 0.2083333333vw;
  background: var(--gray-medium);
  transition: width 0.5s var(--ease-spring), background 0.2s var(--cubic-bezier);
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .hover-image__dot {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image__dot {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image__dot {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .hover-image__dot {
    width: 0.5856515373vw;
    height: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image__dot {
    width: 1.0416666667vw;
    height: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image__dot {
    width: 2.1333333333vw;
    height: 1.0666666667vw;
  }
}
.hover-image__dot--active {
  background: var(--gray-dark);
  width: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .hover-image__dot--active {
    width: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .hover-image__dot--active {
    width: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .hover-image__dot--active {
    width: 4.2666666667vw;
  }
}
.product-delivery-section {
  display: flex;
  flex-direction: column;
  padding: 1.25vw 0 0;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-delivery-section {
    padding: 1.756954612vw 0 0;
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section {
    padding: 3.125vw 0 0;
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section {
    padding: 6.4vw 0 0;
    gap: 6.4vw;
  }
}
.product-delivery-section__container {
  display: flex;
  flex-direction: column;
  border-bottom: solid var(--gray-lighter);
  padding-bottom: 1.6666666667vw;
  gap: 1.4583333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .product-delivery-section__container {
    gap: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__container {
    gap: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__container {
    gap: 7.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-delivery-section__container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .product-delivery-section__container {
    padding-bottom: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__container {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__container {
    padding-bottom: 5.3333333333vw;
  }
}
.product-delivery-section__body {
  display: flex;
  flex-direction: column;
  max-width: 65ch;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-delivery-section__body {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__body {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__body {
    gap: 4.2666666667vw;
  }
}
.product-delivery-section__block {
  display: flex;
  flex-direction: column;
}
.product-delivery-section__block-title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .product-delivery-section__block-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__block-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__block-title {
    font-size: 4.2666666667vw;
  }
}
.product-delivery-section__block-text {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-delivery-section__block-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__block-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__block-text {
    font-size: 4.2666666667vw;
  }
}
.product-delivery-section__title {
  color: var(--color1-dark);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-delivery-section__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__title {
    font-size: 5.3333333333vw;
  }
}
.product-delivery-section__link {
  color: var(--color1-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-delivery-section__link {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-delivery-section__link {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-delivery-section__link {
    font-size: 4.2666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-delivery-section__link:hover {
    color: var(--color1-main);
  }
}
.product-delivery-section__link:active {
  color: var(--color1-darker);
}
.services-promo {
  padding: 6.25vw 0 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .services-promo {
    padding: 8.78477306vw 0 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .services-promo {
    padding: 5.2083333333vw 0;
  }
}
@media screen and (width <= 481px) {
  .services-promo {
    padding: 10.6666666667vw 0;
  }
}
.services-promo__container {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
@media screen and (width <= 1401px) {
  .services-promo__container {
    gap: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .services-promo__container {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .services-promo__container {
    gap: 8.5333333333vw;
  }
}
.services-promo__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: min-content;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .services-promo__list {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .services-promo__list {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .services-promo__list {
    grid-template-columns: 1fr;
    gap: 4.2666666667vw;
  }
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  background: var(--gray-lighter);
  gap: 1.4583333333vw;
  padding: 0.625vw;
  cursor: pointer;
  border-radius: 1.0416666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .service-card {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .service-card {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .service-card {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .service-card {
    gap: 1.756954612vw;
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .service-card {
    flex-direction: column;
    gap: 2.0833333333vw;
    padding: 2.0833333333vw 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .service-card {
    gap: 4.2666666667vw;
    padding: 4.2666666667vw 3.2vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-card__title {
    color: var(--color1-dark);
  }
  .service-card:hover .service-card__button {
    opacity: 1;
    transform: translateX(0);
  }
}
.service-card:active {
  background: var(--gray-light);
}
.service-card:active .service-card__title {
  color: var(--color1-darker);
}
.service-card:active .service-card__button {
  opacity: 1;
  transform: translateX(0);
}
.service-card__link {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 2;
}
.service-card__left {
  flex-shrink: 0;
  display: block;
  position: relative;
  overflow: hidden;
  width: 16.6666666667vw;
  height: 11.4583333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .service-card__left {
    width: 20.4978038067vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__left {
    width: 44.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__left {
    width: 86.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .service-card__left {
    height: 14.3484626647vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__left {
    height: 31.25vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__left {
    height: 58.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .service-card__left {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__left {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__left {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__left {
    width: 100%;
  }
}
.service-card__left img {
  height: 100%;
  width: 100%;
  user-select: none;
}
.service-card__button {
  position: absolute;
  bottom: 0.4166666667vw;
  left: 0.4166666667vw;
  z-index: 2;
  opacity: 0;
  transform: translateX(-100%);
}
@media screen and (width <= 1401px) {
  .service-card__button {
    bottom: 0.5856515373vw;
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__button {
    bottom: 1.0416666667vw;
    left: 1.0416666667vw;
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (width <= 481px) {
  .service-card__button {
    bottom: 2.1333333333vw;
    left: 2.1333333333vw;
  }
}
.service-card__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .service-card__right {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__right {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__right {
    gap: 3.2vw;
  }
}
.service-card__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .service-card__wrap {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__wrap {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__wrap {
    gap: 2.1333333333vw;
  }
}
.service-card__title {
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .service-card__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__title {
    font-size: 4.2666666667vw;
  }
}
.service-card__desc {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .service-card__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__desc {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 3) {
  .service-card__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.service-card__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .service-card__badges {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .service-card__badges {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .service-card__badges {
    gap: 1.0666666667vw;
  }
}
.products-slider {
  padding: 4.1666666667vw 0 4.1666666667vw 13.0208333333vw;
  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 <= 1401px) {
  .products-slider {
    padding: 5.8565153734vw 0 5.8565153734vw 3.2942898975vw;
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider {
    padding: 5.2083333333vw 0 5.2083333333vw 1.5625vw;
    gap: 4.1666666667vw;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "slider" "buttons";
  }
}
@media screen and (width <= 481px) {
  .products-slider {
    padding: 10.6666666667vw 0 10.6666666667vw 3.2vw;
    gap: 8.5333333333vw;
  }
}
.products-slider__title {
  grid-area: title;
}
.products-slider__buttons {
  padding-right: 13.0208333333vw;
  display: flex;
  gap: 0.625vw;
  justify-self: end;
  align-items: center;
  grid-area: buttons;
}
@media screen and (width <= 1401px) {
  .products-slider__buttons {
    padding-right: 3.2942898975vw;
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider__buttons {
    padding-right: 1.5625vw;
    width: 100%;
    justify-self: start;
    gap: 0;
  }
}
@media screen and (width <= 481px) {
  .products-slider__buttons {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider__button-link {
    width: 100%;
    background: var(--gray-lighter);
    color: var(--gray-darker);
  }
  .products-slider__button-link:active {
    background: var(--color1-light) !important;
    color: var(--gray-darker) !important;
  }
}
@media screen and (width <= 811px) and (hover: hover) and (pointer: fine) {
  .products-slider__button-link:hover {
    background: var(--color1-lighter);
    color: var(--gray-darker);
  }
}
.products-slider__slider-wrap {
  grid-area: slider;
  overflow: hidden;
  height: fit-content;
}
.products-slider__slider {
  overflow: hidden;
  border-top-left-radius: 0.625vw;
  border-bottom-left-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .products-slider__slider {
    border-top-left-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider__slider {
    border-top-left-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .products-slider__slider {
    border-top-left-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .products-slider__slider {
    border-bottom-left-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider__slider {
    border-bottom-left-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .products-slider__slider {
    border-bottom-left-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .products-slider__slider .product-card__actions {
    flex-direction: column !important;
  }
}
@media screen and (width <= 811px) {
  .products-slider__button-prev, .products-slider__button-next {
    display: none;
  }
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__title {
    color: var(--color1-main);
  }
  .product-card:hover .product-card__image-container img {
    transform: scale(1.1);
  }
}
.product-card:active .product-card__title {
  color: var(--color1-darker);
}
.product-card:active .product-card__image-container img {
  transform: scale(1);
}
.product-card__link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  height: 17.7083333333vw;
  z-index: 3;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-card__media {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__media {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__media {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__media {
    height: 22.2547584187vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__media {
    height: 25vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__media {
    height: 51.2vw;
  }
}
.product-card__media-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto min-content;
  grid-template-areas: "badges compare" "spec spec";
  height: 100%;
  width: 100%;
  padding: 0.625vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-card__media-wrapper {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__media-wrapper {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__media-wrapper {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__media-wrapper {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__media-wrapper {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__media-wrapper {
    padding: 2.1333333333vw;
  }
}
.product-card__media-wrapper .compare-button {
  z-index: 2;
  justify-self: flex-end;
}
.product-card__status-badges {
  position: relative;
  grid-area: badges;
  justify-self: self-start;
  display: flex;
  height: fit-content;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 2;
  pointer-events: none;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-card__status-badges {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__status-badges {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__status-badges {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__badge {
    height: 3.125vw !important;
    border-radius: 1.5625vw !important;
  }
}
@media screen and (width <= 481px) {
  .product-card__badge {
    height: 6.4vw !important;
    border-radius: 3.2vw !important;
  }
}
.product-card__badge--to-order {
  color: var(--uniq-blue) !important;
}
.product-card__badge--is-new {
  color: var(--uniq-yellow) !important;
}
.product-card__badge--in-stock {
  color: var(--uniq-green) !important;
}
.product-card__badge--sale {
  color: var(--uniq-red) !important;
}
.product-card__badge.product-card__badge--fabric {
  color: var(--color1-darker);
  background: var(--gray-light);
  border: none;
}
.product-card__badge.product-card__badge--chassis-dep {
  color: var(--gray-white);
  background: var(--gradient1-dark);
  border: none;
}
.product-card__button-compare {
  position: relative;
  grid-area: compare;
  justify-self: self-end;
  z-index: 3;
}
.product-card__button-specification {
  position: relative;
  grid-area: spec;
  align-self: self-end;
  justify-self: self-start;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--gray-darker);
  background: var(--gray-lighter);
  height: 1.6666666667vw;
  padding-inline: 0.625vw;
  z-index: 2;
  border-radius: 0.4166666667vw;
  gap: 0.2083333333vw;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-card__button-specification {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-specification {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__button-specification {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-specification {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__button-specification {
    height: 2.3426061493vw;
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification {
    height: 3.125vw;
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-specification {
    height: 6.4vw;
    padding-inline: 2.1333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-card__button-specification:hover {
    color: var(--color1-main);
    background: var(--color1-lighter);
  }
}
.product-card__button-specification:active {
  color: var(--color1-darker);
  background: var(--color1-light);
}
.product-card__button-specification:active svg {
  transform: translateX(20%);
}
.product-card__button-specification span {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-card__button-specification span {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification span {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-specification span {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification span {
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .product-card__button-specification span {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .product-card__button-specification span {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .product-card__button-specification span {
    font-size: 2.9333333333vw;
  }
}
.product-card__button-specification svg {
  flex-shrink: 0;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-card__button-specification svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-specification svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__button-specification svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.product-card__image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-card__image-container img {
  width: 100%;
  height: 100%;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.product-card__pagination {
  position: relative;
  top: unset !important;
  bottom: unset !important;
  display: flex;
  height: fit-content !important;
  width: fit-content !important;
  margin-inline: auto;
  overflow: hidden;
  margin-block: 0.4166666667vw;
  z-index: 2;
}
@media screen and (width <= 1401px) {
  .product-card__pagination {
    margin-block: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__pagination {
    margin-block: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__pagination {
    margin-block: 2.1333333333vw;
  }
}
.product-card__pagination .swiper-pagination-bullet {
  height: 0.2083333333vw;
  width: 0.4166666667vw;
  padding: 0.1041666667vw;
  margin: 0 0.1041666667vw !important;
  background: var(--gray-medium) !important;
  transition: width 1s var(--ease-spring), background 0.4s var(--cubic-bezier);
  transform-origin: center !important;
  opacity: 1 !important;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-card__pagination .swiper-pagination-bullet {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__pagination .swiper-pagination-bullet {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__pagination .swiper-pagination-bullet {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__pagination .swiper-pagination-bullet {
    height: 0.2928257687vw;
    width: 0.5856515373vw;
    padding: 0.1464128843vw;
    margin: 0 0.1464128843vw !important;
  }
}
@media screen and (width <= 811px) {
  .product-card__pagination .swiper-pagination-bullet {
    height: 0.5208333333vw;
    width: 1.0416666667vw;
    padding: 0.2604166667vw;
    margin: 0 0.2604166667vw !important;
  }
}
@media screen and (width <= 481px) {
  .product-card__pagination .swiper-pagination-bullet {
    height: 1.0666666667vw;
    width: 2.1333333333vw;
    padding: 0.5333333333vw;
    margin: 0 0.5333333333vw !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-card__pagination .swiper-pagination-bullet:hover {
    background: var(--gray-dark) !important;
  }
}
.product-card__pagination .swiper-pagination-bullet-active {
  width: 0.8333333333vw;
  background: var(--gray-dark) !important;
}
@media screen and (width <= 1401px) {
  .product-card__pagination .swiper-pagination-bullet-active {
    width: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__pagination .swiper-pagination-bullet-active {
    width: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__pagination .swiper-pagination-bullet-active {
    width: 4.2666666667vw;
  }
}
.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .product-card__content {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__content {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__content {
    gap: 3.2vw;
  }
}
.product-card__info {
  display: flex;
  flex-direction: column;
}
.product-card__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-card__meta {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__meta {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__meta {
    gap: 3.2vw;
  }
}
.product-card__category {
  flex: 1;
  color: var(--color1-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .product-card__category {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__category {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__category {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .product-card__category {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.product-card__part-number {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
}
@media screen and (width <= 1401px) {
  .product-card__part-number {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__part-number {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__part-number {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 1) {
  .product-card__part-number {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.product-card__title {
  color: var(--gray-dark);
  height: 2lh;
  margin-top: 0.2083333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.0416666667vw;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .product-card__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__title {
    font-size: 5.3333333333vw;
  }
}
@supports (-webkit-line-clamp: 2) {
  .product-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (width <= 1401px) {
  .product-card__title {
    margin-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__title {
    margin-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__title {
    margin-top: 1.0666666667vw;
  }
}
.product-card__desc {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (width <= 1401px) {
  .product-card__desc {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__desc {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__desc {
    font-size: 3.4666666667vw;
  }
}
@supports (-webkit-line-clamp: 3) {
  .product-card__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.product-card__prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .product-card__prices {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__prices {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__prices {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .product-card__prices {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__prices {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__prices {
    margin-top: 2.1333333333vw;
  }
}
.product-card__price--request {
  color: var(--gray-medium);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-card__price--request {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__price--request {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__price--request {
    font-size: 4.2666666667vw;
  }
}
.product-card__price--current {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .product-card__price--current {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__price--current {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__price--current {
    font-size: 4.2666666667vw;
  }
}
.product-card__price--old {
  color: var(--color1-dark);
  text-decoration: line-through solid currentColor;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .product-card__price--old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__price--old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__price--old {
    font-size: 3.4666666667vw;
  }
}
.product-card__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
  z-index: 2;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .product-card__actions {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__actions {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .product-card__actions {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .product-card__button-order, .product-card__button-lizing {
    width: 100% !important;
  }
}
.product-card__button-lizing {
  z-index: 2;
  position: relative;
}
@media screen and (width <= 811px) {
  .product-card__button-about {
    display: none;
  }
}
.consult-promo {
  position: relative;
  background: #FBF5F5;
  overflow: hidden;
}
.consult-promo__shape {
  position: absolute;
  width: 100%;
  fill: #F5EBEA;
  user-select: none;
  pointer-events: none;
}
@media screen and (width <= 811px) {
  .consult-promo__shape {
    top: 25%;
  }
}
.consult-promo__container {
  position: relative;
  display: grid;
  grid-template-columns: 43.2291666667vw 1fr;
  gap: 4.1666666667vw;
  padding-block: 4.1666666667vw;
  z-index: 2;
}
@media screen and (width <= 1401px) {
  .consult-promo__container {
    grid-template-columns: 46.1200585652vw 1fr;
    gap: 4.39238653vw;
    padding-block: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__container {
    grid-template-columns: 1fr 1fr;
    gap: 2.0833333333vw;
    padding-block: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 5.3333333333vw;
    padding-block: 10.6666666667vw;
  }
}
.consult-promo__left {
  position: relative;
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 0.625vw;
  padding-block-start: 3.1770833333vw;
  padding-inline-start: 13.0208333333vw;
}
@media screen and (width <= 1401px) {
  .consult-promo__left {
    gap: 0.878477306vw;
    padding-block-start: 2.2693997072vw;
    padding-inline-start: 3.2942898975vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__left {
    gap: 1.5625vw;
    padding-block-start: 0;
    padding-inline-start: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__left {
    gap: 3.2vw;
    padding-inline: 3.2vw;
  }
}
.consult-promo__right {
  height: fit-content;
  background: var(--gray-white);
  padding-inline-start: 2.0833333333vw;
  padding-inline-end: 13.0208333333vw;
  padding-block: 2.0833333333vw;
  border-top-left-radius: 1.4583333333vw;
  border-bottom-left-radius: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .consult-promo__right {
    padding-inline-start: 1.0416666667vw;
    padding-inline-end: 3.2942898975vw;
    padding-block: 1.4641288433vw;
    border-top-left-radius: 1.4641288433vw;
    border-bottom-left-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__right {
    padding: 2.6041666667vw;
    margin-inline-end: 1.5625vw;
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__right {
    padding: 5.3333333333vw;
    margin-inline: 3.2vw;
    border-radius: 5.3333333333vw;
  }
}
.consult-promo__title {
  color: var(--gray-black);
  font-size: 2.1875vw;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .consult-promo__title {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__title {
    font-size: 7.4666666667vw;
  }
}
.consult-promo__title span {
  color: var(--color1-dark);
}
.consult-promo__desc {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .consult-promo__desc {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__desc {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__desc {
    font-size: 4.2666666667vw;
  }
}
.consult-promo__image {
  user-select: none;
  width: 100%;
  height: 12.5vw;
  margin-top: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .consult-promo__image {
    margin-top: 3.513909224vw;
    height: 17.5695461201vw;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__image {
    margin-top: 0.5856515373vw;
    height: 19.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__image {
    margin-top: 2.1333333333vw;
    height: 38.6666666667vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__image--contacts {
    margin-bottom: 18.6666666667vw;
  }
}
.consult-promo__form .form__input-row {
  flex-direction: row;
}
@media screen and (width <= 811px) {
  .consult-promo__form .form__input-row {
    flex-direction: column;
  }
}
.consult-promo__form .form__button-submit {
  width: fit-content;
}
@media screen and (width <= 811px) {
  .consult-promo__form .form__button-submit {
    width: 100%;
  }
}
.consult-promo__button-phone {
  position: absolute;
  background: var(--color1-light);
  color: var(--gray-white);
  bottom: -10%;
  right: 5%;
  height: 3.125vw !important;
  rotate: 2deg;
  z-index: 2;
}
@media screen and (width <= 1401px) {
  .consult-promo__button-phone {
    bottom: -10%;
    right: 5%;
    height: 4.39238653vw !important;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__button-phone {
    bottom: -14%;
    right: 6%;
    height: 6.25vw !important;
    padding: 0 1.8229166667vw;
  }
  .consult-promo__button-phone .btn-contact__text {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 1.0416666667vw;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .consult-promo__button-phone .btn-contact__text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .consult-promo__button-phone .btn-contact__text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .consult-promo__button-phone .btn-contact__text {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__button-phone {
    bottom: 3%;
    right: 5%;
    height: 12.8vw !important;
    padding: 0 3.7333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .consult-promo__button-phone:hover {
    background: var(--color1-main);
    color: var(--gray-white);
  }
}
.consult-promo__button-phone:active {
  background: var(--color1-dark);
  color: var(--gray-white);
}
.consult-promo__button-email {
  position: absolute;
  background: var(--gray-white);
  color: var(--gray-darker);
  bottom: 0;
  left: 40%;
  height: 3.125vw !important;
  rotate: -6deg;
  z-index: 1;
}
@media screen and (width <= 1401px) {
  .consult-promo__button-email {
    bottom: 0;
    left: 18%;
    height: 4.39238653vw !important;
  }
}
@media screen and (width <= 811px) {
  .consult-promo__button-email {
    bottom: 0;
    left: 13%;
    height: 6.25vw !important;
    padding: 0 1.8229166667vw;
  }
  .consult-promo__button-email .btn-contact__text {
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-size: 1.0416666667vw;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .consult-promo__button-email .btn-contact__text {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .consult-promo__button-email .btn-contact__text {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .consult-promo__button-email .btn-contact__text {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .consult-promo__button-email {
    bottom: 14%;
    left: 4%;
    height: 12.8vw !important;
    padding: 0 3.7333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .consult-promo__button-email:hover {
    background: var(--gray-light);
    color: var(--color1-dark);
  }
}
.consult-promo__button-email:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.footer {
  background: var(--gray-black);
  padding-block: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .footer {
    padding-block-start: 2.9282576867vw;
    padding-block-end: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .footer {
    padding-block-start: 2.6041666667vw;
    padding-block-end: 15.625vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    padding-block-start: 5.3333333333vw;
    padding-block-end: 32vw;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__container {
    gap: 5.3333333333vw;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.0416666667vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer__top {
    gap: 1.4641288433vw;
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.6041666667vw;
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
    margin-bottom: 3.2vw;
  }
}
.footer__logo-link {
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer__logo-link {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer__logo-link {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__logo-link {
    margin-bottom: 3.2vw;
  }
}
.footer__logo-icon {
  width: 8.3333333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer__logo-icon {
    width: 11.7130307467vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer__logo-icon {
    width: 20.8333333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__logo-icon {
    width: 42.6666666667vw;
    height: 10.6666666667vw;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  padding-right: 1.0416666667vw;
  border-right: solid var(--gray-darker);
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .footer__column {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .footer__column {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .footer__column {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .footer__column {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column {
    padding-right: 5.5989583333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column {
    padding-right: 0;
    border: none;
  }
}
.footer__column:last-of-type {
  border-right: none;
  padding-right: 0;
}
.footer__column--main {
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .footer__column--main {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column--main {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column--main {
    gap: 2.1333333333vw;
  }
}
.footer__column--nav {
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 811px) {
  .footer__column--nav {
    display: none;
  }
}
@media screen and (width <= 481px) {
  .footer__column--info {
    border-top: solid var(--gray-darker);
    padding-top: 5.3333333333vw;
    border-radius: 0.1041666667vw;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .footer__column--info {
    border-radius: 0.1464128843vw;
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .footer__column--info {
    border-radius: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .footer__column--info {
    border-radius: 0.5333333333vw;
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .footer__column--info {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .footer__column--info {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .footer__column--info {
    border-width: max(0.5333333333vw, 2px);
  }
}
.footer__column-title {
  color: var(--gray-white);
  padding-block: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer__column-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .footer__column-title {
    padding-block: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column-title {
    padding-block: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column-title {
    padding-block: 3.2vw;
  }
}
.footer__column-list {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .footer__column-list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column-list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column-list {
    gap: 1.0666666667vw;
  }
}
.footer__column-list-add {
  display: none;
  flex-direction: column;
  margin-top: 0.625vw;
  padding-top: 0.625vw;
  border-top: solid var(--gray-darker);
  gap: 0.2083333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .footer__column-list-add {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column-list-add {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column-list-add {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .footer__column-list-add {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .footer__column-list-add {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .footer__column-list-add {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .footer__column-list-add {
    margin-top: 0.878477306vw;
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer__column-list-add {
    display: flex;
    margin-top: 1.5625vw;
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__column-list-add {
    margin-top: 3.2vw;
    padding-top: 3.2vw;
  }
}
.footer__column-link {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .footer__column-link:hover {
    color: var(--color1-light);
  }
}
.footer__column-link:active {
  color: var(--color1-main);
}
.footer__column-link:not(:has(.tab__icon)) .tab__text {
  margin-inline: 0;
}
.footer__info-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer__info-list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer__info-list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer__info-list {
    gap: 3.2vw;
  }
}
.footer__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .footer__info-item {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer__info-item {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__info-item {
    gap: 1.0666666667vw;
  }
}
.footer__info-item-subtitle {
  color: var(--gray-lighter);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .footer__info-item-subtitle {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .footer__info-item-subtitle {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__info-item-subtitle {
    font-size: 2.9333333333vw;
  }
}
.footer__info-item-text {
  color: var(--gray-lighter);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer__info-item-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer__info-item-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__info-item-text {
    font-size: 3.4666666667vw;
  }
}
.footer__info-item-socials {
  margin-top: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .footer__info-item-socials {
    margin-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer__info-item-socials {
    margin-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__info-item-socials {
    margin-top: 1.0666666667vw;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 2.0833333333vw;
  border-top: solid var(--gray-darker);
  border-width: max(0.1041666667vw, 2px);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer__bottom {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .footer__bottom {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .footer__bottom {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .footer__bottom {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer__bottom {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .footer__bottom {
    padding-top: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .footer__bottom {
    flex-direction: column;
    padding-top: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer__bottom {
    padding-top: 8.5333333333vw;
  }
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .footer__copyright {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer__copyright {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__copyright {
    gap: 1.0666666667vw;
  }
}
.footer__company {
  color: var(--gray-lighter);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer__company {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer__company {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__company {
    font-size: 3.4666666667vw;
  }
}
.footer__inn {
  color: var(--gray-lighter);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .footer__inn {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer__inn {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__inn {
    font-size: 3.4666666667vw;
  }
}
.footer__studio {
  display: flex;
  flex-direction: row;
  margin-right: 2.3958333333vw;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer__studio {
    margin-right: 3.3674963397vw;
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer__studio {
    margin-right: 0;
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__studio {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.footer__studio a {
  width: fit-content;
}
.footer__made-in {
  width: 11.0416666667vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer__made-in {
    width: 15.5197657394vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer__made-in {
    width: 27.6041666667vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__made-in {
    width: 56.5333333333vw;
    height: 10.6666666667vw;
  }
}
.footer__made-in a {
  width: fit-content;
}
.footer__simflex {
  width: 5.9375vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer__simflex {
    width: 8.345534407vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer__simflex {
    width: 14.84375vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer__simflex {
    width: 30.4vw;
    height: 10.6666666667vw;
  }
}
.footer__simflex a {
  width: fit-content;
}
