/* 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-----------*/
/*----------GAP-----------*/
/*----------CENTER ELEMENT-----------*/
/*----------SPACING-----------*/
/*----------SCROLLBAR-----------*/
/*----------HARDWARE ACCELERATION (ONLY USE WHEN NEEDED)-----------*/
/*----------BREAKPOINTS-----------*/
/*----------GRAY-----------*/
/*----------COLOR1-----------*/
/*----------COLOR2-----------*/
/*----------GRADIENT-----------*/
/*----------BACKGROUND-----------*/
/*----------ERROR-----------*/
/*----------ALERT-----------*/
/*----------SUCCESS-----------*/
/*----------DISABLE-----------*/
/*----------TRANSPARENT-----------*/
/*----------SOCIALS-----------*/
/*----------UNIQUE-----------*/
/*----------HEADINGS-----------*/
/*----------BODY TEXT-----------*/
/*----------UNIQUE TEXT-----------*/
/* Reset Layer */
@layer reset {
  /* Box sizing rules
============================================= */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Reset margins and paddings
============================================= */
  * {
    margin: 0;
    padding: 0;
    outline: 0;
  }
  /* Document defaults
============================================= */
  :root {
    font-style: normal;
    font-optical-sizing: auto;
    font-synthesis: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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: 100vh;
  }
  body > :is(header, footer), section, article, main {
    container-type: inline-size;
  }
  /* Hide "tap" highlights on iOS and iPadOS for offending elements */
  a, details summary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  /* Typography reset
============================================= */
  p, li, figcaption {
    text-wrap: pretty;
  }
  body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote {
    margin: 0;
    font: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  i, em {
    font-style: italic;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  code, kbd, samp, pre {
    font-family: FiraCode, SFMono-Regular, Consolas, Liberation Mono, Menlo, Monaco, Courier, monospace;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-feature-settings: "ss01" off, "ss02" off, "ss03" off, "ss04" on, "ss05" off, "ss06" on, "ss07" off, "zero" off, "onum" off;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    min-width: 0;
  }
  small {
    font-size: 80%;
  }
  /* List reset
============================================= */
  ul[role="list"], ol[role="list"], li {
    list-style: none;
    padding: 0;
  }
  /* Anchor reset
============================================= */
  a {
    color: inherit;
    text-decoration: none;
  }
  a:active, a:hover {
    outline: 0;
  }
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  /* Table reset
============================================= */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Media elements reset
============================================= */
  img, picture, svg, audio, canvas, iframe, video {
    max-width: 100%;
    height: auto;
    display: block;
    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: "Geologica", Montserrat, Inter, Helvetica, sans-serif;
    --font-family-body: "Nunito Sans", 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);
    --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
    );
    --fancybox-zIndex: 1150;
    --swiper-pagination-bullet-horizontal-gap: 0.1041666667vw;
  }
  @media screen and (width <= 1401px) {
    :root {
      --swiper-pagination-bullet-horizontal-gap: 0.1464128843vw;
    }
  }
  @media screen and (width <= 811px) {
    :root {
      --swiper-pagination-bullet-horizontal-gap: 0.2604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    :root {
      --swiper-pagination-bullet-horizontal-gap: 0.4830917874vw;
    }
  }
  body {
    position: relative;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
  }
  @font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/InterVariable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/InterVariable-Italic.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Geologica";
    src: url("/assets/fonts/Geologica/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Nunito Sans";
    src: url("/assets/fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  :root {
    /*----------GRAY-----------*/
    --gray-black: #0D0D0D;
    --gray-darker: #262626;
    --gray-dark: #4D4D4D;
    --gray-medium: #919599;
    --gray-light: #DADFE5;
    --gray-lighter: #EDEEF0;
    --gray-white: #FFFFFF;
    --text-icon-gray-black: #0D0D0D;
    --text-icon-gray-darker: #262626;
    --text-icon-gray-dark: #616161;
    --text-icon-gray-medium: #919599;
    --text-icon-gray-light: #DADFE5;
    --text-icon-gray-lighter: #EDEEF0;
    --text-icon-gray-white: #FFFFFF;
    /*----------COLOR1-----------*/
    --color1-darker: #104FA6;
    --color1-dark: #1461CC;
    --color1-main: #1975F7;
    --color1-light: #63A1F7;
    --color1-lighter: #D2E2F7;
    --text-icon-color1-darker: #104FA6;
    --text-icon-color1-dark: #1461CC;
    --text-icon-color1-main: #1975F7;
    --text-icon-color1-light: #63A1F7;
    --text-icon-color1-lighter: #D2E2F7;
    /*----------COLOR2-----------*/
    --color2-darker: #38388C;
    --color2-dark: #E5A21C;
    --color2-main: #FEBC39;
    --color2-light: #9191F2;
    --color2-lighter: #E5E5FF;
    --text-icon-color2-darker: #38388C;
    --text-icon-color2-dark: #E5A21C;
    --text-icon-color2-main: #FEBC39;
    --text-icon-color2-light: #9191F2;
    --text-icon-color2-lighter: #E5E5FF;
    /*----------GRADIENT-----------*/
    --gradient1-dark: linear-gradient(67.23deg, #0D0D0D 1.31%, #003073 100%);
    --gradient1-main: linear-gradient(90deg, #004099 0%, #0DAEFF 100%);
    --gradient1-light: linear-gradient(90deg, #4DC3FF 0%, #3388FF 100%);
    --gradient1-gold: linear-gradient(90deg, #BB861F 0%, #D0A437 15.02%, #EDCC68 29.76%, #FBE487 40.97%, #FEF1A2 50%, #FCE891 57.78%, #EECD69 76.36%, #D2A73F 90.07%, #B58212 100%);
    --gradient1-silver: linear-gradient(90deg, #929399 0%, #A8A9AF 15.05%, #BFBEC6 41.89%, #F0F2FA 55.28%, #DDDEE6 72.01%, #D7D8E0 90.65%, #C2BFC7 100%);
    --text-icon-gradient1-dark: linear-gradient(67.23deg, #0D0D0D 1.31%, #003073 100%);
    --text-icon-gradient1-main: linear-gradient(90deg, #004099 0%, #0DAEFF 100%);
    --text-icon-gradient1-light: linear-gradient(90deg, #4DC3FF 0%, #3388FF 100%);
    --text-icon-gold: linear-gradient(90deg, #BB861F 0%, #D0A437 15.02%, #EDCC68 29.76%, #FBE487 40.97%, #FEF1A2 50%, #FCE891 57.78%, #EECD69 76.36%, #D2A73F 90.07%, #B58212 100%);
    --text-icon-silver: linear-gradient(90deg, #929399 0%, #A8A9AF 15.05%, #BFBEC6 41.89%, #F0F2FA 55.28%, #DDDEE6 72.01%, #D7D8E0 90.65%, #C2BFC7 100%);
    /*----------BACKGROUND-----------*/
    --bg-light: #FFFFFF;
    --bg-dark: #262626;
    --bg-gradient: linear-gradient(90deg, #D9F2FF 0%, #B6D4F2 100%);
    /*----------ERROR-----------*/
    --error-dark: #CC2929;
    --error-medium: #FFA6A6;
    --error-light: #FFCCCC;
    /*----------ALERT-----------*/
    --alert-dark: #737300;
    --alert-medium: #D9D998;
    --alert-light: #F2F2AA;
    /*----------SUCCESS-----------*/
    --success-dark: #0E8C0E;
    --success-medium: #98D998;
    --success-light: #C3E5C3;
    /*----------DISABLE-----------*/
    --disable-dark: #343434;
    --disable-medium: #919599;
    --disable-light: #DFE4EB;
    /*----------TRANSPARENT-----------*/
    --transparent: transparent;
    /*----------SOCIALS-----------*/
    --socials-in: radial-gradient(230.93% 230.93% at 102.01% 2.03%, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 60%, #1B2AF0 83%, #002AFF 88%);
    --socials-wt: #48C95F;
    --socials-tg: #27A6E5;
    --socials-vk: #0077FF;
    --socials-ya: #FC3F1D;
    /*----------UNIQUE-----------*/
    --uniq-dark: #332E31;
    --uniq-green: #1F6739;
    --uniq-blue: #515ECC;
    --uniq-violet: #7D31DE;
    --uniq-purple: #C279A3;
    --uniq-pink: #F9AFCA;
    --uniq-red: #E34530;
    --uniq-orange: #E57A45;
    --uniq-gold: #D9BA21;
    --uniq-light: #D9D9D7;
    --uniq-pink-light: #EEE8F5;
    --uniq-pink-main: #E0CEF2;
    --uniq-pink-dark: #BF9DE0;
    --uniq-purple-light: #E2E5F4;
    --uniq-purple-main: #D5DBF2;
    --uniq-purple-dark: #9DA5E0;
  }
  :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: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .container {
      margin-inline: 3.8647342995vw;
    }
  }
  .wrapper {
    padding-inline: 13.0208333333vw;
  }
  @media screen and (width <= 1401px) {
    .wrapper {
      padding-inline: 3.2942898975vw;
    }
  }
  @media screen and (width <= 811px) {
    .wrapper {
      padding-inline: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .wrapper {
      padding-inline: 3.8647342995vw;
    }
  }
  .info-container {
    width: 36.4583333333vw;
  }
  @media screen and (width <= 1401px) {
    .info-container {
      width: 45.9736456808vw;
    }
  }
  @media screen and (width <= 811px) {
    .info-container {
      width: 62.5vw;
    }
  }
  @media screen and (width <= 481px) {
    .info-container {
      width: 169.0821256039vw;
    }
  }
  @media screen and (width <= 481px) {
    .info-container {
      width: 100%;
    }
  }
  .hidden {
    display: none !important;
  }
  .blur {
    filter: blur(0.390625vw);
    pointer-events: none;
  }
  @media screen and (width <= 1401px) {
    .blur {
      filter: blur(0.5490483163vw);
    }
  }
  @media screen and (width <= 811px) {
    .blur {
      filter: blur(0.9765625vw);
    }
  }
  @media screen and (width <= 481px) {
    .blur {
      filter: blur(1.8115942029vw);
    }
  }
  .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: 0.9661835749vw;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .underline:hover {
      color: var(--color1-main);
    }
  }
  .underline:active {
    color: var(--color1-darker);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .w-full {
    width: 100% !important;
  }
  .w-fit {
    width: fit-content !important;
  }
  .h-full {
    height: 100% !important;
  }
  .h-fit {
    height: fit-content !important;
  }
  .content {
    color: var(--text-icon-gray-dark);
    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: 3.8647342995vw;
    }
  }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    text-transform: uppercase;
    color: var(--text-icon-gray-darker);
    padding-top: 1.0416666667vw;
    padding-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-top: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-top: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-top: 3.8647342995vw;
    }
  }
  @media screen and (width <= 1401px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-bottom: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
      padding-bottom: 3.8647342995vw;
    }
  }
  .content h1 {
    font-size: 2.5vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1401px) {
    .content h1 {
      font-size: 3.513909224vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h1 {
      font-size: 5.46875vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h1 {
      font-size: 10.1449275362vw;
    }
  }
  .content h2 {
    font-size: 1.875vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
  @media screen and (width <= 1401px) {
    .content h2 {
      font-size: 2.635431918vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h2 {
      font-size: 3.6458333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h2 {
      font-size: 6.7632850242vw;
    }
  }
  .content h3 {
    font-size: 1.4583333333vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }
  @media screen and (width <= 1401px) {
    .content h3 {
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h3 {
      font-size: 3.125vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h3 {
      font-size: 5.7971014493vw;
    }
  }
  .content h4 {
    font-size: 1.25vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
  @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: 4.8309178744vw;
    }
  }
  .content h5 {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
  @media screen and (width <= 1401px) {
    .content h5 {
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h5 {
      font-size: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h5 {
      font-size: 4.8309178744vw;
    }
  }
  .content h6 {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
  @media screen and (width <= 1401px) {
    .content h6 {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (width <= 811px) {
    .content h6 {
      font-size: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content h6 {
      font-size: 3.8647342995vw;
    }
  }
  .content p {
    padding-bottom: 1.0416666667vw;
  }
  @media screen and (width <= 1401px) {
    .content p {
      padding-bottom: 1.4641288433vw;
    }
  }
  @media screen and (width <= 811px) {
    .content p {
      padding-bottom: 2.6041666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content p {
      padding-bottom: 4.8309178744vw;
    }
  }
  .content p:last-child {
    padding-bottom: 0;
  }
  .content a {
    text-decoration: none;
    color: var(--color1-main);
    transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media (hover: hover) and (pointer: fine) {
    .content a:hover {
      color: var(--color1-dark);
    }
  }
  .content a:active {
    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: 3.8647342995vw;
    }
  }
  @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: 4.8309178744vw;
    }
  }
  .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: 2.8985507246vw;
    }
  }
  .content ol li {
    list-style: decimal;
    line-height: 165%;
  }
  .content img, .content video, .content iframe {
    z-index: 10;
    width: 100%;
    object-fit: cover;
    user-select: none;
    overflow: hidden;
    border-radius: 2.0833333333vw;
  }
  @media screen and (width <= 1401px) {
    .content img, .content video, .content iframe {
      border-radius: 2.9282576867vw;
    }
  }
  @media screen and (width <= 811px) {
    .content img, .content video, .content iframe {
      border-radius: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content img, .content video, .content iframe {
      border-radius: 9.6618357488vw;
    }
  }
  .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: 46.8599033816vw;
    }
  }
  .content table {
    width: 100%;
    text-align: left;
    margin-bottom: 2.0833333333vw;
    border-spacing: 0.1041666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table {
      border-spacing: 0.1464128843vw;
      margin-bottom: 2.9282576867vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table {
      border-spacing: 0.2604166667vw;
      margin-bottom: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table {
      border-spacing: 0.4830917874vw;
      margin-bottom: 9.6618357488vw;
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
  .content table th {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
    color: var(--gray-black);
    background-color: var(--gray-darker);
  }
  @media screen and (width <= 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.1400966184vw;
    }
  }
  .content table th:first-child {
    border-top-left-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table th:first-child {
      border-top-left-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:first-child {
      border-top-left-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:first-child {
      border-top-left-radius: 1.9323671498vw;
    }
  }
  .content table th:last-child {
    border-top-right-radius: 0.4166666667vw;
  }
  @media screen and (width <= 1401px) {
    .content table th:last-child {
      border-top-right-radius: 0.5856515373vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th:last-child {
      border-top-right-radius: 1.0416666667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th:last-child {
      border-top-right-radius: 1.9323671498vw;
    }
  }
  .content table tr:last-child td {
    border: none !important;
  }
  .content table th, .content table td {
    padding: 0.4166666667vw 0.625vw;
    border-bottom: 0.1041666667vw solid var(--gray-lighter);
  }
  .content table th > p, .content table td > p {
    width: auto !important;
  }
  @media screen and (width <= 1401px) {
    .content table th, .content table td {
      padding: 0.5856515373vw 0.878477306vw;
      border-width: 0.1464128843vw;
    }
  }
  @media screen and (width <= 811px) {
    .content table th, .content table td {
      padding: 1.0416666667vw 1.5625vw;
      border-width: 0.2604166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .content table th, .content table td {
      padding: 1.9323671498vw 2.8985507246vw;
      border-width: 0.4830917874vw;
    }
  }
  .content table td {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-color: var(--gray-white);
    color: var(--Gray-Dark);
  }
  @media screen and (width <= 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.1400966184vw;
    }
  }
  .modal-overlay {
    z-index: 900;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(0.2083333333vw);
    opacity: 0;
    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);
  }
  @media screen and (width <= 1401px) {
    .modal-overlay {
      backdrop-filter: blur(0.2928257687vw);
    }
  }
  @media screen and (width <= 811px) {
    .modal-overlay {
      backdrop-filter: blur(0.5208333333vw);
    }
  }
  @media screen and (width <= 481px) {
    .modal-overlay {
      backdrop-filter: blur(0.9661835749vw);
    }
  }
  .modal-overlay.active {
    opacity: 1;
  }
}
/* Component Library */
@layer components {
  /*----------FADE IN-----------*/
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /*----------SLIDE IN-----------*/
  @keyframes slideIn {
    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);
    }
  }
  /*----------ROTATE-----------*/
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  /*----------SHAKE-----------*/
  @keyframes shake {
    10%, 90% {
      transform: translateX(-1px);
    }
    20%, 80% {
      transform: translateX(2px);
    }
    30%, 50%, 70% {
      transform: translateX(-4px);
    }
    40%, 60% {
      transform: translateX(4px);
    }
  }
  /*----------FLIP-----------*/
  @keyframes flip {
    0% {
      transform: perspective(400px) rotateY(0);
    }
    100% {
      transform: perspective(400px) rotateY(360deg);
    }
  }
  /*----------SWING-----------*/
  @keyframes swing {
    20% {
      transform: rotate(15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    60% {
      transform: rotate(5deg);
    }
    80% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* Component imports */
}
/* Override Layer - for project-specific modifications */
@layer overrides {
  /* Project-specific overrides */
}
/* Development/Temporary Fixes */
.section {
  padding-top: 4.1666666667vw;
  padding-bottom: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .section {
    padding-top: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .section {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .section {
    padding-top: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .section {
    padding-bottom: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .section {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .section {
    padding-bottom: 9.6618357488vw;
  }
}
.section-title {
  text-transform: uppercase;
  color: var(--text-icon-gray-black);
  font-size: 1.875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .section-title {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .section-title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .section-title {
    font-size: 6.7632850242vw;
  }
}
.section-title span {
  color: var(--color1-dark);
}
.swiper-slide {
  user-select: none;
}
.catalog-categories {
  padding-bottom: 3.125vw;
}
@media screen and (width <= 1401px) {
  .catalog-categories {
    padding-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .catalog-categories {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .catalog-categories {
    padding-bottom: 9.6618357488vw;
  }
}
.member_zero {
  color: var(--gray-medium) !important;
}
.suggestions-wrapper {
  margin-top: -0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .suggestions-wrapper {
    margin-top: -0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-wrapper {
    margin-top: -0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-wrapper {
    margin-top: -0.4830917874vw;
  }
}
.suggestions-suggestion {
  overflow: hidden;
  cursor: pointer;
  touch-action: manipulation;
  background: transparent;
  color: var(--gray-darker);
  min-height: 2.0833333333vw;
  padding: 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) {
  .suggestions-suggestion {
    min-height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion {
    min-height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion {
    min-height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion {
    padding: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion {
    border-radius: 1.9323671498vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .suggestions-suggestion:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.suggestions-suggestion:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.suggestions-suggestion.active {
  cursor: default;
  background: var(--gray-lighter);
  color: var(--gray-black);
}
.suggestions-suggestion:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.suggestions-suggestion + .suggestions-suggestion {
  margin-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion + .suggestions-suggestion {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion + .suggestions-suggestion {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion + .suggestions-suggestion {
    margin-top: 2.8985507246vw;
  }
}
.suggestions-suggestions {
  border: solid var(--gray-light);
  background: var(--gray-white);
  padding: 0.5208333333vw;
  border-width: max(0.1041666667vw, 2px);
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .suggestions-suggestions {
    padding: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestions {
    padding: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestions {
    padding: 2.4154589372vw;
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestions {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestions {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestions {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestions {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestions {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestions {
    border-radius: 1.9323671498vw;
  }
}
.suggestions-suggestions strong {
  font-weight: bold;
  color: var(--color1-main);
}
.suggestions-suggestion .suggestions-value {
  padding-block: 0.1041666667vw;
  padding-inline: 0.2083333333vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion .suggestions-value {
    padding-block: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion .suggestions-value {
    padding-block: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion .suggestions-value {
    padding-block: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion .suggestions-value {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion .suggestions-value {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion .suggestions-value {
    padding-inline: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .suggestions-suggestion .suggestions-value {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .suggestions-suggestion .suggestions-value {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .suggestions-suggestion .suggestions-value {
    font-size: 3.1400966184vw;
  }
}
.header {
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gray-white);
}
.header.sticky .header-container:after {
  opacity: 1;
}
@media screen and (width <= 811px) {
  .header .container {
    margin-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header .container {
    margin-inline: 1.9323671498vw;
  }
}
.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625vw;
  padding-top: 0.625vw;
  padding-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    padding-top: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    padding-bottom: 1.9323671498vw;
  }
}
.header-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-lighter);
  opacity: 0;
  height: 0.1041666667vw;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .header-container::after {
    height: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .header-container::after {
    height: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container::after {
    height: 0.4830917874vw;
  }
}
@media screen and (width <= 811px) {
  .header-container::after {
    opacity: 1;
  }
}
@media screen and (width <= 811px) {
  .header-container_desktop {
    display: none;
  }
}
.header-container_mobile {
  display: none;
}
@media screen and (width <= 811px) {
  .header-container_mobile {
    display: flex;
  }
}
.header_left {
  display: flex;
  align-items: center;
  gap: 1.25vw;
  padding-left: 0.1041666667vw;
  padding-right: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header_left {
    gap: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .header_left {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header_left {
    gap: 5.7971014493vw;
  }
}
@media screen and (width <= 1401px) {
  .header_left {
    padding-left: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .header_left {
    padding-left: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .header_left {
    padding-left: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .header_left {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header_left {
    padding-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header_left {
    padding-right: 1.9323671498vw;
  }
}
@media screen and (width <= 481px) {
  .header_left {
    padding: unset;
  }
}
.header_left-mobile {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header_left-mobile {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header_left-mobile {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header_left-mobile {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 481px) {
  .header_left-mobile .btn.btn-size_m {
    height: 9.6618357488vw;
    width: 9.6618357488vw;
  }
}
.header-title {
  flex: 1;
  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) {
  .header-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .header-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-title {
    font-size: 3.8647342995vw;
  }
}
.header-catalog .btn__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .header-catalog .btn__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .header-catalog .btn__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .header-catalog .btn__text {
    font-size: 3.1400966184vw;
  }
}
.header_right {
  display: flex;
  align-items: center;
}
@media screen and (width <= 811px) {
  .header_right {
    justify-content: flex-end;
  }
}
@media screen and (width <= 481px) {
  .header_right .btn.header-search {
    height: 9.6618357488vw;
    width: 9.6618357488vw;
  }
}
.header-control {
  min-width: 4.7916666667vw;
}
@media screen and (width <= 1401px) {
  .header-control {
    min-width: 6.7349926794vw;
  }
}
@media screen and (width <= 811px) {
  .header-control {
    min-width: 11.9791666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-control {
    min-width: 16.9082125604vw;
  }
}
@media screen and (width <= 481px) {
  .header-control .btn-menu__text {
    display: none;
  }
}
.header-menu, .header-cb, .header-socials {
  display: flex;
  align-items: center;
}
.header_bottom {
  background: var(--gray-white);
}
@media screen and (width <= 811px) {
  .header_bottom {
    display: none;
  }
}
.header_bottom-container {
  display: flex;
  align-items: center;
  background: var(--gray-lighter);
  padding: 0.4166666667vw;
  border-radius: 0.625vw;
  gap: 1.25vw;
}
@media screen and (width <= 1401px) {
  .header_bottom-container {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header_bottom-container {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header_bottom-container {
    padding: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .header_bottom-container {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header_bottom-container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header_bottom-container {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .header_bottom-container {
    gap: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .header_bottom-container {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .header_bottom-container {
    gap: 5.7971014493vw;
  }
}
.header-menu {
  flex: 1;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .header-menu {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .header-menu {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-menu {
    gap: 4.8309178744vw;
  }
}
.header-cb {
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .header-cb {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-cb {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header-cb {
    gap: 2.8985507246vw;
  }
}
.header-socials {
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header-socials {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-socials {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-socials {
    gap: 1.9323671498vw;
  }
}
.logo {
  position: relative;
  display: flex;
  overflow: hidden;
  touch-action: manipulation;
  width: 10vw;
  height: 2.5vw;
}
@media screen and (width <= 1401px) {
  .logo {
    width: 14.055636896vw;
  }
}
@media screen and (width <= 811px) {
  .logo {
    width: 25vw;
  }
}
@media screen and (width <= 481px) {
  .logo {
    width: 46.3768115942vw;
  }
}
@media screen and (width <= 1401px) {
  .logo {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .logo {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .logo {
    height: 11.5942028986vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .logo:not(.logo-index):hover .logo-icon {
    top: -100%;
  }
  .logo:not(.logo-index):hover .logo-btn {
    top: 0;
  }
  .logo:not(.logo-index):active .logo-icon {
    top: -100%;
  }
  .logo:not(.logo-index):active .logo-btn {
    top: 0;
  }
}
.logo-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 2.5vw;
  transition: top 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .logo-icon {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .logo-icon {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .logo-icon {
    height: 11.5942028986vw;
  }
}
.logo-icon__img, .logo-icon__img img {
  width: 100%;
  height: 100%;
}
.logo-btn {
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: center;
  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);
}
.btn {
  /*----------CORE STYLE-----------*/
  position: relative;
  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);
  /*============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.4830917874vw, 2px);
  }
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__icon svg {
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.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__badge {
  flex-shrink: 0;
}
.btn.loading .btn__loader {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
}
.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: 3.8647342995vw;
  }
}
@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: 1.9323671498vw;
  }
}
.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: 3.8647342995vw;
  }
}
@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: 1.9323671498vw;
  }
}
.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.1400966184vw;
  }
}
@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: 1.9323671498vw;
  }
}
.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.1400966184vw;
  }
}
@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: 1.9323671498vw;
  }
}
.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-black);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gray:hover {
    background: var(--gray-dark);
  }
}
.btn-gray:active {
  background: var(--gray-darker);
}
.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-outline {
  background: transparent;
  color: var(--gray-darker);
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--color1-light);
    color: var(--gray-white);
    border-color: var(--color1-light);
  }
}
.btn-outline:active {
  background: var(--color1-dark);
  color: var(--gray-white);
  border-color: var(--color1-dark);
}
.btn-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.btn-monochrome {
  border-color: var(--gray-light);
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-monochrome:hover {
    border-color: var(--gray-light);
    background: var(--gray-light);
    color: var(--color1-dark);
  }
}
.btn-monochrome:active {
  border-color: var(--color1-lighter);
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-monochrome:disabled {
  cursor: not-allowed;
  border-color: var(--gray-medium);
  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-white {
  background: var(--gray-white);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-white:hover {
    background: var(--gray-light);
    color: var(--gray-darker);
  }
}
.btn-white:active {
  background: var(--gray-madium);
  color: var(--gray-darker);
}
.btn-white:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-size_l {
  height: 2.9166666667vw;
  padding-inline: 1.25vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    height: 13.5265700483vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    padding-inline: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    padding-inline: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    padding-inline: 5.7971014493vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    gap: 2.8985507246vw;
  }
}
.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: 4.8309178744vw;
  }
}
.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: 4.8309178744vw;
  }
}
.btn-size_l:has(.btn__icon_center) {
  flex-shrink: 0;
  padding: unset;
  width: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l:has(.btn__icon_center) {
    width: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l:has(.btn__icon_center) {
    width: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_center) {
    width: 13.5265700483vw;
  }
}
.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: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.btn-size_m {
  height: 2.5vw;
  padding-inline: 1.0416666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    padding-inline: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    gap: 1.9323671498vw;
  }
}
.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: 3.8647342995vw;
  }
}
.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: 3.8647342995vw;
  }
}
.btn-size_m:has(.btn__icon_center) {
  flex-shrink: 0;
  padding: unset;
  width: 2.5vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_center) {
    width: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m:has(.btn__icon_center) {
    width: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_center) {
    width: 11.5942028986vw;
  }
}
.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: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.btn-size_s {
  height: 2.0833333333vw;
  padding-inline: 0.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    gap: 1.9323671498vw;
  }
}
.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: 2.8985507246vw;
  }
}
.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: 2.8985507246vw;
  }
}
.btn-size_s:has(.btn__icon_center) {
  flex-shrink: 0;
  padding: unset;
  width: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s:has(.btn__icon_center) {
    width: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s:has(.btn__icon_center) {
    width: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_center) {
    width: 9.6618357488vw;
  }
}
.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: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.btn-size_xs {
  height: 1.6666666667vw;
  padding-inline: 0.625vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    height: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    gap: 0.9661835749vw;
  }
}
.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: 1.9323671498vw;
  }
}
.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: 1.9323671498vw;
  }
}
.btn-size_xs:has(.btn__icon_center) {
  flex-shrink: 0;
  padding: unset;
  width: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs:has(.btn__icon_center) {
    width: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs:has(.btn__icon_center) {
    width: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_center) {
    width: 7.729468599vw;
  }
}
.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: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.btn-theme_dark.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-primary:hover {
    background: var(--color1-light);
  }
}
.btn-theme_dark.btn-primary:active {
  background: var(--color1-dark);
}
.btn-theme_dark.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-accent {
  background: var(--color2-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-accent:hover {
    background: var(--color2-main);
  }
}
.btn-theme_dark.btn-accent:active {
  background: var(--color2-darker);
}
.btn-theme_dark.btn-accent:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-secondary {
  background: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-secondary:hover {
    background: var(--gray-medium);
  }
}
.btn-theme_dark.btn-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
}
.btn-theme_dark.btn-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-theme_dark.btn-gray {
  background: var(--gray-white);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-gray:hover {
    background: var(--gray-light);
  }
}
.btn-theme_dark.btn-gray:active {
  background: var(--gray-medium);
}
.btn-theme_dark.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-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-tpl_desktop {
  position: relative;
  flex: 1;
}
.search-tpl_mobile {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  display: none;
  width: 100%;
  height: 100vh;
  background: var(--gray-white);
  opacity: 0;
  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);
}
.search-tpl_mobile.active {
  opacity: 1;
  transform: translateX(0);
}
.search-tpl_mobile .search-tpl__container {
  display: flex;
  flex-direction: column;
  height: inherit;
}
.search-tpl_mobile .search-tpl__header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.4166666667vw;
  padding: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-tpl_mobile .search-tpl__header {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-tpl_mobile .search-tpl__header {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-tpl_mobile .search-tpl__header {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .search-tpl_mobile .search-tpl__header {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-tpl_mobile .search-tpl__header {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-tpl_mobile .search-tpl__header {
    padding: 1.9323671498vw;
  }
}
.search-tpl_mobile .search-tpl__header:after {
  content: "";
  position: absolute;
  bottom: 0;
  background: var(--gray-lighter);
  left: 0.4166666667vw;
  right: 0.4166666667vw;
  height: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .search-tpl_mobile .search-tpl__header:after {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-tpl_mobile .search-tpl__header:after {
    left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-tpl_mobile .search-tpl__header:after {
    left: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .search-tpl_mobile .search-tpl__header:after {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-tpl_mobile .search-tpl__header:after {
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-tpl_mobile .search-tpl__header:after {
    right: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .search-tpl_mobile .search-tpl__header:after {
    height: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .search-tpl_mobile .search-tpl__header:after {
    height: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .search-tpl_mobile .search-tpl__header:after {
    height: 0.4830917874vw;
  }
}
.search-overlay {
  z-index: calc(99);
  top: 3.75vw;
}
@media screen and (width <= 1401px) {
  .search-overlay {
    top: 5.270863836vw;
  }
}
@media screen and (width <= 811px) {
  .search-overlay {
    top: 9.375vw;
  }
}
@media screen and (width <= 481px) {
  .search-overlay {
    top: 17.3913043478vw;
  }
}
.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-input {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-input {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-input {
    gap: 1.9323671498vw;
  }
}
.search-input__field {
  flex: 1;
}
.search-input__btn {
  flex-shrink: 0;
}
.input-main {
  /*----------CORE STYLE-----------*/
  /*----------LABEL POSITION-----------*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
.input-main__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.input-main__inner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-main__input-container {
  position: relative;
  width: 100%;
}
.input-main__icon, .input-main__reset {
  top: 50%;
  transform: translateY(-50%);
}
.input-main__icon {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .input-main__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.input-main__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);
}
.input-main__reset-icon {
  color: var(--gray-light);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .input-main__reset-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__reset-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__reset-icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.input-main__label {
  color: var(--gray-medium);
  flex-shrink: 0;
  margin-bottom: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .input-main__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__label {
    margin-bottom: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__label {
    font-size: 2.6570048309vw;
  }
}
.input-main__label.invalid {
  color: var(--error-dark);
}
.input-main__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) {
  .input-main__field {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .input-main__field {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .input-main__field {
    border-width: max(0.4830917874vw, 2px);
  }
}
.input-main__field:focus {
  outline: none;
}
.input-main__field:disabled {
  cursor: not-allowed;
}
.input-main__field:disabled, .input-main__field:read-only {
  border-color: var(--disable-light) !important;
  color: var(--text-icon-gray-medium) !important;
  background: var(--disable-light) !important;
}
.input-main__field:disabled + .input-main__icon, .input-main__field:read-only + .input-main__icon {
  color: var(--text-icon-gray-medium) !important;
}
.input-main__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) {
  .input-main__error-message {
    margin-top: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__error-message {
    margin-top: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__error-message {
    margin-top: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main__error-message {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-main__error-message {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main__error-message {
    font-size: 2.6570048309vw;
  }
}
.input-main-pos_standard.input-main__label {
  display: block;
  color: var(--gray-medium);
  order: -1;
  margin-bottom: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .input-main-pos_standard.input-main__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-pos_standard.input-main__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-pos_standard.input-main__label {
    margin-bottom: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-pos_standard.input-main__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-pos_standard.input-main__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-pos_standard.input-main__label {
    font-size: 2.6570048309vw;
  }
}
.input-main-pos_standard.input-main__wrapper {
  display: flex;
  flex-direction: column;
}
.input-main-pos_hidden.input-main__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.input-main-style_filled .input-main__field {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .input-main-style_filled .input-main__field:hover {
    border-color: var(--gray-light);
  }
}
.input-main-style_filled .input-main__field:focus {
  background: var(--gray-white);
  border-color: var(--gray-light);
}
.input-main-style_filled .input-main__field::placeholder {
  color: var(--gray-medium);
}
.input-main-style_filled .input-main__icon {
  color: var(--gray-light);
}
.input-main-style_filled .input-main__reset-icon {
  color: var(--gray-light);
}
.input-main-style_outline .input-main__field {
  background: var(--gray-white);
  border-color: var(--gray-light);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .input-main-style_outline .input-main__field:hover {
    border-color: var(--color1-light);
  }
}
.input-main-style_outline .input-main__field:focus {
  border-color: var(--color1-main);
}
.input-main-style_outline .input-main__field::placeholder {
  color: var(--gray-medium);
}
.input-main-style_outline .input-main__icon {
  color: var(--gray-light);
}
.input-main-style_outline .input-main__reset-icon {
  color: var(--gray-light);
}
.input-main-style_underline .input-main__field {
  background: transparent;
  border-bottom-color: var(--gray-light);
  color: var(--gray-darker);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .input-main-style_underline .input-main__field:hover {
    border-bottom-color: var(--color1-light);
  }
}
.input-main-style_underline .input-main__field:focus {
  border-bottom-color: var(--color1-main);
}
.input-main-style_underline .input-main__field::placeholder {
  color: var(--gray-medium);
}
.input-main-style_underline .input-main__icon {
  color: var(--gray-light);
}
.input-main-style_underline .input-main__reset-icon {
  color: var(--gray-light);
}
.input-main-size_l .input-main__icon {
  left: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__icon {
    left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__icon {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__icon {
    left: 3.8647342995vw;
  }
}
.input-main-size_l .input-main__reset {
  right: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__reset {
    right: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__reset {
    right: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__reset {
    right: 3.8647342995vw;
  }
}
.input-main-size_l .input-main__input-container:has(.input-main__icon) .input-main__field {
  padding-left: 2.5vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 11.5942028986vw;
  }
}
.input-main-size_l .input-main__input-container:has(.input-main__reset) .input-main__field {
  padding-right: 2.5vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 11.5942028986vw;
  }
}
.input-main-size_l .input-main__field {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__field {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__field {
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__field {
    height: 13.5265700483vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__field {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__field {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__field {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__field {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_l .input-main__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_l .input-main__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_l .input-main__field {
    font-size: 3.8647342995vw;
  }
}
.input-main-size_m .input-main__icon {
  left: 0.625vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__icon {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__icon {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__icon {
    left: 2.8985507246vw;
  }
}
.input-main-size_m .input-main__reset {
  right: 0.625vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__reset {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__reset {
    right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__reset {
    right: 2.8985507246vw;
  }
}
.input-main-size_m .input-main__input-container:has(.input-main__icon) .input-main__field {
  padding-left: 2.2916666667vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 10.6280193237vw;
  }
}
.input-main-size_m .input-main__input-container:has(.input-main__reset) .input-main__field {
  padding-right: 2.2916666667vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 10.6280193237vw;
  }
}
.input-main-size_m .input-main__field {
  height: 2.5vw;
  padding-inline: 0.8333333333vw;
  border-radius: 0.4166666667vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__field {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__field {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__field {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__field {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__field {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__field {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__field {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_m .input-main__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_m .input-main__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_m .input-main__field {
    font-size: 3.8647342995vw;
  }
}
.input-main-size_s .input-main__icon {
  left: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__icon {
    left: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__icon {
    left: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__icon {
    left: 2.4154589372vw;
  }
}
.input-main-size_s .input-main__reset {
  right: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__reset {
    right: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__reset {
    right: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__reset {
    right: 2.4154589372vw;
  }
}
.input-main-size_s .input-main__input-container:has(.input-main__icon) .input-main__field {
  padding-left: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 9.6618357488vw;
  }
}
.input-main-size_s .input-main__input-container:has(.input-main__reset) .input-main__field {
  padding-right: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 9.6618357488vw;
  }
}
.input-main-size_s .input-main__field {
  height: 2.0833333333vw;
  padding-inline: 0.625vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__field {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__field {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__field {
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__field {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__field {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__field {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__field {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_s .input-main__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_s .input-main__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_s .input-main__field {
    font-size: 3.8647342995vw;
  }
}
.input-main-size_xs .input-main__icon {
  left: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__icon {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__icon {
    left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__icon {
    left: 1.9323671498vw;
  }
}
.input-main-size_xs .input-main__reset {
  right: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__reset {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__reset {
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__reset {
    right: 1.9323671498vw;
  }
}
.input-main-size_xs .input-main__input-container:has(.input-main__icon) .input-main__field {
  padding-left: 1.875vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__icon) .input-main__field {
    padding-left: 8.6956521739vw;
  }
}
.input-main-size_xs .input-main__input-container:has(.input-main__reset) .input-main__field {
  padding-right: 1.875vw;
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__input-container:has(.input-main__reset) .input-main__field {
    padding-right: 8.6956521739vw;
  }
}
.input-main-size_xs .input-main__field {
  height: 1.6666666667vw;
  padding-inline: 0.625vw;
  border-radius: 0.4166666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__field {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__field {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__field {
    height: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__field {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__field {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__field {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__field {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .input-main-size_xs .input-main__field {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .input-main-size_xs .input-main__field {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .input-main-size_xs .input-main__field {
    font-size: 3.1400966184vw;
  }
}
.input-main-theme_dark .input-main__label {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_filled .input-main__field {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .input-main-theme_dark.input-main-style_filled .input-main__field:hover {
    border-color: var(--gray-medium);
  }
}
.input-main-theme_dark.input-main-style_filled .input-main__field:focus {
  background: var(--gray-black);
  border-color: var(--gray-medium);
}
.input-main-theme_dark.input-main-style_filled .input-main__field::placeholder {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_filled .input-main__icon {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_filled .input-main__reset-icon {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_outline .input-main__field {
  background: var(--gray-black);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .input-main-theme_dark.input-main-style_outline .input-main__field:hover {
    border-color: var(--color1-darker);
  }
}
.input-main-theme_dark.input-main-style_outline .input-main__field:focus {
  border-color: var(--color1-main);
}
.input-main-theme_dark.input-main-style_outline .input-main__field::placeholder {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_outline .input-main__icon {
  color: var(--gray-medium);
}
.input-main-theme_dark.input-main-style_outline .input-main__reset-icon {
  color: var(--gray-medium);
}
.input-main-theme_dark.input-main-style_underline.input-main__field {
  background: transparent;
  border-bottom-color: var(--gray-dark);
  color: var(--gray-white);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .input-main-theme_dark.input-main-style_underline.input-main__field:hover {
    border-bottom-color: var(--color1-darker);
  }
}
.input-main-theme_dark.input-main-style_underline.input-main__field:focus {
  border-bottom-color: var(--color1-main);
}
.input-main-theme_dark.input-main-style_underline.input-main__field::placeholder {
  color: var(--gray-light);
}
.input-main-theme_dark.input-main-style_underline.input-main__icon {
  color: var(--gray-medium);
}
.input-main-theme_dark.input-main-style_underline.input-main__reset-icon {
  color: var(--gray-medium);
}
/* Show reset button when input has value */
.input-main__field:not(:placeholder-shown) ~ .input-main__reset, .input-main__field.has-value ~ .input-main__reset {
  pointer-events: auto;
  opacity: 1;
}
.search-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--gray-white);
  gap: 1.0416666667vw;
  padding: 0.625vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-list {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .search-list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-list {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-list {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-list {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-list {
    padding: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-list {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-list {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-list {
    border-radius: 1.9323671498vw;
  }
}
.search-list__container {
  overflow-y: auto;
}
.search-list__text {
  color: var(--text-icon-gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .search-list__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__text {
    font-size: 3.8647342995vw;
  }
}
.search-list__block {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .search-list__block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__block {
    gap: 2.8985507246vw;
  }
}
.search-list__block:not([style*="display: none"]) + .search-list__block {
  border-top: solid var(--gray-lighter);
  padding-top: 0.625vw;
  margin-top: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    padding-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    margin-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .search-list__block:not([style*="display: none"]) + .search-list__block {
    border-width: max(0.4830917874vw, 2px);
  }
}
.search-list__title {
  text-transform: uppercase;
  color: var(--text-icon-gray-medium);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .search-list__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__title {
    font-size: 4.8309178744vw;
  }
}
.search-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .search-list__items {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-list__items {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-list__items {
    gap: 0.9661835749vw;
  }
}
.search-list__btn {
  flex-shrink: 0;
}
.search-list_desktop {
  z-index: 100;
  position: absolute;
  top: calc(100% + 0.625vw);
}
.search-list_desktop .search-list__container {
  max-height: 50dvh;
}
.search-list_mobile {
  flex: 1;
  overflow-y: auto;
  padding-inline: 0.8333333333vw;
  padding-bottom: 3.6458333333vw;
}
@media screen and (width <= 1401px) {
  .search-list_mobile {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-list_mobile {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-list_mobile {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .search-list_mobile {
    padding-bottom: 5.1244509517vw;
  }
}
@media screen and (width <= 811px) {
  .search-list_mobile {
    padding-bottom: 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .search-list_mobile {
    padding-bottom: 16.9082125604vw;
  }
}
.search-list_mobile .search-list__container {
  flex: 1;
}
.search-product__link {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  gap: 0.625vw;
  padding: 0.2083333333vw;
  padding-right: 0.4166666667vw;
  border-radius: 0.625vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .search-product__link {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__link {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__link {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-product__link {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__link {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__link {
    padding: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .search-product__link {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__link {
    padding-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__link {
    padding-right: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .search-product__link {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__link {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__link {
    border-radius: 2.8985507246vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search-product__link:hover .search-product__title {
    color: var(--text-icon-color1-main);
  }
}
.search-product__link:active {
  background: var(--gray-lighter);
}
.search-product__link:active .search-product__title {
  color: var(--text-icon-color1-dark);
}
.search-product__img {
  overflow: hidden;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-product__img {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__img {
    width: 11.5942028986vw;
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .search-product__img {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__img {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__img {
    border-radius: 1.9323671498vw;
  }
}
.search-product__img picture, .search-product__img img {
  width: 100%;
  height: 100%;
}
.search-product__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-product__title {
  color: var(--text-icon-gray-darker);
  font-size: 0.8333333333vw;
  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);
}
@media screen and (width <= 1401px) {
  .search-product__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__title {
    font-size: 3.8647342995vw;
  }
}
.search-product__prices {
  display: inline-flex;
  align-items: center;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .search-product__prices {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__prices {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__prices {
    gap: 0.9661835749vw;
  }
}
.search-product__price_club, .search-product__price {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .search-product__price_club, .search-product__price {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__price_club, .search-product__price {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__price_club, .search-product__price {
    font-size: 3.1400966184vw;
  }
}
.search-product__price_club {
  color: var(--text-icon-gray-dark);
}
.search-product__price {
  color: var(--text-icon-gray-medium);
}
.search-product__price_old {
  text-decoration: line-through;
  color: var(--text-icon-gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .search-product__price_old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .search-product__price_old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .search-product__price_old {
    font-size: 3.1400966184vw;
  }
}
.search-category__link {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  gap: 0.625vw;
  padding: 0.2083333333vw;
  padding-right: 0.4166666667vw;
  border-radius: 0.625vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .search-category__link {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__link {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__link {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .search-category__link {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__link {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__link {
    padding: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .search-category__link {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__link {
    padding-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__link {
    padding-right: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .search-category__link {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__link {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__link {
    border-radius: 2.8985507246vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search-category__link:hover .search-category__title {
    color: var(--text-icon-color1-main);
  }
}
.search-category__link:active {
  background: var(--gray-lighter);
}
.search-category__link:active .search-category__title {
  color: var(--text-icon-color1-dark);
}
.search-category__img {
  overflow: hidden;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .search-category__img {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__img {
    width: 11.5942028986vw;
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .search-category__img {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__img {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__img {
    border-radius: 1.9323671498vw;
  }
}
.search-category__img picture, .search-category__img img {
  width: 100%;
  height: 100%;
}
.search-category__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-category__title {
  color: var(--text-icon-gray-darker);
  font-size: 0.8333333333vw;
  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);
}
@media screen and (width <= 1401px) {
  .search-category__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__title {
    font-size: 3.8647342995vw;
  }
}
.search-category__count {
  color: var(--text-icon-gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .search-category__count {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .search-category__count {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .search-category__count {
    font-size: 3.1400966184vw;
  }
}
.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.4830917874vw, 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.6570048309vw;
  }
}
@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: 2.8985507246vw;
  }
}
@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.4830917874vw;
    right: -0.4830917874vw;
    height: 3.8647342995vw;
    padding-inline: 0.9661835749vw;
  }
}
.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: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.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.625vw;
}
@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.1400966184vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l {
    border-radius: 2.8985507246vw;
  }
}
@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: 13.5265700483vw;
    padding: 0 3.8647342995vw;
    gap: 0.4830917874vw;
  }
}
.btn-menu-size_l:has(.btn-menu__text) {
  justify-content: flex-start;
  padding-inline: 0.3125vw;
  padding-top: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-inline: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-inline: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-inline: 1.4492753623vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-top: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_l:has(.btn-menu__text) {
    padding-top: 1.4492753623vw;
  }
}
.btn-menu-size_m {
  height: 2.5vw;
  padding: 0 0.8333333333vw;
  gap: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
  border-radius: 0.625vw;
}
@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.6570048309vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m {
    height: 3.513909224vw;
    padding: 0 1.1713030747vw;
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m {
    height: 6.25vw;
    padding: 0 2.0833333333vw;
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m {
    height: 11.5942028986vw;
    padding: 0 3.8647342995vw;
    gap: 0.4830917874vw;
  }
}
.btn-menu-size_m:has(.btn-menu__text) {
  justify-content: flex-start;
  padding-inline: 0.3125vw;
  padding-top: 0.2604166667vw;
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-inline: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-inline: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-inline: 1.4492753623vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-top: 0.3660322108vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-top: 0.6510416667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_m:has(.btn-menu__text) {
    padding-top: 1.2077294686vw;
  }
}
.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.625vw;
}
@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.6570048309vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-menu-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-menu-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-menu-size_s {
    border-radius: 2.8985507246vw;
  }
}
@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: 9.6618357488vw;
    padding: 0 3.8647342995vw;
    gap: 0.4830917874vw;
  }
}
.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;
}
.tab-main {
  /*----------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-----------*/
  /*----------OVERRIDE-----------*/
}
@media screen and (width <= 1401px) {
  .tab-main {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .tab-main {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tab-main {
    border-width: max(0.4830917874vw, 2px);
  }
}
.tab-main__text {
  flex: 1;
  margin-inline: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .tab-main__text {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main__text {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main__text {
    margin-inline: 0.9661835749vw;
  }
}
.tab-main__icon {
  width: 100%;
  height: 100%;
  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);
}
.tab-main__icon-left, .tab-main__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab-main__icon-left, .tab-main__icon-right {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main__icon-left, .tab-main__icon-right {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main__icon-left, .tab-main__icon-right {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.tab-main-primary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-primary:hover {
    color: var(--color1-main);
  }
}
.tab-main-primary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-main-primary.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
.tab-main-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-secondary {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-secondary:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.tab-main-secondary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-main-secondary.active {
  cursor: default;
  background: var(--gray-lighter);
  color: var(--gray-black);
}
.tab-main-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-outline {
  background: transparent;
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-outline:hover {
    background: var(--gray-lighter);
    border-color: var(--color1-light);
    color: var(--gray-dark);
  }
}
.tab-main-outline:active {
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-black);
}
.tab-main-outline.active {
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: var(--gray-darker);
}
.tab-main-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-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-main-underline:hover {
    border-bottom-color: var(--color1-light);
  }
}
.tab-main-underline:active {
  border-bottom-color: var(--color1-main);
}
.tab-main-underline.active {
  cursor: default;
  background: transparent;
  color: var(--color1-main);
  border-bottom-color: var(--color1-main);
}
.tab-main-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-main-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-flat:hover {
    color: var(--color1-main);
  }
}
.tab-main-flat:active {
  color: var(--color1-darker);
}
.tab-main-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-black);
}
.tab-main-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.tab-main-size_l {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
  gap: 0.4166666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-main-size_l {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_l {
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_l {
    height: 13.5265700483vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_l {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_l {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_l {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_l {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_l {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_l {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_l {
    border-radius: 2.8985507246vw;
  }
}
.tab-main-size_l .tab-main__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-main-size_l .tab-main__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_l .tab-main__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_l .tab-main__text {
    font-size: 3.8647342995vw;
  }
}
.tab-main-size_m {
  height: 2.5vw;
  padding-inline: 0.625vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-main-size_m {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_m {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_m {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_m {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_m {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_m {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_m {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_m {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_m {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_m {
    border-radius: 1.9323671498vw;
  }
}
.tab-main-size_m .tab-main__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-main-size_m .tab-main__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_m .tab-main__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_m .tab-main__text {
    font-size: 3.8647342995vw;
  }
}
.tab-main-size_s {
  height: 2.0833333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-main-size_s {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_s {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_s {
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_s {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_s {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_s {
    padding-inline: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_s {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_s {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_s {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_s {
    border-radius: 1.9323671498vw;
  }
}
.tab-main-size_s .tab-main__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-main-size_s .tab-main__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_s .tab-main__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_s .tab-main__text {
    font-size: 3.1400966184vw;
  }
}
.tab-main-size_xs {
  height: 1.6666666667vw;
  padding-inline: 0.2083333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-main-size_xs {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_xs {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_xs {
    height: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_xs {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_xs {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_xs {
    padding-inline: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-main-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_xs {
    border-radius: 1.9323671498vw;
  }
}
.tab-main-size_xs .tab-main__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-main-size_xs .tab-main__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_xs .tab-main__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_xs .tab-main__icon {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.tab-main-size_xs .tab-main__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-main-size_xs .tab-main__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-main-size_xs .tab-main__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-main-size_xs .tab-main__text {
    font-size: 3.1400966184vw;
  }
}
.tab-main-theme_dark.tab-main-primary {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-theme_dark.tab-main-primary:hover {
    color: var(--color1-light);
  }
}
.tab-main-theme_dark.tab-main-primary:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.tab-main-theme_dark.tab-main-primary.active {
  cursor: default;
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-main-theme_dark.tab-main-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-theme_dark.tab-main-secondary {
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-theme_dark.tab-main-secondary:hover {
    background: var(--gray-dark);
    color: var(--color1-light);
  }
}
.tab-main-theme_dark.tab-main-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--color1-main);
}
.tab-main-theme_dark.tab-main-secondary.active {
  cursor: default;
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-main-theme_dark.tab-main-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-theme_dark.tab-main-outline {
  background: transparent;
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-theme_dark.tab-main-outline:hover {
    border-color: var(--gray-medium);
  }
}
.tab-main-theme_dark.tab-main-outline:active {
  background: var(--gray-dark);
  border-color: var(--gray-medium);
}
.tab-main-theme_dark.tab-main-outline.active {
  cursor: default;
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-lighter);
}
.tab-main-theme_dark.tab-main-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-main-theme_dark.tab-main-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-theme_dark.tab-main-underline:hover {
    border-bottom-color: var(--gray-medium);
  }
}
.tab-main-theme_dark.tab-main-underline:active {
  border-bottom-color: var(--gray-dark);
}
.tab-main-theme_dark.tab-main-underline.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
  border-bottom-color: var(--color1-main);
}
.tab-main-theme_dark.tab-main-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-main-theme_dark.tab-main-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--text-icon-gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-theme_dark.tab-main-flat:hover {
    color: var(--text-icon-color1-main);
  }
}
.tab-main-theme_dark.tab-main-flat:active {
  color: var(--text-icon-color1-lighter);
}
.tab-main-theme_dark.tab-main-flat.active {
  cursor: default;
  background: transparent;
  color: var(--text-icon-gray-white);
}
.tab-main-theme_dark.tab-main-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--text-icon-gray-medium);
}
.tab-main-outline {
  border-color: var(--gray-light);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-main-outline:hover {
    background: transparent;
  }
}
.tab-main-outline:active {
  background: var(--gray-lighter);
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
.dropdown-tab {
  /*----------CORE STYLE-----------*/
  position: relative;
}
@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 .tab-main__icon-right {
    transform: rotate(180deg);
  }
}
.dropdown-tab .dropdown-tab__trigger .tab-main__icon-right {
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.dropdown-tab .dropdown-tab__trigger_active .tab-main__icon-right {
  transform: rotate(180deg);
}
.dropdown-tab .dropdown-tab__menu {
  z-index: 500;
  position: absolute;
  top: calc(100% + 0.625vw);
  left: 0;
  transform: translateY(-2%) scale(0.95);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  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);
}
@media screen and (width <= 1401px) {
  .dropdown-tab .dropdown-tab__menu {
    top: calc(100% + 0.878477306vw);
  }
}
@media screen and (width <= 811px) {
  .dropdown-tab .dropdown-tab__menu {
    top: calc(100% + 1.5625vw);
  }
}
@media screen and (width <= 481px) {
  .dropdown-tab .dropdown-tab__menu {
    top: calc(100% + 2.8985507246vw);
  }
}
.dropdown-tab .dropdown-tab__menu_locked ..dropdown-tab .dropdown-tab__menu {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-tab .dropdown-tab__menu_active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0;
  list-style: none;
  gap: 0.625vw;
  padding: 0.625vw;
  border-radius: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Forgiveness zone */
  /* Top pointer */
  /* Top pointer position */
  /* line */
}
@media screen and (width <= 1401px) {
  .dropdown-list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list {
    padding: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .dropdown-list {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-list {
    border-width: max(0.4830917874vw, 2px);
  }
}
.dropdown-list::-webkit-scrollbar {
  display: none;
}
.dropdown-list::-webkit-scrollbar-thumb {
  display: none;
}
.dropdown-list::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: -0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .dropdown-list::before {
    top: -1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list::before {
    top: -2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list::before {
    top: -3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list::before {
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list::before {
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list::before {
    height: 3.8647342995vw;
  }
}
.dropdown-list:not(.dropdown-list__hide-corner):after {
  content: "";
  position: absolute;
  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;
  top: -0.2604166667vw;
}
@media screen and (width <= 1401px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    width: 0.7320644217vw;
    height: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    width: 1.3020833333vw;
    height: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    width: 2.4154589372vw;
    height: 2.4154589372vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    top: -0.3660322108vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    top: -0.6510416667vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    top: -1.2077294686vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    border-radius: 0.3660322108vw 0 0 0;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    border-radius: 0.6510416667vw 0 0 0;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list:not(.dropdown-list__hide-corner):after {
    border-radius: 1.2077294686vw 0 0 0;
  }
}
.dropdown-list[data-pointer="center"]::after {
  left: 50%;
}
.dropdown-list[data-pointer="left"]::after {
  left: 25%;
}
.dropdown-list[data-pointer="right"]::after {
  left: 75%;
}
.dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item {
  display: block;
}
.dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
  border-bottom: solid transparent;
  padding-bottom: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    padding-bottom: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .dropdown-list:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
    border-width: max(0.4830917874vw, 2px);
  }
}
.dropdown-list-theme_light {
  border: solid var(--gray-white);
  background: var(--gray-white);
  box-shadow: var(--shadow-medium);
}
.dropdown-list-theme_light::after {
  background: var(--gray-white);
}
.dropdown-list-theme_light:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
  border-color: var(--gray-lighter);
}
.dropdown-list-theme-dark {
  border: solid var(--gray-dark);
  background: var(--gray-darker);
}
.dropdown-list-theme-dark::after {
  background: var(--gray-darker);
}
.dropdown-list-theme-dark:not(.dropdown-list__hide-line) .dropdown-list__item:nth-child(5n) {
  border: var(--gray-dark);
}
.btn-social {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: fit-content;
  touch-action: manipulation;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-radius: 0.4166666667vw;
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn-social {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social {
    border-radius: 1.9323671498vw;
  }
}
.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: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.btn-social__icon svg {
  width: 100%;
  height: 100%;
}
.btn-social-size_l {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size_l {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_l {
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_l {
    height: 13.5265700483vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size_l {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_l {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_l {
    padding-inline: 3.8647342995vw;
  }
}
.btn-social-size_m {
  height: 2.5vw;
  padding-inline: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size_m {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_m {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_m {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size_m {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_m {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_m {
    padding-inline: 2.8985507246vw;
  }
}
.btn-social-size_s {
  height: 2.0833333333vw;
  padding-inline: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size_s {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_s {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_s {
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size_s {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_s {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_s {
    padding-inline: 1.9323671498vw;
  }
}
.btn-social-size_xs {
  height: 1.6666666667vw;
  padding-inline: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size_xs {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_xs {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_xs {
    height: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-social-size_xs {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_xs {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_xs {
    padding-inline: 1.9323671498vw;
  }
}
.btn-social-size_xs .btn-social__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-social-size_xs .btn-social__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-social-size_xs .btn-social__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-social-size_xs .btn-social__icon {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.btn-social-theme_light {
  background: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-theme_light:hover {
    background: var(--color1-lighter);
  }
}
.btn-social-theme_light:active {
  background: var(--color1-light);
}
.btn-social-theme_dark {
  background: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .btn-social-theme_dark:hover {
    background: var(--color1-lighter);
  }
}
.btn-social-theme_dark:active {
  background: var(--gray-medium);
}
.nav-catalog__breadcrumbs {
  padding-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .nav-catalog__breadcrumbs {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__breadcrumbs {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__breadcrumbs {
    padding-top: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__breadcrumbs {
    display: none;
  }
}
.nav-catalog__main {
  padding-top: 1.0416666667vw;
  padding-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .nav-catalog__main {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__main {
    padding-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__main {
    padding-top: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .nav-catalog__main {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__main {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__main {
    padding-bottom: 2.8985507246vw;
  }
}
.nav-catalog__container {
  display: inline-flex;
  align-items: center;
}
@media screen and (width <= 811px) {
  .nav-catalog__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__container {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__back {
    display: none;
  }
}
.nav-catalog__back .btn__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .nav-catalog__back .btn__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__back .btn__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__back .btn__text {
    font-size: 3.8647342995vw;
  }
}
.nav-catalog__separator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 0.4166666667vw;
  margin-right: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .nav-catalog__separator {
    margin-left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__separator {
    margin-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__separator {
    margin-left: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .nav-catalog__separator {
    margin-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__separator {
    margin-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__separator {
    margin-right: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__separator {
    display: none;
  }
}
.nav-catalog__separator:before {
  content: "";
  width: 0.1041666667vw;
  height: 1.25vw;
  background: var(--gray-lighter);
}
@media screen and (width <= 1401px) {
  .nav-catalog__separator:before {
    width: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__separator:before {
    width: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__separator:before {
    width: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .nav-catalog__separator:before {
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__separator:before {
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__separator:before {
    height: 5.7971014493vw;
  }
}
.nav-catalog__title {
  text-transform: uppercase;
  color: var(--gray-black);
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .nav-catalog__title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .nav-catalog__title {
    font-size: 5.7971014493vw;
  }
}
.nav-catalog__badge {
  align-self: flex-start;
  margin-left: 0.625vw;
}
@media screen and (width <= 1401px) {
  .nav-catalog__badge {
    margin-left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .nav-catalog__badge {
    margin-left: unset;
  }
}
.breadcrumbs-container {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .breadcrumbs-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs-container {
    gap: 2.8985507246vw;
  }
}
.breadcrumbs-list {
  display: inline-flex;
  align-items: center;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .breadcrumbs-list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs-list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs-list {
    gap: 0.9661835749vw;
  }
}
.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .breadcrumbs-item {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs-item {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs-item {
    gap: 0.9661835749vw;
  }
}
.breadcrumbs-separator {
  color: var(--gray-medium);
  user-select: none;
  pointer-events: none;
  padding-inline: 0.2083333333vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  line-height: 1;
}
@media screen and (width <= 1401px) {
  .breadcrumbs-separator {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs-separator {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs-separator {
    padding-inline: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .breadcrumbs-separator {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs-separator {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs-separator {
    font-size: 3.1400966184vw;
  }
}
.breadcrumbs .breadcrumbs-tab {
  border: unset;
}
.breadcrumbs .breadcrumbs-tab .tab-main__text {
  margin: unset;
}
.breadcrumbs .breadcrumbs-tab.tab-main-size_xs .tab-main__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  line-height: 1;
}
@media screen and (width <= 1401px) {
  .breadcrumbs .breadcrumbs-tab.tab-main-size_xs .tab-main__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs .breadcrumbs-tab.tab-main-size_xs .tab-main__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs .breadcrumbs-tab.tab-main-size_xs .tab-main__text {
    font-size: 3.1400966184vw;
  }
}
.breadcrumbs_minimal .breadcrumbs-item:nth-child(3) .breadcrumbs-tab, .breadcrumbs_minimal .breadcrumbs-item:nth-child(4) .breadcrumbs-tab {
  max-width: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .breadcrumbs_minimal .breadcrumbs-item:nth-child(3) .breadcrumbs-tab, .breadcrumbs_minimal .breadcrumbs-item:nth-child(4) .breadcrumbs-tab {
    max-width: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .breadcrumbs_minimal .breadcrumbs-item:nth-child(3) .breadcrumbs-tab, .breadcrumbs_minimal .breadcrumbs-item:nth-child(4) .breadcrumbs-tab {
    max-width: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .breadcrumbs_minimal .breadcrumbs-item:nth-child(3) .breadcrumbs-tab, .breadcrumbs_minimal .breadcrumbs-item:nth-child(4) .breadcrumbs-tab {
    max-width: 19.3236714976vw;
  }
}
.breadcrumbs_minimal .breadcrumbs-item:nth-child(3) .breadcrumbs-tab .tab-main__text, .breadcrumbs_minimal .breadcrumbs-item:nth-child(4) .breadcrumbs-tab .tab-main__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.club-banner {
  padding-block: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-banner {
    padding-block: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner {
    padding-block: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner {
    padding-block: 4.8309178744vw;
  }
}
.club-banner__content {
  position: relative;
}
@media screen and (width <= 811px) {
  .club-banner__content {
    display: flex;
    flex-direction: column;
  }
}
.club-banner__content--image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 51.4583333333vw;
  height: 31.5625vw;
  object-fit: cover;
}
@media screen and (width <= 1401px) {
  .club-banner__content--image {
    width: 72.3279648609vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__content--image {
    width: 62.5vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__content--image {
    width: 100.2415458937vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__content--image {
    height: 44.3631039531vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__content--image {
    height: 38.4114583333vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__content--image {
    height: 61.5942028986vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__content--image {
    left: 0;
    position: inherit;
    order: 2;
  }
}
@media screen and (width <= 811px) {
  .club-banner__top {
    order: 1;
  }
}
.club-banner__top--title {
  font-size: 4.6875vw;
  line-height: 90%;
  font-style: normal;
  font-family: Geologica;
  font-weight: 500;
  color: var(--color1-main);
}
@media screen and (width <= 1401px) {
  .club-banner__top--title {
    font-size: 6.588579795vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__top--title {
    font-size: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__top--title {
    font-size: 9.6618357488vw;
  }
}
.club-banner__center {
  padding-block-start: 1.875vw;
  padding-block-end: 4.1666666667vw;
  width: 13.5416666667vw;
}
@media screen and (width <= 1401px) {
  .club-banner__center {
    padding-block-start: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__center {
    padding-block-start: 0vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__center {
    padding-block-start: 8.6956521739vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__center {
    padding-block-end: 6.588579795vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__center {
    padding-block-end: 0vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__center {
    padding-block-end: 19.3236714976vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__center {
    width: 19.0336749634vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__center {
    width: 33.8541666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__center {
    width: 62.8019323671vw;
  }
}
.club-banner__center .btn {
  width: 100%;
}
@media screen and (width <= 811px) {
  .club-banner__center {
    order: 2;
    position: absolute;
    top: 4.8958333333vw;
    right: 0;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-banner__center {
    top: 6.8814055637vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-banner__center {
    top: 12.2395833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-banner__center {
    top: 22.7053140097vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__center {
    position: inherit;
    top: 0;
    left: 0;
    padding: 4.8309178744vw;
    border-radius: 4.8309178744vw;
    border: solid var(--gray-lighter);
    border-width: max(0.1041666667vw, 2px);
    width: 100%;
    margin-bottom: 4.8309178744vw;
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .club-banner__center {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .club-banner__center {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .club-banner__center {
    border-width: max(0.4830917874vw, 2px);
  }
}
.club-banner__member--title {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-darker);
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .club-banner__member--title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member--title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member--title {
    font-size: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member--title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member--title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member--title {
    margin-bottom: 2.8985507246vw;
  }
}
.club-banner__member-num {
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-banner__member-num {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num {
    margin-bottom: 4.8309178744vw;
  }
}
.club-banner__member-num--qty {
  display: inline-flex;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--qty {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--qty {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--qty {
    gap: 0.9661835749vw;
  }
}
.club-banner__member-num--item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color1-main);
  background: var(--gray-light);
  width: 2.0833333333vw;
  height: 2.5vw;
  padding: 0.1041666667vw;
  padding-inline: 0.2083333333vw;
  border-radius: 0.4166666667vw;
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    width: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    width: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    width: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    padding: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    padding: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    padding: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    padding-inline: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-banner__member-num--item {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .club-banner__member-num--item {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .club-banner__member-num--item {
    font-size: 5.7971014493vw;
  }
}
.club-banner__member-num--zero {
  color: var(--gray-medium);
}
@media screen and (width <= 481px) {
  .club-banner__member {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.club-banner__bottom {
  position: relative;
  z-index: 10;
}
@media screen and (width <= 811px) {
  .club-banner__bottom {
    order: 3;
  }
}
.club-card-banner {
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
  background: var(--gray-lighter);
}
@media screen and (width <= 1401px) {
  .club-card-banner {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner {
    padding: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-card-banner {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-card-banner {
    padding-block: 1.25vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .club-card-banner {
    padding-block: 1.756954612vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .club-card-banner {
    padding-block: 3.125vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .club-card-banner {
    padding-block: 5.7971014493vw;
  }
}
.club-card-banner__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media screen and (width <= 1401px) {
  .club-card-banner__items {
    align-items: flex-start;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__items {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__items {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__items {
    gap: 9.6618357488vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__items {
    display: flex;
    flex-direction: column;
    gap: 7.729468599vw;
  }
}
.club-card-banner__item {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
  align-items: flex-start;
}
@media screen and (width <= 1401px) {
  .club-card-banner__item {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item {
    gap: 1.9323671498vw;
  }
}
.club-card-banner__item--title {
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray-darker);
}
@media screen and (width <= 1401px) {
  .club-card-banner__item--title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item--title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item--title {
    font-size: 4.8309178744vw;
  }
}
.club-card-banner__item--text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-dark);
}
@media screen and (width <= 1401px) {
  .club-card-banner__item--text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item--text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item--text {
    font-size: 3.1400966184vw;
  }
}
.club-card-banner__item:not(:last-child) {
  margin-right: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  border-right: solid var(--gray-white);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .club-card-banner__item:not(:last-child) {
    margin-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item:not(:last-child) {
    margin-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item:not(:last-child) {
    margin-right: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-card-banner__item:not(:last-child) {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item:not(:last-child) {
    padding-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item:not(:last-child) {
    padding-right: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-card-banner__item:not(:last-child) {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item:not(:last-child) {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item:not(:last-child) {
    border-width: max(0.2415458937vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border: none;
  }
}
@media screen and (width <= 811px) {
  .club-card-banner__item {
    position: relative;
  }
  .club-card-banner__item:nth-child(1)::before {
    content: "";
    position: absolute;
    right: -1.0416666667vw;
    top: 0;
    bottom: 0;
    width: 0.0520833333vw;
    background: var(--gray-white);
  }
  .club-card-banner__item:nth-child(3)::before {
    content: "";
    position: absolute;
    right: -1.0416666667vw;
    top: 0;
    bottom: 0;
    width: 0.0520833333vw;
    background: var(--gray-white);
  }
  .club-card-banner__item:nth-child(3)::after {
    content: "";
    height: 0 !important;
  }
  .club-card-banner__item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -1.0416666667vw;
    left: 0;
    right: 0;
    height: 0.0520833333vw;
    background: var(--gray-white);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:nth-child(1)::before {
    right: -1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:nth-child(1)::before {
    right: -2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:nth-child(1)::before {
    right: -4.8309178744vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:nth-child(1)::before {
    width: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:nth-child(1)::before {
    width: 0.1302083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:nth-child(1)::before {
    width: 0.2415458937vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:nth-child(3)::before {
    right: -1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:nth-child(3)::before {
    right: -2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:nth-child(3)::before {
    right: -4.8309178744vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:nth-child(3)::before {
    width: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:nth-child(3)::before {
    width: 0.1302083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:nth-child(3)::before {
    width: 0.2415458937vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:not(:last-child)::after {
    bottom: -1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:not(:last-child)::after {
    bottom: -2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:not(:last-child)::after {
    bottom: -4.8309178744vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .club-card-banner__item:not(:last-child)::after {
    height: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .club-card-banner__item:not(:last-child)::after {
    height: 0.1302083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .club-card-banner__item:not(:last-child)::after {
    height: 0.2415458937vw;
  }
}
@media screen and (width <= 481px) {
  .club-card-banner__item:nth-child(1)::before {
    width: 0 !important;
  }
  .club-card-banner__item:nth-child(3)::before {
    width: 0 !important;
  }
  .club-card-banner__item:nth-child(3)::after {
    height: 0.2415458937vw !important;
  }
  .club-card-banner__item:not(:last-child)::after {
    bottom: -3.8647342995vw !important;
  }
}
.club-subscription {
  padding-block: 4.1666666667vw;
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .club-subscription {
    padding-block: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription {
    padding-block: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription {
    padding-block: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .club-subscription {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription {
    gap: 9.6618357488vw;
  }
}
.club-subscription__title {
  font-size: 1.875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray-black);
  text-align: center;
}
@media screen and (width <= 1401px) {
  .club-subscription__title {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__title {
    font-size: 6.7632850242vw;
  }
}
.club-subscription__columns {
  display: grid;
  grid-template-columns: 16.6666666667vw 36.4583333333vw 16.6666666667vw;
  flex-direction: row;
  gap: 2.0833333333vw;
  align-items: center;
}
@media screen and (width <= 1401px) {
  .club-subscription__columns {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__columns {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__columns {
    gap: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .club-subscription__columns {
    grid-template-columns: 21.8155197657vw 43.9238653001vw 21.8155197657vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__columns {
    display: flex;
    flex-direction: column;
  }
}
.club-subscription__column--cards {
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .club-subscription__column--cards {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__column--cards {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__column--cards {
    gap: 3.8647342995vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__column--cards {
    flex-direction: row;
    width: 100%;
  }
  .club-subscription__column--cards .card-subscrib {
    flex: 1;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__column--cards {
    flex-direction: column;
  }
}
.club-subscription__column--center {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
  width: 100%;
}
@media screen and (width <= 1401px) {
  .club-subscription__column--center {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__column--center {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__column--center {
    gap: 4.8309178744vw;
  }
}
.club-subscription__image {
  width: 100%;
  height: 18.2291666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .club-subscription__image {
    height: 25.6222547584vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__image {
    height: 45.5729166667vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__image {
    height: 84.5410628019vw;
  }
}
@media screen and (width <= 1401px) {
  .club-subscription__image {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__image {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__image {
    border-radius: 2.8985507246vw;
  }
}
.club-subscription__card {
  padding: 1.0416666667vw;
  background: var(--color1-dark);
  border-radius: 1.0416666667vw;
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .club-subscription__card {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__card {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__card {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-subscription__card {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__card {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__card {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-subscription__card {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__card {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__card {
    gap: 9.6618357488vw;
  }
}
.club-subscription__card--text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-white);
}
@media screen and (width <= 1401px) {
  .club-subscription__card--text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .club-subscription__card--text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-subscription__card--text {
    font-size: 3.8647342995vw;
  }
}
.club-subscription__card .btn {
  width: 100%;
}
.card-subscrib {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--gray-lighter);
  gap: 1.0416666667vw;
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-subscrib {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscrib {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscrib {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib {
    border-radius: 4.8309178744vw;
  }
}
.card-subscrib__marker.marker {
  color: var(--gray-white);
  background: var(--gray-darker);
}
.card-subscrib__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .card-subscrib__block {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib__block {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib__block {
    gap: 1.9323671498vw;
  }
}
.card-subscrib__title {
  text-transform: uppercase;
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-subscrib__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib__title {
    font-size: 4.8309178744vw;
  }
}
.card-subscrib__text {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-subscrib__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscrib__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscrib__text {
    font-size: 3.1400966184vw;
  }
}
.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: transparent solid;
  width: fit-content;
  color: var(--gray-white);
  background: var(--color1-main);
  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);
  /*----------SIZES-----------*/
  /*----------OVERRIDE-----------*/
}
@media screen and (width <= 1401px) {
  .marker {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .marker {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .marker {
    border-width: max(0.4830917874vw, 2px);
  }
}
.marker__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);
}
.marker__icon img {
  width: 100%;
  height: 100%;
}
.marker-size_xl {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border-radius: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xl {
    width: 5.8565153734vw;
    height: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl {
    width: 10.4166666667vw;
    height: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl {
    width: 19.3236714976vw;
    height: 19.3236714976vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_xl {
    border-radius: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl {
    border-radius: 3.8647342995vw;
  }
}
.marker-size_xl .marker__icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xl .marker__icon {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl .marker__icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl .marker__icon {
    width: 9.6618357488vw;
    height: 9.6618357488vw;
  }
}
.marker-size_l {
  width: 2.9166666667vw;
  height: 2.9166666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .marker-size_l {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l {
    width: 13.5265700483vw;
    height: 13.5265700483vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l {
    border-radius: 2.8985507246vw;
  }
}
.marker-size_l .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_l .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l .marker__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.marker-size_m {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .marker-size_m {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    width: 11.5942028986vw;
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    border-radius: 2.8985507246vw;
  }
}
.marker-size_m .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_m .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m .marker__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.marker-size_s {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .marker-size_s {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    width: 9.6618357488vw;
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    border-radius: 2.8985507246vw;
  }
}
.marker-size_s .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_s .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s .marker__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.marker-size_xs {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xs {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs {
    width: 7.729468599vw;
    height: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs {
    border-radius: 1.9323671498vw;
  }
}
.marker-size_xs .marker__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xs .marker__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs .marker__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs .marker__icon {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.marker-size_m {
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .marker-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    border-radius: 1.9323671498vw;
  }
}
.marker-size_s {
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .marker-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    border-radius: 1.9323671498vw;
  }
}
.referral-program {
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
  padding-block: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .referral-program {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program {
    gap: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .referral-program {
    padding-block: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program {
    padding-block: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program {
    padding-block: 19.3236714976vw;
  }
}
.referral-program__title {
  font-size: 1.875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray-black);
}
@media screen and (width <= 1401px) {
  .referral-program__title {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__title {
    font-size: 6.7632850242vw;
  }
}
.referral-program__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.125vw;
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
  background: var(--gray-lighter);
}
@media screen and (width <= 1401px) {
  .referral-program__content {
    gap: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content {
    gap: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .referral-program__content {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content {
    padding: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content {
    padding: 5.7971014493vw;
  }
}
@media screen and (width <= 1401px) {
  .referral-program__content {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content {
    flex-direction: column;
  }
}
.referral-program__content-ls {
  width: 50%;
  height: 20.3125vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .referral-program__content-ls {
    height: 25.3294289898vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-ls {
    height: 54.4270833333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content-ls {
    height: 49.0338164251vw;
  }
}
@media screen and (width <= 1401px) {
  .referral-program__content-ls {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-ls {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content-ls {
    border-radius: 4.8309178744vw;
  }
}
.referral-program__content-ls--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .referral-program__content-ls--image {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-ls--image {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content-ls--image {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-ls {
    width: 100%;
  }
}
.referral-program__content-rs {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
  padding-right: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .referral-program__content-rs {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-rs {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content-rs {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .referral-program__content-rs {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-rs {
    padding-right: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__content-rs {
    padding-right: 9.6618357488vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__content-rs {
    width: 100%;
    padding-right: 0;
  }
}
.referral-program__title-block {
  color: var(--gray-darker);
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .referral-program__title-block {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__title-block {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__title-block {
    font-size: 5.7971014493vw;
  }
}
.referral-program__title-block--accent {
  color: var(--color1-dark);
  display: block;
}
.referral-program__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .referral-program__text-block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__text-block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__text-block {
    gap: 2.8985507246vw;
  }
}
.referral-program__text-block--up {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-darker);
}
@media screen and (width <= 1401px) {
  .referral-program__text-block--up {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__text-block--up {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__text-block--up {
    font-size: 3.8647342995vw;
  }
}
.referral-program__text-block--bottom {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--gray-dark);
}
@media screen and (width <= 1401px) {
  .referral-program__text-block--bottom {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__text-block--bottom {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__text-block--bottom {
    font-size: 3.1400966184vw;
  }
}
.referral-program__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .referral-program__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .referral-program__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .referral-program__buttons {
    gap: 2.8985507246vw;
  }
}
.referral-program__buttons .btn {
  flex: 1;
}
@media screen and (width <= 481px) {
  .referral-program__buttons .btn {
    flex: initial;
    width: 100%;
  }
}
@media screen and (width <= 481px) {
  .referral-program__buttons {
    flex-direction: column;
  }
}
.club-tariffs__header {
  margin-bottom: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .club-tariffs__header {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariffs__header {
    margin-bottom: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariffs__header {
    margin-bottom: 5.7971014493vw;
  }
}
.club-tariffs__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow-x: auto;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-tariffs__body {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariffs__body {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariffs__body {
    gap: 9.6618357488vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariffs__body {
    grid-template-columns: 1fr;
  }
}
.club-tariff {
  display: flex;
  flex-direction: column;
  min-width: 16.6666666667vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .club-tariff {
    min-width: 23.4260614934vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff {
    min-width: 41.6666666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff {
    min-width: 77.2946859903vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff {
    gap: 2.8985507246vw;
  }
}
.club-tariff__header {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: var(--gray-darker);
  background: var(--gray-lighter);
  overflow: hidden;
  gap: 1.0416666667vw;
  padding-block: 2.0833333333vw;
  padding-inline: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__header {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__header {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__header {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__header {
    padding-block: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__header {
    padding-block: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__header {
    padding-block: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__header {
    padding-inline: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__header {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__header {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__header {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__header {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__header {
    border-radius: 4.8309178744vw;
  }
}
.club-tariff__title {
  text-align: center;
  text-transform: uppercase;
  color: var(--text-icon-gray-black);
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .club-tariff__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__title {
    font-size: 4.8309178744vw;
  }
}
.club-tariff__subtitle {
  text-align: center;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .club-tariff__subtitle {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__subtitle {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__subtitle {
    font-size: 3.8647342995vw;
  }
}
.club-tariff__img {
  width: 100%;
}
.club-tariff__img img {
  width: 100%;
}
.club-tariff__list-item {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .club-tariff__list-item {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-item {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-item {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__list-item {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-item {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-item {
    font-size: 3.8647342995vw;
  }
}
.club-tariff__list-item + .club-tariff__list-item {
  border-top: solid var(--gray-light);
  margin-top: 0.4166666667vw;
  padding-top: 0.4166666667vw;
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .club-tariff__list-item + .club-tariff__list-item {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-item + .club-tariff__list-item {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-item + .club-tariff__list-item {
    margin-top: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__list-item + .club-tariff__list-item {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-item + .club-tariff__list-item {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-item + .club-tariff__list-item {
    padding-top: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__list-item + .club-tariff__list-item {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-item + .club-tariff__list-item {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-item + .club-tariff__list-item {
    border-width: max(0.2415458937vw, 1px);
  }
}
.club-tariff__list-icon {
  flex-shrink: 0;
  color: var(--text-icon-color1-main);
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__list-icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__list-icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__list-icon {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.club-tariff__list-icon svg {
  width: 100%;
  height: 100%;
}
.club-tariff__footer, .club-tariff__footer-inner {
  display: flex;
  flex-direction: column;
}
.club-tariff__footer {
  background: var(--text-icon-color1-dark);
  gap: 0.625vw;
  padding-block: 1.0416666667vw;
  padding-inline: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer {
    padding-block: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer {
    padding-block: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer {
    padding-block: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer {
    padding-inline: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer {
    border-radius: 4.8309178744vw;
  }
}
.club-tariff__footer-inner {
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-inner {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-inner {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-inner {
    gap: 0.9661835749vw;
  }
}
.club-tariff__footer-title {
  text-align: center;
  color: var(--gray-light);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-title {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-title {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-title {
    font-size: 3.1400966184vw;
  }
}
.club-tariff__footer-prices {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-prices {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-prices {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-prices {
    gap: 2.8985507246vw;
  }
}
.club-tariff__footer-prices-block.flex-center {
  text-align: center;
}
.club-tariff__footer-price {
  color: var(--gray-white);
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price {
    font-size: 5.7971014493vw;
  }
}
.club-tariff__footer-price_old {
  transform: translateY(0.2083333333vw);
  text-decoration: line-through;
  color: var(--text-icon-gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_old {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_old {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_old {
    font-size: 3.1400966184vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_old {
    transform: translateY(0.2928257687vw);
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_old {
    transform: translateY(0.5208333333vw);
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_old {
    transform: translateY(0.9661835749vw);
  }
}
.club-tariff__footer-price_one {
  background: var(--gradient1-gold);
  padding: 0.2083333333vw;
  padding-inline: 0.4166666667vw;
  border-radius: 0.4166666667vw;
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_one {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_one {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_one {
    padding: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_one {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_one {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_one {
    padding-inline: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_one {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_one {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_one {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__footer-price_one {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__footer-price_one {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__footer-price_one {
    font-size: 5.7971014493vw;
  }
}
.club-tariff__discount, .club-tariff__discount span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.club-tariff__discount {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.0416666667vw 0 0 0;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: bold;
  line-height: 110%;
  color: var(--text-icon-gray-white);
  background: linear-gradient(135deg, var(--color1-dark) 50%, transparent 50%);
  width: 3.6458333333vw;
  height: 3.6458333333vw;
  font-size: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__discount {
    width: 5.1244509517vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__discount {
    width: 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__discount {
    width: 16.9082125604vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__discount {
    height: 5.1244509517vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__discount {
    height: 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__discount {
    height: 16.9082125604vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__discount {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__discount {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__discount {
    font-size: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .club-tariff__discount {
    border-radius: 1.4641288433vw 0 0 0;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__discount {
    border-radius: 2.6041666667vw 0 0 0;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__discount {
    border-radius: 4.8309178744vw 0 0 0;
  }
}
.club-tariff__discount span {
  transform: rotate(-45deg) translateY(-50%);
  padding-bottom: 0.15625vw;
}
@media screen and (width <= 1401px) {
  .club-tariff__discount span {
    padding-bottom: 0.2196193265vw;
  }
}
@media screen and (width <= 811px) {
  .club-tariff__discount span {
    padding-bottom: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .club-tariff__discount span {
    padding-bottom: 0.7246376812vw;
  }
}
.about {
  padding-top: 6.25vw;
}
@media screen and (width <= 1401px) {
  .about {
    padding-top: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .about {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about {
    padding-top: 9.6618357488vw;
  }
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .about-container {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .about-container {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .about-container {
    gap: 3.8647342995vw;
  }
}
.about-person {
  position: relative;
  background: var(--gray-lighter);
  padding: 3.125vw;
  padding-bottom: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-person {
    padding: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .about-person {
    padding: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person {
    padding-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .about-person {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person {
    padding-bottom: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-person {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .about-person {
    padding-bottom: 0;
  }
}
.about-person__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  width: 44.7916666667vw;
  gap: 5.2083333333vw;
}
@media screen and (width <= 1401px) {
  .about-person__container {
    width: 62.9575402635vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__container {
    width: 111.9791666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__container {
    width: 207.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__container {
    gap: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__container {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__container {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__container {
    width: auto;
  }
}
.about-person__title {
  z-index: 2;
  position: relative;
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .about-person__title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__title {
    font-size: 5.7971014493vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__title {
    font-size: 1.25vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .about-person__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .about-person__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .about-person__title {
    font-size: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__block {
    display: grid;
    grid-template-columns: 26.0416666667vw 1fr;
    width: 100%;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__block {
    grid-template-columns: 1fr;
    gap: 7.729468599vw;
  }
}
.about-person__list {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625vw;
  margin-left: -1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .about-person__list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__list {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__list {
    margin-left: -2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__list {
    margin-left: -4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__list {
    margin-left: -7.729468599vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__list {
    margin-left: unset;
    display: flex;
    flex-direction: column;
  }
}
.about-person__item {
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .about-person__item {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__item {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item {
    flex-direction: column;
  }
}
.about-person__item-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .about-person__item-inner {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item-inner {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__item-inner {
    gap: 1.9323671498vw;
  }
}
.about-person__item-title {
  color: var(--color1-main);
  font-size: 2.5vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .about-person__item-title {
    font-size: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item-title {
    font-size: 5.46875vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__item-title {
    font-size: 10.1449275362vw;
  }
}
.about-person__item-text {
  color: var(--gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .about-person__item-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__item-text {
    font-size: 3.1400966184vw;
  }
}
.about-person__item::before {
  content: "";
  height: 100%;
  flex-shrink: 0;
  border-left: solid var(--gray-white);
  width: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .about-person__item::before {
    width: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__item::before {
    width: 26.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__item::before {
    width: 48.309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__item::before {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-person__item::before {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .about-person__item::before {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-person__item::before {
    height: 1.3020833333vw;
    border-left: unset;
    border-top: 0.2604166667vw solid var(--gray-white);
  }
}
@media screen and (width <= 481px) {
  .about-person__item::before {
    height: 2.4154589372vw;
    border-width: 0.4830917874vw;
  }
}
.about-person__badge {
  z-index: 2;
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--gradient1-dark);
  right: 1.0416666667vw;
  bottom: 1.0416666667vw;
  gap: 0.2083333333vw;
  padding: 0.8333333333vw;
  padding-inline: 1.25vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    right: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    right: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    bottom: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    padding: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    padding: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    padding-inline: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    padding-inline: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__badge {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge {
    border-radius: 1.9323671498vw;
  }
}
.about-person__badge-title {
  text-transform: uppercase;
  color: var(--gray-white);
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .about-person__badge-title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge-title {
    font-size: 4.8309178744vw;
  }
}
.about-person__badge-text {
  color: var(--gray-lighter);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .about-person__badge-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__badge-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__badge-text {
    font-size: 3.8647342995vw;
  }
}
.about-person__img {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26.0416666667vw;
  height: 23.9583333333vw;
}
@media screen and (width <= 1401px) {
  .about-person__img {
    width: 37.3352855051vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__img {
    width: 65.1041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__img {
    width: 120.7729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__img {
    height: 33.6749633968vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__img {
    height: 59.8958333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-person__img {
    height: 111.1111111111vw;
  }
}
@media screen and (width <= 1401px) {
  .about-person__img {
    right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-person__img {
    position: static;
    width: auto;
    height: auto;
  }
}
.about-person__img img {
  width: 100%;
  height: 100%;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .about-cards {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .about-cards {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-cards {
    gap: 3.8647342995vw;
  }
}
@media screen and (width <= 481px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}
.about-cards__item.card-about {
  width: auto;
}
.about-items-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0416666667vw;
  align-items: stretch;
}
@media screen and (width <= 1401px) {
  .about-items-sub {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-items-sub {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-items-sub {
    gap: 3.8647342995vw;
  }
}
@media screen and (width <= 811px) {
  .about-items-sub {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 481px) {
  .about-items-sub {
    display: flex;
    flex-direction: column;
  }
}
.about-items-sub__card {
  height: 100%;
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
  border: solid var(--gray-lighter);
  border-width: max(0.1041666667vw, 2px);
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 1401px) {
  .about-items-sub__card {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-items-sub__card {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-items-sub__card {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-items-sub__card {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-items-sub__card {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-items-sub__card {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .about-items-sub__card {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-items-sub__card {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .about-items-sub__card {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .about-items-sub__card {
    gap: 9.6618357488vw;
  }
}
.about-items-sub__card--title {
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray-darker);
}
@media screen and (width <= 1401px) {
  .about-items-sub__card--title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .about-items-sub__card--title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-items-sub__card--title {
    font-size: 4.8309178744vw;
  }
}
.about-items-sub__card .btn {
  width: 100%;
  margin-top: auto;
}
@media screen and (width <= 481px) {
  .about-items-sub__card .btn {
    margin-top: unset;
  }
}
.faq {
  padding-block: 4.1666666667vw;
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .faq {
    padding-block: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .faq {
    padding-block: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .faq {
    padding-block: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .faq {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .faq {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .faq {
    gap: 5.7971014493vw;
  }
}
.faq__title {
  font-size: 1.875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray-black);
}
@media screen and (width <= 1401px) {
  .faq__title {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .faq__title {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .faq__title {
    font-size: 6.7632850242vw;
  }
}
.faq__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .faq__content {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .faq__content {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .faq__content {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .faq__content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.faq__content-items {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .faq__content-items {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .faq__content-items {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .faq__content-items {
    gap: 2.8985507246vw;
  }
}
.accordion {
  width: 100%;
  display: grid;
  grid-template-rows: min-content 0fr;
  overflow: hidden;
  border: solid transparent;
  touch-action: manipulation;
  transition: grid-template-rows 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-color 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) {
  .accordion {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .accordion {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .accordion {
    border-width: max(0.4830917874vw, 2px);
  }
}
.accordion.active {
  grid-template-rows: min-content 1fr;
}
@media (hover: hover) and (pointer: fine) {
  .accordion:hover:not(:has(.accordion__content:hover)) {
    cursor: pointer;
  }
}
.accordion__header {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.accordion__header-wrapper {
  display: inline-flex;
  align-items: center;
}
.accordion__icon {
  flex-shrink: 0;
  color: var(--gray-darker);
  width: 1.25vw;
  height: 1.25vw;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .accordion__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.accordion__text-wrapper {
  display: flex;
  flex-direction: column;
}
.accordion__title {
  color: var(--gray-darker);
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.accordion__subtitle {
  color: var(--gray-medium);
}
.accordion__controls-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .accordion__controls-wrapper {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__controls-wrapper {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__controls-wrapper {
    gap: 1.9323671498vw;
  }
}
.accordion__comment {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion__comment {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__comment {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__comment {
    font-size: 3.1400966184vw;
  }
}
.accordion__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) {
  .accordion__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    font-size: 2.6570048309vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    height: 3.8647342995vw;
    padding-inline: 0.9661835749vw;
  }
}
.accordion__button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.accordion__button.active .accordion__chevron {
  transform: rotateX(180deg);
}
.accordion__chevron {
  flex-shrink: 0;
  color: var(--gray-darker);
  width: 1.25vw;
  height: 1.25vw;
  transition: transform 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) {
  .accordion__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__chevron {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.accordion__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.accordion__content.accordion-image {
  flex-direction: row;
  gap: 3.125vw;
}
@media screen and (width <= 1401px) {
  .accordion__content.accordion-image {
    gap: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__content.accordion-image {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__content.accordion-image {
    gap: 5.7971014493vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__content.accordion-image {
    flex-direction: column;
  }
}
.accordion__content.accordion-image .accordion__description {
  flex: 1 0 0;
}
.accordion__content.accordion-image .accordion__image {
  flex: 1 0 0;
}
.accordion__description {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion__description {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__description {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__description {
    font-size: 3.8647342995vw;
  }
}
.accordion__image {
  width: 100%;
  height: 15.625vw;
  border-radius: 1.0416666667vw;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 1.25vw;
  display: flex;
}
@media screen and (width <= 1401px) {
  .accordion__image {
    height: 21.9619326501vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__image {
    height: 39.0625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__image {
    height: 72.4637681159vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__image {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__image {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__image {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__image {
    margin-top: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__image {
    margin-top: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__image {
    margin-top: 0vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__image {
    display: none;
  }
}
.accordion__image--mob {
  display: none;
}
@media screen and (width <= 811px) {
  .accordion__image--mob {
    display: flex;
  }
}
@media screen and (width <= 481px) {
  .accordion__image {
    min-height: 72.4637681159vw;
  }
}
.accordion-filled {
  background: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-filled:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
}
.accordion-filled:active:not(:has(.accordion__content:active)) {
  background: var(--gray-light);
  border-color: var(--gray-light);
}
.accordion-underline {
  background: transparent;
  border-radius: 0 !important;
  border-bottom-color: var(--gray-light);
  padding-inline: 0 !important;
}
.accordion-underline .accordion__title {
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .accordion-underline:hover:not(:has(.accordion__content:hover)) {
    border-bottom-color: var(--color1-main);
  }
  .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__icon, .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__title, .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__chevron {
    color: var(--color1-main);
  }
}
.accordion-underline:active:not(:has(.accordion__content:active)) {
  border-bottom-color: var(--color1-dark);
}
.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__icon, .accordion-underline:active:not(:has(.accordion__content:active)) .accordion__title, .accordion-underline:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--color1-dark);
}
.accordion-button {
  background: var(--gray-lighter);
}
.accordion-button .accordion__button {
  background: var(--gray-black);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-button .accordion__button {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-button .accordion__button {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-button .accordion__button {
    width: 9.6618357488vw;
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-button .accordion__button {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-button .accordion__button {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-button .accordion__button {
    border-radius: 2.8985507246vw;
  }
}
.accordion-button .accordion__chevron {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-button:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
  .accordion-button:hover:not(:has(.accordion__content:hover)) .accordion__button {
    background: var(--gray-dark);
  }
}
.accordion-button:active:not(:has(.accordion__content:active)) {
  background: var(--gray-light);
  border-color: var(--gray-light);
}
.accordion-button:active:not(:has(.accordion__content:active)) .accordion__button {
  background: var(--gray-darker);
}
.accordion-size_l {
  padding: 1.25vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_l {
    padding: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l {
    padding: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l {
    padding: 5.7971014493vw;
  }
}
.accordion-size_l .accordion__header-wrapper {
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 4.8309178744vw;
  }
}
.accordion-size_l .accordion__text-wrapper {
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 1.9323671498vw;
  }
}
.accordion-size_l .accordion__title {
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__title {
    font-size: 4.8309178744vw;
  }
}
.accordion-size_l .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 3.1400966184vw;
  }
}
.accordion-size_l .accordion__description {
  margin-top: 1.25vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__description {
    margin-top: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__description {
    margin-top: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__description {
    margin-top: 5.7971014493vw;
  }
}
.accordion-size_m {
  padding: 1.0416666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m {
    border-radius: 1.9323671498vw;
  }
}
.accordion-size_m .accordion__header-wrapper {
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 4.8309178744vw;
  }
}
.accordion-size_m .accordion__text-wrapper {
  gap: 0;
}
.accordion-size_m .accordion__title {
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__title {
    font-size: 4.8309178744vw;
  }
}
.accordion-size_m .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 3.1400966184vw;
  }
}
.accordion-size_m .accordion__description {
  margin-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__description {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__description {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__description {
    margin-top: 4.8309178744vw;
  }
}
.accordion-size_s {
  padding: 0.8333333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_s {
    padding: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s {
    padding: 3.8647342995vw;
  }
}
.accordion-size_s .accordion__header-wrapper {
  gap: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 3.8647342995vw;
  }
}
.accordion-size_s .accordion__text-wrapper {
  gap: 0;
}
.accordion-size_s .accordion__title {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__title {
    font-size: 3.8647342995vw;
  }
}
.accordion-size_s .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 3.1400966184vw;
  }
}
.accordion-size_s .accordion__description {
  margin-top: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__description {
    margin-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__description {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__description {
    margin-top: 3.8647342995vw;
  }
}
.accordion-theme_dark.accordion-filled {
  background: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-filled:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
}
.accordion-theme_dark.accordion-filled:active:not(:has(.accordion__content:active)) {
  background: var(--gray-darker);
  border-color: var(--gray-light);
}
.accordion-theme_dark.accordion-filled .accordion__title, .accordion-theme_dark.accordion-filled .accordion__chevron, .accordion-theme_dark.accordion-filled .accordion__icon, .accordion-theme_dark.accordion-filled .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-filled .accordion__subtitle, .accordion-theme_dark.accordion-filled .accordion__comment {
  color: var(--gray-light);
}
.accordion-theme_dark.accordion-underline {
  border-bottom-color: var(--gray-dark);
}
.accordion-theme_dark.accordion-underline .accordion__title, .accordion-theme_dark.accordion-underline .accordion__chevron, .accordion-theme_dark.accordion-underline .accordion__icon, .accordion-theme_dark.accordion-underline .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-underline .accordion__subtitle, .accordion-theme_dark.accordion-underline .accordion__comment {
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) {
    border-bottom-color: var(--color1-main);
  }
  .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__icon, .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__title, .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__chevron {
    color: var(--color1-main);
  }
}
.accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) {
  border-bottom-color: var(--color1-dark);
}
.accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__icon, .accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__title, .accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--color1-dark);
}
.accordion-theme_dark.accordion-button {
  background: var(--gray-dark);
}
.accordion-theme_dark.accordion-button .accordion__button {
  background: var(--gray-white);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 9.6618357488vw;
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 2.8985507246vw;
  }
}
.accordion-theme_dark.accordion-button .accordion__chevron {
  color: var(--gray-darker);
}
.accordion-theme_dark.accordion-button .accordion__title, .accordion-theme_dark.accordion-button .accordion__icon, .accordion-theme_dark.accordion-button .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-button .accordion__subtitle, .accordion-theme_dark.accordion-button .accordion__comment {
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-button:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
  .accordion-theme_dark.accordion-button:hover:not(:has(.accordion__content:hover)) .accordion__button {
    background: var(--gray-light);
  }
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) {
  background: var(--gray-darker);
  border-color: var(--gray-light);
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) .accordion__button {
  background: var(--gray-medium);
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--gray-white);
}
.contacts {
  padding-top: 2.0833333333vw;
  padding-bottom: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .contacts {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .contacts {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .contacts {
    padding-top: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts {
    padding-bottom: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .contacts {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .contacts {
    padding-bottom: 9.6618357488vw;
  }
}
.contacts-title {
  text-transform: uppercase;
  color: var(--gray-white);
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .contacts-title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-title {
    font-size: 5.7971014493vw;
  }
}
.contacts-container {
  position: relative;
  color: var(--gray-lighter);
  background: var(--color1-dark);
  overflow: hidden;
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .contacts-container {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-container {
    padding: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-container {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts-container {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-container {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-container {
    padding-bottom: unset;
  }
}
@media screen and (width <= 481px) {
  .contacts-container {
    padding-top: 6.7632850242vw;
  }
}
.contacts-block {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 33.8541666667vw;
  gap: 1.0416666667vw;
  padding: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .contacts-block {
    max-width: 47.5841874085vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-block {
    max-width: 84.6354166667vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-block {
    max-width: 157.0048309179vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts-block {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-block {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-block {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts-block {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-block {
    padding: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-block {
    padding: 9.6618357488vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-block {
    max-width: 100%;
    padding: unset;
  }
}
.contacts-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: solid var(--color1-light);
  gap: 0.625vw;
  padding-top: 1.0416666667vw;
  border-top: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .contacts-item {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-item {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts-item {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-item {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item {
    padding-top: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .contacts-item {
    border-top: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-item {
    border-top: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item {
    border-top: 0.4830917874vw;
  }
}
.contacts-item__title {
  text-transform: uppercase;
  font-size: 0.8333333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .contacts-item__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-item__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item__title {
    font-size: 3.8647342995vw;
  }
}
.contacts-item__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .contacts-item__list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-item__list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item__list {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-item__list {
    grid-template-columns: 1fr;
  }
}
.contacts-item__list-grid_1 {
  grid-template-columns: 1fr;
}
.contacts-img {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44.2708333333vw;
}
@media screen and (width <= 1401px) {
  .contacts-img {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    width: 50.5124450952vw;
    height: 35.505124451vw;
  }
}
@media screen and (width <= 811px) {
  .contacts-img {
    position: static;
    transform: unset;
    width: 100%;
    height: 44.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .contacts-img {
    height: 42.9951690821vw;
  }
}
.contacts-img picture, .contacts-img img {
  width: 100%;
  height: 100%;
}
.card-social {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.0416666667vw;
  padding: 0.625vw;
  border-radius: 0.1041666667vw;
  border-radius: 0.625vw;
  transition: border-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .card-social {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-social {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-social {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .card-social {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-social {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-social {
    padding: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .card-social {
    border-radius: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .card-social {
    border-radius: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .card-social {
    border-radius: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .card-social {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-social {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-social {
    border-radius: 2.8985507246vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-social:hover {
    border-color: var(--color1-lighter);
  }
  .card-social:hover .card-social__icon {
    transform: rotate(45deg);
  }
}
.card-social:active {
  border-color: var(--color1-main);
}
.card-social:active .card-social__icon {
  color: var(--color1-main);
}
.card-social__container {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-social__container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__container {
    gap: 2.8985507246vw;
  }
}
.card-social .card-social__marker {
  flex-shrink: 0;
  color: var(--color1-main);
}
.card-social__block {
  display: flex;
  flex-direction: column;
  gap: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .card-social__block {
    gap: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__block {
    gap: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__block {
    gap: 0.4830917874vw;
  }
}
.card-social__title {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .card-social__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__title {
    font-size: 3.8647342995vw;
  }
}
.card-social__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .card-social__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__text {
    font-size: 3.1400966184vw;
  }
}
.card-social__icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 1.25vw;
  height: 1.25vw;
  transition: color 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) {
  .card-social__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.card-social__icon svg {
  width: 100%;
  height: 100%;
}
.card-social__image {
  transition: color 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);
  padding: 0.4166666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .card-social__image {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__image {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__image {
    padding: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .card-social__image {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__image {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__image {
    border-radius: 1.9323671498vw;
  }
}
.card-social__image img {
  width: 1.25vw;
  height: 1.25vw;
  flex-shrink: 0;
}
@media screen and (width <= 1401px) {
  .card-social__image img {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-social__image img {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-social__image img {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.card-social-style_white, .card-social-style_gray {
  border: solid var(--gray-lighter);
  color: var(--gray-black);
  background: var(--gray-lighter);
}
.card-social-style_white .card-social__marker, .card-social-style_gray .card-social__marker {
  background: var(--gray-lighter);
}
.card-social-style_white .card-social__image, .card-social-style_gray .card-social__image {
  background: var(--gray-white);
}
.card-social-style_white .card-social__text, .card-social-style_gray .card-social__text {
  color: var(--gray-dark);
}
.card-social-style_white .card-social__icon, .card-social-style_gray .card-social__icon {
  color: var(--gray-back);
}
.card-social-style_blue {
  border: solid var(--color1-darker);
  color: var(--gray-white);
  background: var(--color1-darker);
}
.card-social-style_blue .card-social__marker {
  background: var(--gray-white);
}
.card-social-style_blue .card-social__text {
  color: var(--color1-lighter);
}
.card-social-style_blue .card-social__icon {
  color: var(--gray-white);
}
.card-social-style_gray .card-social__marker {
  background: var(--gray-white);
}
.card-social-style_gray .card-social__container {
  flex-direction: column;
}
.footer {
  padding: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    padding: 3.8647342995vw;
  }
}
@media screen and (width <= 811px) {
  .footer {
    margin-bottom: 7.5520833333vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    margin-bottom: 14.0096618357vw;
  }
}
.footer-inner {
  background: var(--gray-darker);
  min-height: 31.25vw;
  padding-top: 4.1666666667vw;
  padding-bottom: 4.1666666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-inner {
    min-height: 43.9238653001vw;
  }
}
@media screen and (width <= 811px) {
  .footer-inner {
    min-height: 78.125vw;
  }
}
@media screen and (width <= 481px) {
  .footer-inner {
    min-height: 144.9275362319vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-inner {
    padding-top: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .footer-inner {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-inner {
    padding-top: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-inner {
    padding-bottom: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .footer-inner {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-inner {
    padding-bottom: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-inner {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-inner {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-inner {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .footer-inner {
    min-height: unset;
  }
}
.footer-container {
  display: flex;
}
@media screen and (width <= 811px) {
  .footer-container {
    flex-direction: column;
  }
}
.footer-contacts {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  border-right: solid var(--gray-dark);
  gap: 2.0833333333vw;
  width: 18.75vw;
  padding-right: 6.25vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .footer-contacts {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    gap: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts {
    width: 26.3543191801vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts {
    width: 46.875vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    width: 86.9565217391vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts {
    padding-right: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts {
    padding-right: 15.625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    padding-right: 28.9855072464vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .footer-contacts {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .footer-contacts {
    width: auto;
    padding-right: unset;
    padding-bottom: 4.1666666667vw;
    border-right: unset;
    border-bottom: solid var(--gray-dark);
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    padding-bottom: 7.729468599vw;
  }
}
.footer-contacts__container, .footer-contacts__container_top, .footer-contacts__container_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contacts__container {
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__container {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__container {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__container {
    gap: 7.729468599vw;
  }
}
.footer-contacts__container_top {
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__container_top {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__container_top {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__container_top {
    gap: 2.8985507246vw;
  }
}
.footer-contacts__container_bottom {
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__container_bottom {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__container_bottom {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__container_bottom {
    gap: 2.8985507246vw;
  }
}
.footer-contacts__item-label {
  display: block;
  color: var(--gray-medium);
  margin-bottom: 0.4166666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .footer-contacts__item-label {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__item-label {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__item-label {
    margin-bottom: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts__item-label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__item-label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__item-label {
    font-size: 2.6570048309vw;
  }
}
.footer-contacts__item-label-social {
  margin-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__item-label-social {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__item-label-social {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__item-label-social {
    margin-bottom: 2.8985507246vw;
  }
}
.footer-contacts__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__info {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__info {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__info {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts .footer-contacts__info {
    display: none;
  }
}
.footer-socials {
  display: inline-flex;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .footer-socials {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer-socials {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-socials {
    gap: 1.9323671498vw;
  }
}
.footer-socials__btn {
  background: var(--gray-dark);
}
.footer-copyright {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer-copyright {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer-copyright {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-copyright {
    font-size: 3.1400966184vw;
  }
}
.footer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.125vw;
  padding-left: 6.25vw;
}
@media screen and (width <= 1401px) {
  .footer-block {
    gap: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block {
    gap: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block {
    gap: 14.4927536232vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-block {
    padding-left: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block {
    padding-left: 15.625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block {
    padding-left: 28.9855072464vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block {
    padding-left: unset;
    padding-top: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block {
    padding-top: 4.1666666667vw;
  }
}
.footer-block_top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-block_top {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block_top {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block_top {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block_top {
    display: none;
  }
}
.footer-block_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.125vw;
}
@media screen and (width <= 1401px) {
  .footer-block_bottom {
    gap: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block_bottom {
    gap: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block_bottom {
    gap: 7.729468599vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-block__logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-block__logo {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__logo {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__logo {
    gap: 4.8309178744vw;
  }
}
.footer-block__logo-item {
  display: flex;
}
.footer-block__title {
  display: inline-block;
  color: var(--text-icon-gray-white);
  padding-top: 0.625vw;
  padding-bottom: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer-block__title {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__title {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__title {
    padding-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-block__title {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__title {
    padding-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__title {
    padding-bottom: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-block__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__title {
    font-size: 3.8647342995vw;
  }
}
.footer-block__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-block__inner {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__inner {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__inner {
    gap: 2.8985507246vw;
  }
}
.footer-block__container .footer-contacts__info {
  display: none;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-block__container .footer-contacts__info {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__container .footer-contacts__info {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-block__container .footer-contacts__info {
    margin-bottom: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .footer-block__container .footer-contacts__info {
    display: flex;
  }
}
.footer-pay {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .footer-pay {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer-pay {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-pay {
    gap: 1.9323671498vw;
  }
}
.footer-pay__item {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-pay__item {
    width: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-pay__item {
    width: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-pay__item {
    width: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-pay__item {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-pay__item {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-pay__item {
    height: 9.6618357488vw;
  }
}
.footer-pay__item picture, .footer-pay__item img {
  width: 100%;
  height: 100%;
}
.footer-made-in, .footer-made-by {
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-made-in, .footer-made-by {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made-in, .footer-made-by {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made-in, .footer-made-by {
    height: 9.6618357488vw;
  }
}
.footer-made-in picture, .footer-made-in img, .footer-made-by picture, .footer-made-by img {
  width: 100%;
  height: 100%;
}
.footer-made-in {
  width: 11.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-made-in {
    width: 15.5197657394vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made-in {
    width: 27.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made-in {
    width: 51.2077294686vw;
  }
}
.footer-made-by {
  width: 5.9375vw;
}
@media screen and (width <= 1401px) {
  .footer-made-by {
    width: 8.345534407vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made-by {
    width: 14.84375vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made-by {
    width: 27.5362318841vw;
  }
}
.footer-mir {
  width: 3.4375vw;
}
@media screen and (width <= 1401px) {
  .footer-mir {
    width: 4.831625183vw;
  }
}
@media screen and (width <= 811px) {
  .footer-mir {
    width: 8.59375vw;
  }
}
@media screen and (width <= 481px) {
  .footer-mir {
    width: 15.9420289855vw;
  }
}
.footer-webmoney {
  width: 2.1875vw;
}
@media screen and (width <= 1401px) {
  .footer-webmoney {
    width: 3.074670571vw;
  }
}
@media screen and (width <= 811px) {
  .footer-webmoney {
    width: 5.46875vw;
  }
}
@media screen and (width <= 481px) {
  .footer-webmoney {
    width: 10.1449275362vw;
  }
}
.link-contact {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  width: fit-content;
  touch-action: manipulation;
  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-radius: 0.625vw;
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .link-contact {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact {
    border-radius: 2.8985507246vw;
  }
}
.link-contact-monochrome {
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .link-contact-monochrome:hover {
    color: var(--color1-main);
  }
}
.link-contact-monochrome:active {
  color: var(--color1-dark);
}
.link-contact-monochrome:disabled {
  cursor: not-allowed;
  color: var(--gray-white);
}
.link-contact-flat {
  color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .link-contact-flat:hover {
    color: var(--color1-light);
  }
}
.link-contact-flat:active {
  color: var(--color1-dark);
}
.link-contact-flat:disabled {
  cursor: not-allowed;
  color: var(--gray-white);
}
.link-contact-filled {
  background: var(--gray-white);
  color: var(--gray-darker);
  border: solid var(--gray-white);
  border-radius: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .link-contact-filled {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-filled {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-filled {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .link-contact-filled {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .link-contact-filled {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .link-contact-filled {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-contact-filled:hover {
    color: var(--color1-main);
  }
}
.link-contact-filled:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
  border-color: var(--color1-lighter);
}
.link-contact-filled:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: var(--gray-medium);
}
.link-contact-size_l {
  font-size: 1.875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .link-contact-size_l {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_l {
    font-size: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_l {
    font-size: 6.7632850242vw;
  }
}
.link-contact-size_l.link-contact-filled {
  padding: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .link-contact-size_l.link-contact-filled {
    padding: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_l.link-contact-filled {
    padding: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_l.link-contact-filled {
    padding: 2.4154589372vw;
  }
}
.link-contact-size_m {
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (width <= 1401px) {
  .link-contact-size_m {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_m {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_m {
    font-size: 5.7971014493vw;
  }
}
.link-contact-size_m.link-contact-filled {
  padding: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .link-contact-size_m.link-contact-filled {
    padding: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_m.link-contact-filled {
    padding: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_m.link-contact-filled {
    padding: 2.4154589372vw;
  }
}
.link-contact-size_s {
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .link-contact-size_s {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_s {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_s {
    font-size: 4.8309178744vw;
  }
}
.link-contact-size_s.link-contact-filled {
  padding: 0.625vw;
}
@media screen and (width <= 1401px) {
  .link-contact-size_s.link-contact-filled {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_s.link-contact-filled {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_s.link-contact-filled {
    padding: 2.8985507246vw;
  }
}
.link-contact-size_xs {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .link-contact-size_xs {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_xs {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_xs {
    font-size: 3.8647342995vw;
  }
}
.link-contact-size_xs.link-contact-filled {
  padding: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .link-contact-size_xs.link-contact-filled {
    padding: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .link-contact-size_xs.link-contact-filled {
    padding: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .link-contact-size_xs.link-contact-filled {
    padding: 1.4492753623vw;
  }
}
.link-contact-theme_dark.link-contact-monochrome {
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .link-contact-theme_dark.link-contact-monochrome:hover {
    color: var(--color1-light);
  }
}
.link-contact-theme_dark.link-contact-monochrome:active {
  color: var(--color1-dark);
}
.link-contact-theme_dark.link-contact-monochrome:disabled {
  cursor: not-allowed;
  color: var(--gray-dark);
}
.link-contact-theme_dark.link-contact-filled {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .link-contact-theme_dark.link-contact-filled:hover {
    color: var(--color1-light);
  }
}
.link-contact-theme_dark.link-contact-filled:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.link-contact-theme_dark.link-contact-filled:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: var(--gray-medium);
}
.link-main {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  width: fit-content;
  touch-action: manipulation;
  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);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
.link-main__icon {
  flex-shrink: 0;
  margin-right: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .link-main__icon {
    margin-right: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .link-main__icon {
    margin-right: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-main__icon {
    margin-right: 0.9661835749vw;
  }
}
.link-main__icon svg {
  width: 100%;
  height: 100%;
}
.link-main__text {
  transition: border-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.link-main-flat {
  color: var(--text-icon-gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .link-main-flat:hover {
    color: var(--text-icon-color1-main);
  }
}
.link-main-flat:active {
  color: var(--text-icon-color1-darker);
}
.link-main-underline {
  color: var(--text-icon-color1-dark);
}
@media (hover: hover) and (pointer: fine) {
  .link-main-underline:hover {
    color: var(--text-icon-color1-main);
  }
  .link-main-underline:hover .link-main__text {
    border-color: var(--text-icon-color1-main);
  }
}
.link-main-underline:active {
  color: var(--text-icon-color1-darker);
}
.link-main-underline:active .link-main__text {
  border-color: var(--text-icon-color1-darker);
}
.link-main-underline .link-main__text {
  border-bottom: dashed var(--text-icon-color1-dark);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .link-main-underline .link-main__text {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .link-main-underline .link-main__text {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .link-main-underline .link-main__text {
    border-width: max(0.2415458937vw, 1px);
  }
}
.link-main-size_xl {
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .link-main-size_xl {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_xl {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_xl {
    font-size: 4.8309178744vw;
  }
}
.link-main-size_xl .link-main__icon, .link-main-size_xl .link-main__chevron {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .link-main-size_xl .link-main__icon, .link-main-size_xl .link-main__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_xl .link-main__icon, .link-main-size_xl .link-main__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_xl .link-main__icon, .link-main-size_xl .link-main__chevron {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.link-main-size_l {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .link-main-size_l {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_l {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_l {
    font-size: 3.8647342995vw;
  }
}
.link-main-size_l .link-main__icon, .link-main-size_l .link-main__chevron {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .link-main-size_l .link-main__icon, .link-main-size_l .link-main__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_l .link-main__icon, .link-main-size_l .link-main__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_l .link-main__icon, .link-main-size_l .link-main__chevron {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.link-main-size_m {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .link-main-size_m {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_m {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_m {
    font-size: 3.1400966184vw;
  }
}
.link-main-size_m .link-main__icon, .link-main-size_m .link-main__chevron {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .link-main-size_m .link-main__icon, .link-main-size_m .link-main__chevron {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_m .link-main__icon, .link-main-size_m .link-main__chevron {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_m .link-main__icon, .link-main-size_m .link-main__chevron {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.link-main-size_s {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .link-main-size_s {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_s {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_s {
    font-size: 2.6570048309vw;
  }
}
.link-main-size_s .link-main__icon, .link-main-size_s .link-main__chevron {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .link-main-size_s .link-main__icon, .link-main-size_s .link-main__chevron {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .link-main-size_s .link-main__icon, .link-main-size_s .link-main__chevron {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .link-main-size_s .link-main__icon, .link-main-size_s .link-main__chevron {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.link-main-theme_dark.link-main-flat {
  color: var(--text-icon-gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .link-main-theme_dark.link-main-flat:hover {
    color: var(--text-icon-color1-light);
  }
}
.link-main-theme_dark.link-main-flat:active {
  color: var(--text-icon-gray-light);
}
.link-main-theme_dark.link-main-underline {
  color: var(--text-icon-color1-light);
}
@media (hover: hover) and (pointer: fine) {
  .link-main-theme_dark.link-main-underline:hover {
    color: var(--text-icon-color1-lighter);
  }
  .link-main-theme_dark.link-main-underline:hover .link-main__text {
    border-color: var(--text-icon-color1-lighter);
  }
}
.link-main-theme_dark.link-main-underline:active {
  color: var(--text-icon-color1-main);
}
.link-main-theme_dark.link-main-underline:active .link-main__text {
  border-color: var(--text-icon-color1-main);
}
.link-main-theme_dark.link-main-underline .link-main__text {
  border-bottom: dashed var(--text-icon-color1-light);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .link-main-theme_dark.link-main-underline .link-main__text {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .link-main-theme_dark.link-main-underline .link-main__text {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .link-main-theme_dark.link-main-underline .link-main__text {
    border-width: max(0.2415458937vw, 1px);
  }
}
.tapbar {
  z-index: 1100;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: var(--gray-white);
  padding-inline: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tapbar {
    padding-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar {
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar {
    padding-inline: 1.9323671498vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar {
    display: block;
  }
}
.tapbar-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: solid var(--gray-lighter);
  gap: 0.2083333333vw;
  padding-top: 0.2083333333vw;
  padding-bottom: 0.2083333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .tapbar-list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-list {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-list {
    padding-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-list {
    padding-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-list {
    padding-top: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-list {
    padding-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-list {
    padding-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-list {
    padding-bottom: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-list {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .tapbar-list {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tapbar-list {
    border-width: max(0.4830917874vw, 2px);
  }
}
.tapbar-list__item {
  flex: 1;
}
.tapbar-btn {
  width: 100%;
  text-align: center;
}
.tapbar-btn .btn-menu__text {
  white-space: nowrap;
}
.toast-container {
  z-index: 1200;
  transform: translateZ(0);
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  backface-visibility: hidden;
  right: 0.4166666667vw;
  left: 0.4166666667vw;
  bottom: 0.4166666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .toast-container {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast-container {
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    right: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .toast-container {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast-container {
    left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    left: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .toast-container {
    bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast-container {
    bottom: 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .toast-container {
    bottom: 16.9082125604vw;
  }
}
@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: 1.9323671498vw;
  }
}
.toast {
  position: relative;
  transform: translateY(100%) scale(0.8) translateZ(0);
  transform-origin: bottom center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  background-color: var(--gray-black);
  filter: blur(0.3125vw);
  box-shadow: var(--shadow-near);
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  touch-action: pan-y;
  max-width: 18.6458333333vw;
  gap: 0.625vw;
  padding: 0.4166666667vw;
  padding-inline: 0.625vw;
  border-radius: 0.4166666667vw;
  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);
}
@media screen and (width <= 1401px) {
  .toast {
    max-width: 26.2079062958vw;
  }
}
@media screen and (width <= 811px) {
  .toast {
    max-width: 46.6145833333vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    max-width: 86.4734299517vw;
  }
}
@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: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .toast {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .toast {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    padding: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .toast {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .toast {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .toast {
    padding-inline: 2.8985507246vw;
  }
}
@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: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .toast {
    filter: blur(0.439238653vw);
  }
}
@media screen and (width <= 811px) {
  .toast {
    filter: blur(0.78125vw);
  }
}
@media screen and (width <= 481px) {
  .toast {
    filter: blur(1.4492753623vw);
  }
}
.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-light);
}
.toast_error .toast__content {
  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: 2.8985507246vw;
  }
}
.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.1400966184vw;
  }
}
.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: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.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.1400966184vw;
  }
}
@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;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 0.15625vw;
}
@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.7246376812vw;
  }
}
.modal-cookie {
  z-index: 1200;
  position: fixed;
  top: auto;
  bottom: 0;
  transform: translateY(100%) translateZ(0);
  max-width: 100dvw;
  width: 100%;
  margin: 0;
  background: var(--gray-lighter);
  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);
}
.modal-cookie.active {
  transform: translateY(0) translateZ(0);
  user-select: auto;
  pointer-events: auto;
}
.modal-cookie__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid var(--gray-light);
  gap: 0.4166666667vw;
  padding-top: 0.625vw;
  padding-bottom: 0.8333333333vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .modal-cookie__container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-cookie__container {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    padding-top: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-cookie__container {
    padding-bottom: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    padding-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    padding-bottom: 3.8647342995vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-cookie__container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.modal-cookie__description {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--gray-dark);
  gap: 0.2083333333vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .modal-cookie__description {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__description {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-cookie__description {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__description {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    font-size: 2.6570048309vw;
  }
}
.modal-cookie__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) {
  .modal-cookie__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__title {
    font-size: 3.8647342995vw;
  }
}
.modal-cookie__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .modal-cookie__text {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__text {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__text {
    gap: 0.9661835749vw;
  }
}
.modal-cookie__submit {
  width: max-content;
}
@media screen and (width <= 481px) {
  .modal-cookie__submit {
    width: 100%;
  }
}
.modal-cookie__submit:focus-visible {
  outline: none;
}
.modal {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%) translateZ(0);
  display: none;
  max-height: calc(100vh - 40px);
  opacity: 0;
  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 {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%) translateZ(0);
    width: 100%;
    max-height: 100vh;
    height: 100vh;
  }
}
.modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(0);
}
@media screen and (width <= 811px) {
  .modal.active {
    transform: translate(0) translateZ(0);
  }
}
.modal-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  max-height: inherit;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .modal-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-container {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .modal-container {
    height: inherit;
    flex-direction: column;
    gap: unset;
  }
}
@media screen and (width > 811px) {
  .modal-close {
    border-radius: 50%;
  }
}
@media screen and (width <= 811px) {
  .modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-header {
    padding: 1.9323671498vw 1.9323671498vw 1.9323671498vw 3.8647342995vw;
  }
}
@media screen and (width <= 811px) {
  .modal-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1.0416666667vw;
    right: 1.0416666667vw;
    height: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-header:after {
    left: 1.9323671498vw;
    right: 1.9323671498vw;
    height: 0.4830917874vw;
  }
}
.modal-header__title {
  display: none;
  flex: 1;
  text-transform: uppercase;
  color: var(--text-icon-gray-black);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-header__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-header__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-header__title {
    font-size: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .modal-header__title {
    display: block;
  }
}
.modal-header__logo {
  margin-right: auto;
}
.modal-body {
  display: grid;
  grid-template-rows: min-content 1fr;
  max-height: inherit;
  width: 100%;
  box-shadow: var(--shadow-far);
  padding: 1.6666666667vw;
  border-radius: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .modal-body {
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .modal-body {
    padding: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-body {
    padding: 7.729468599vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-body {
    border-radius: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .modal-body {
    border-radius: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-body {
    border-radius: 7.729468599vw;
  }
}
@media screen and (width <= 811px) {
  .modal-body {
    width: 100%;
    flex-grow: 1;
    padding-top: 2.6041666667vw;
    padding-bottom: 9.1145833333vw;
    padding-inline: 2.0833333333vw;
    border-radius: unset;
    overflow-y: auto;
  }
}
@media screen and (width <= 481px) {
  .modal-body {
    padding-top: 4.8309178744vw;
    padding-bottom: 16.9082125604vw;
    padding-inline: 3.8647342995vw;
  }
}
.modal-body__block {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .modal-body__block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-body__block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-body__block {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-body__block {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-body__block {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-body__block {
    margin-bottom: 4.8309178744vw;
  }
}
.modal-body__block_empty {
  margin-bottom: unset;
}
.modal-body__content {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-body__content::-webkit-scrollbar {
  display: none;
}
.modal-body__content::-webkit-scrollbar-thumb {
  display: none;
}
.modal-title {
  text-transform: uppercase;
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .modal-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-title {
    font-size: 4.8309178744vw;
  }
}
.modal__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .modal__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal__text {
    font-size: 3.8647342995vw;
  }
}
.modal-size_large.modal {
  width: 36.4583333333vw;
}
@media screen and (width <= 1401px) {
  .modal-size_large.modal {
    width: 51.2445095168vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_large.modal {
    width: 91.1458333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-size_large.modal {
    width: 169.0821256039vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_large.modal {
    width: 100%;
  }
}
.modal-size_medium.modal {
  width: 33.3333333333vw;
}
@media screen and (width <= 1401px) {
  .modal-size_medium.modal {
    width: 46.8521229868vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_medium.modal {
    width: 83.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-size_medium.modal {
    width: 154.5893719807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_medium.modal {
    width: 100%;
  }
}
.modal-size_small.modal {
  width: 29.1666666667vw;
}
@media screen and (width <= 1401px) {
  .modal-size_small.modal {
    width: 40.9956076135vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_small.modal {
    width: 72.9166666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-size_small.modal {
    width: 135.2657004831vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_small.modal {
    width: 100%;
  }
}
.modal-size_extra-small.modal {
  width: 25vw;
}
@media screen and (width <= 1401px) {
  .modal-size_extra-small.modal {
    width: 35.1390922401vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_extra-small.modal {
    width: 62.5vw;
  }
}
@media screen and (width <= 481px) {
  .modal-size_extra-small.modal {
    width: 115.9420289855vw;
  }
}
@media screen and (width <= 811px) {
  .modal-size_extra-small.modal {
    width: 100%;
  }
}
@media screen and (width <= 811px) {
  .modal-theme_light .modal-close {
    background: var(--gray-lighter);
    color: var(--gray-darker);
  }
  .modal-theme_light .modal-close:active {
    background: var(--color1-light);
  }
}
@media screen and (width <= 811px) {
  .modal-theme_light .modal-header {
    background: var(--gray-white);
  }
}
.modal-theme_light .modal-header::after {
  background: var(--gray-lighter);
}
.modal-theme_light .modal-body {
  background: var(--gray-white);
}
.modal-theme_light .modal-title {
  color: var(--text-icon-gray-darker);
}
.modal-theme_light .modal-text {
  color: var(--text-icon-gray-dark);
}
@media screen and (width <= 811px) {
  .modal-theme_dark .modal-close {
    background: var(--gray-dark);
    color: var(--gray-white);
  }
  .modal-theme_dark .modal-close:active {
    background: var(--gray-darker);
    border-color: var(--gray-dark);
  }
}
@media screen and (width <= 811px) {
  .modal-theme_dark .modal-header {
    background: var(--gray-darker);
  }
}
.modal-theme_dark .modal-header::after {
  background: var(--gray-dark);
}
.modal-theme_dark .modal-body {
  background: var(--gray-darker);
}
.modal-theme_dark .modal-title {
  color: var(--gray-white);
}
.modal-theme_dark .modal-text {
  color: var(--text-icon-gray-lighter);
}
@media screen and (width <= 811px) {
  .modal-animation_left.modal {
    top: 0;
    right: unset;
    transform: translate(-100%, 0) translateZ(0);
  }
}
@media screen and (width <= 811px) {
  .modal-animation_left.modal.active {
    transform: translate(0, 0) translateZ(0);
  }
}
@media screen and (width <= 811px) {
  .modal-animation_right.modal {
    top: 0;
    left: unset;
    transform: translate(100%, 0) translateZ(0);
  }
}
@media screen and (width <= 811px) {
  .modal-animation_right.modal.active {
    transform: translate(0, 0) translateZ(0);
  }
}
@media screen and (width <= 811px) {
  .modal-success .form-return_horizontal .form-return__container, .modal-error .form-return_horizontal .form-return__container {
    flex-direction: column;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success .form-return_horizontal .form-return__container, .modal-error .form-return_horizontal .form-return__container {
    gap: 2.8985507246vw;
  }
}
.nav-menu, .nav-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .nav-menu, .nav-menu__footer {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .nav-menu, .nav-menu__footer {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-menu, .nav-menu__footer {
    gap: 4.8309178744vw;
  }
}
.nav-menu {
  height: 100%;
}
.nav-menu__list {
  flex: 1;
}
.nav-menu__footer {
  align-items: center;
}
.nav-menu__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .nav-menu__contacts {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .nav-menu__contacts {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .nav-menu__contacts {
    gap: 2.8985507246vw;
  }
}
.nav-menu__socails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .nav-menu__socails {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .nav-menu__socails {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .nav-menu__socails {
    gap: 1.9323671498vw;
  }
}
.modal-menu {
  height: 100vh;
}
.modal-menu .modal-container {
  height: 100%;
}
.modal-menu .modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modal-menu .modal-body__content {
  flex: 1;
}
.nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .nav-menu-list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .nav-menu-list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .nav-menu-list {
    gap: 0.9661835749vw;
  }
}
.nav-menu-list__dropdown {
  display: grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.nav-menu-list__dropdown.dropdown-tab_locked {
  grid-template-rows: min-content 1fr;
}
.nav-menu-list__dropdown .dropdown-tab__trigger {
  justify-content: flex-start;
  width: 100%;
  text-align: left;
}
.nav-menu-list__dropdown .dropdown-tab__trigger .tab-main__text {
  flex: unset;
}
.nav-menu-list__dropdown .dropdown-list {
  position: static;
  transform: unset;
  width: 100%;
  padding: unset;
  border: unset;
  box-shadow: unset;
  overflow: hidden;
  padding-inline: 0.625vw;
}
@media screen and (width <= 1401px) {
  .nav-menu-list__dropdown .dropdown-list {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .nav-menu-list__dropdown .dropdown-list {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .nav-menu-list__dropdown .dropdown-list {
    padding-inline: 2.8985507246vw;
  }
}
.nav-menu-list__dropdown .dropdown-list__item .tab-main__text {
  font-weight: normal;
}
.geo-tpl {
  height: 100%;
}
.geo-tpl__title {
  text-transform: uppercase;
  color: var(--text-icon-gray-darker);
  margin-bottom: 1.0416666667vw;
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .geo-tpl__title {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__title {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__title {
    margin-bottom: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__title {
    font-size: 4.8309178744vw;
  }
}
.geo-tpl__title span {
  color: var(--text-icon-color1-dark);
}
.geo-tpl__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .geo-tpl__buttons {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__buttons {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__buttons {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__buttons {
    display: flex;
    flex-direction: column-reverse;
  }
}
.geo-tpl__confirm, .geo-tpl__search {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.geo-tpl__confirm {
  justify-content: space-between;
}
.geo-tpl__search {
  display: none;
}
.geo-tpl__dropdown {
  position: relative;
  flex: 1;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown {
    margin-bottom: 4.8309178744vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
}
.geo-tpl__dropdown.active .geo-tpl__dropdown-wrapper {
  opacity: 1;
  z-index: 2;
  user-select: auto;
  pointer-events: all;
}
.geo-tpl__dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  padding-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-wrapper {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-wrapper {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-wrapper {
    padding-top: 2.8985507246vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-wrapper {
    position: static;
    overflow-y: auto;
  }
}
.geo-tpl__dropdown-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--gray-white);
  box-shadow: var(--shadow-medium);
  overflow-y: auto;
  max-height: 15vw;
  gap: 0.4166666667vw;
  padding: 0.4166666667vw;
  border-radius: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-list {
    max-height: 21.0834553441vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-list {
    max-height: 30.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-list {
    max-height: 56.038647343vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-list {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-list {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-list {
    gap: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-list {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-list {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-list {
    padding: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-list {
    border-radius: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-list {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-list {
    border-radius: 3.8647342995vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-list {
    max-height: unset;
    box-shadow: unset;
  }
}
.geo-tpl__dropdown-item-empty {
  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-tpl__dropdown-item-empty {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item-empty {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item-empty {
    padding: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-item-empty {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item-empty {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item-empty {
    font-size: 3.8647342995vw;
  }
}
.geo-tpl__dropdown-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--text-icon-gray-darker);
  background: var(--gray-lighter);
  cursor: pointer;
  height: 2.0833333333vw;
  padding-inline: 0.625vw;
  border-radius: 0.4166666667vw;
  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), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-item {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item {
    height: 9.6618357488vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-item {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-item {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .geo-tpl__dropdown-item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .geo-tpl__dropdown-item {
    font-size: 3.1400966184vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .geo-tpl__dropdown-item:hover {
    color: var(--color1-main);
    background: var(--gray-lighter);
  }
}
.geo-tpl__dropdown-item:active {
  color: var(--color1-dark);
  background: var(--color1-lighter);
}
@media screen and (width <= 811px) {
  .geo-tpl__dropdown-item {
    background: transparent;
  }
}
@media screen and (width <= 811px) {
  #modal-geo {
    height: 100vh;
  }
}
#modal-geo .modal-container {
  height: 100%;
}
#modal-geo .modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
@media screen and (width <= 811px) {
  #modal-geo .modal-body {
    overflow-y: auto;
  }
}
#modal-geo .modal-body__content {
  height: 100%;
}
.form-cb {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-cb {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-cb {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-cb {
    gap: 4.8309178744vw;
  }
}
.form-cb__fields, .form-cb__submit {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-cb__fields, .form-cb__submit {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-cb__fields, .form-cb__submit {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-cb__fields, .form-cb__submit {
    gap: 2.8985507246vw;
  }
}
.input-textarea {
  /*----------CORE STYLE-----------*/
  /*----------LABEL POSITION-----------*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
.input-textarea__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.input-textarea__inner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-textarea__input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-textarea__label {
  color: var(--gray-medium);
  flex-shrink: 0;
  margin-bottom: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .input-textarea__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea__label {
    margin-bottom: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea__label {
    font-size: 2.6570048309vw;
  }
}
.input-textarea__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) {
  .input-textarea__field {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .input-textarea__field {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .input-textarea__field {
    border-width: max(0.4830917874vw, 2px);
  }
}
.input-textarea__field:focus {
  outline: none;
}
.input-textarea__field:disabled {
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(1);
}
.input-textarea__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) {
  .input-textarea__error-message {
    margin-top: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea__error-message {
    margin-top: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea__error-message {
    margin-top: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea__error-message {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea__error-message {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea__error-message {
    font-size: 2.6570048309vw;
  }
}
.input-textarea-pos_standard.input-textarea__label {
  display: block;
  color: var(--gray-medium);
  order: -1;
  margin-bottom: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .input-textarea-pos_standard.input-textarea__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-pos_standard.input-textarea__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-pos_standard.input-textarea__label {
    margin-bottom: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-pos_standard.input-textarea__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-pos_standard.input-textarea__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-pos_standard.input-textarea__label {
    font-size: 2.6570048309vw;
  }
}
.input-textarea-pos_standard.input-textarea__wrapper {
  display: flex;
  flex-direction: column;
}
.input-textarea-pos_hidden.input-textarea__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.input-textarea-style_filled .input-textarea__field {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-style_filled .input-textarea__field:hover {
    border-color: var(--gray-light);
  }
}
.input-textarea-style_filled .input-textarea__field:focus {
  background: var(--gray-white);
  border-color: var(--gray-light);
}
.input-textarea-style_filled .input-textarea__field::placeholder {
  color: var(--gray-medium);
}
.input-textarea-style_filled .input-textarea__icon {
  color: var(--gray-light);
}
.input-textarea-style_filled .input-textarea__reset-icon {
  color: var(--gray-light);
}
.input-textarea-style_outline .input-textarea__field {
  background: var(--gray-white);
  border-color: var(--gray-light);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-style_outline .input-textarea__field:hover {
    border-color: var(--color1-light);
  }
}
.input-textarea-style_outline .input-textarea__field:focus {
  border-color: var(--color1-main);
}
.input-textarea-style_outline .input-textarea__field::placeholder {
  color: var(--gray-medium);
}
.input-textarea-style_outline .input-textarea__icon {
  color: var(--gray-light);
}
.input-textarea-style_outline .input-textarea__reset-icon {
  color: var(--gray-light);
}
.input-textarea-style_underline .input-textarea__field {
  background: transparent;
  border-bottom-color: var(--gray-light);
  color: var(--gray-darker);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-style_underline .input-textarea__field:hover {
    border-bottom-color: var(--color1-light);
  }
}
.input-textarea-style_underline .input-textarea__field:focus {
  border-bottom-color: var(--color1-main);
}
.input-textarea-style_underline .input-textarea__field::placeholder {
  color: var(--gray-medium);
}
.input-textarea-style_underline .input-textarea__icon {
  color: var(--gray-light);
}
.input-textarea-style_underline .input-textarea__reset-icon {
  color: var(--gray-light);
}
.input-textarea-size_l .input-textarea__field {
  height: 6.0416666667vw;
  padding: 0.5729166667vw;
  padding-inline: 0.7291666667vw;
  border-radius: 0.625vw;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-textarea-size_l .input-textarea__field {
    height: 8.4919472914vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_l .input-textarea__field {
    height: 15.1041666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_l .input-textarea__field {
    height: 28.0193236715vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_l .input-textarea__field {
    padding: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_l .input-textarea__field {
    padding: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_l .input-textarea__field {
    padding: 2.6570048309vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_l .input-textarea__field {
    padding-inline: 1.0248901903vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_l .input-textarea__field {
    padding-inline: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_l .input-textarea__field {
    padding-inline: 3.3816425121vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_l .input-textarea__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_l .input-textarea__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_l .input-textarea__field {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_l .input-textarea__field {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_l .input-textarea__field {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_l .input-textarea__field {
    font-size: 4.8309178744vw;
  }
}
.input-textarea-size_m .input-textarea__field {
  height: 5vw;
  padding: 0.5208333333vw;
  padding-inline: 0.7291666667vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-textarea-size_m .input-textarea__field {
    height: 7.027818448vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_m .input-textarea__field {
    height: 12.5vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_m .input-textarea__field {
    height: 23.1884057971vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_m .input-textarea__field {
    padding: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_m .input-textarea__field {
    padding: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_m .input-textarea__field {
    padding: 2.4154589372vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_m .input-textarea__field {
    padding-inline: 1.0248901903vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_m .input-textarea__field {
    padding-inline: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_m .input-textarea__field {
    padding-inline: 3.3816425121vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_m .input-textarea__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_m .input-textarea__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_m .input-textarea__field {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_m .input-textarea__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_m .input-textarea__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_m .input-textarea__field {
    font-size: 3.8647342995vw;
  }
}
.input-textarea-size_s .input-textarea__field {
  height: 4.5833333333vw;
  padding: 0.3125vw;
  padding-inline: 0.5208333333vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-textarea-size_s .input-textarea__field {
    height: 6.4421669107vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_s .input-textarea__field {
    height: 11.4583333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_s .input-textarea__field {
    height: 21.2560386473vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_s .input-textarea__field {
    padding: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_s .input-textarea__field {
    padding: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_s .input-textarea__field {
    padding: 1.4492753623vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_s .input-textarea__field {
    padding-inline: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_s .input-textarea__field {
    padding-inline: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_s .input-textarea__field {
    padding-inline: 2.4154589372vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_s .input-textarea__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_s .input-textarea__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_s .input-textarea__field {
    border-radius: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_s .input-textarea__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_s .input-textarea__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_s .input-textarea__field {
    font-size: 3.8647342995vw;
  }
}
.input-textarea-size_xs .input-textarea__field {
  height: 3.75vw;
  padding: 0.2083333333vw;
  padding-inline: 0.5208333333vw;
  border-radius: 0.4166666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .input-textarea-size_xs .input-textarea__field {
    height: 5.270863836vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_xs .input-textarea__field {
    height: 9.375vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_xs .input-textarea__field {
    height: 17.3913043478vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_xs .input-textarea__field {
    padding: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_xs .input-textarea__field {
    padding: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_xs .input-textarea__field {
    padding: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_xs .input-textarea__field {
    padding-inline: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_xs .input-textarea__field {
    padding-inline: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_xs .input-textarea__field {
    padding-inline: 2.4154589372vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_xs .input-textarea__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_xs .input-textarea__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_xs .input-textarea__field {
    border-radius: 1.9323671498vw;
  }
}
@media screen and (width <= 1401px) {
  .input-textarea-size_xs .input-textarea__field {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .input-textarea-size_xs .input-textarea__field {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .input-textarea-size_xs .input-textarea__field {
    font-size: 3.1400966184vw;
  }
}
.input-textarea-theme_dark .input-textarea__label {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_filled .input-textarea__field {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-theme_dark.input-textarea-style_filled .input-textarea__field:hover {
    border-color: var(--gray-medium);
  }
}
.input-textarea-theme_dark.input-textarea-style_filled .input-textarea__field:focus {
  background: var(--gray-black);
  border-color: var(--gray-medium);
}
.input-textarea-theme_dark.input-textarea-style_filled .input-textarea__field::placeholder {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_filled .input-textarea__icon {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_filled .input-textarea__reset-icon {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_outline .input-textarea__field {
  background: var(--gray-black);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-theme_dark.input-textarea-style_outline .input-textarea__field:hover {
    border-color: var(--color1-darker);
  }
}
.input-textarea-theme_dark.input-textarea-style_outline .input-textarea__field:focus {
  border-color: var(--color1-main);
}
.input-textarea-theme_dark.input-textarea-style_outline .input-textarea__field::placeholder {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_outline .input-textarea__icon {
  color: var(--gray-medium);
}
.input-textarea-theme_dark.input-textarea-style_outline .input-textarea__reset-icon {
  color: var(--gray-medium);
}
.input-textarea-theme_dark.input-textarea-style_underline.input-textarea__field {
  background: transparent;
  border-bottom-color: var(--gray-dark);
  color: var(--gray-white);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .input-textarea-theme_dark.input-textarea-style_underline.input-textarea__field:hover {
    border-bottom-color: var(--color1-darker);
  }
}
.input-textarea-theme_dark.input-textarea-style_underline.input-textarea__field:focus {
  border-bottom-color: var(--color1-main);
}
.input-textarea-theme_dark.input-textarea-style_underline.input-textarea__field::placeholder {
  color: var(--gray-light);
}
.input-textarea-theme_dark.input-textarea-style_underline.input-textarea__icon {
  color: var(--gray-medium);
}
.input-textarea-theme_dark.input-textarea-style_underline.input-textarea__reset-icon {
  color: var(--gray-medium);
}
.form-accent {
  display: inline-flex;
}
.form-accent .checkbox .checkbox__text {
  padding-top: 0.1822916667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-accent .checkbox .checkbox__text {
    padding-top: 0.2562225476vw;
  }
}
@media screen and (width <= 811px) {
  .form-accent .checkbox .checkbox__text {
    padding-top: 0.4557291667vw;
  }
}
@media screen and (width <= 481px) {
  .form-accent .checkbox .checkbox__text {
    padding-top: 0.845410628vw;
  }
}
@media screen and (width <= 1401px) {
  .form-accent .checkbox .checkbox__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .form-accent .checkbox .checkbox__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .form-accent .checkbox .checkbox__text {
    font-size: 3.1400966184vw;
  }
}
.form-accent_light .checkbox .checkbox__text {
  color: var(--text-icon-gray-medium);
}
.form-accent_light .checkbox__text a {
  color: var(--text-icon-gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .form-accent_light .checkbox__text a:hover {
    color: var(--color1-main);
  }
}
.form-accent_light .checkbox__text a:active {
  color: var(--color1-darker);
}
.form-accent_dark .checkbox .checkbox__text {
  color: var(--text-icon-gray-light);
}
.form-accent_dark .checkbox__text a {
  color: var(--text-icon-gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .form-accent_dark .checkbox__text a:hover {
    color: var(--color1-main);
  }
}
.form-accent_dark .checkbox__text a:active {
  color: var(--color1-darker);
}
.checkbox {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: inline-flex;
  width: fit-content;
  cursor: pointer;
  touch-action: manipulation;
  gap: 0.4166666667vw;
  transition: background-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------POSITION-----------*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .checkbox {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox {
    gap: 1.9323671498vw;
  }
}
.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.checkbox__icon {
  position: relative;
  flex-shrink: 0;
}
.checkbox__icon-default, .checkbox__icon-hover, .checkbox__icon-active, .checkbox__icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
}
.checkbox__icon-default, .checkbox__icon-hover, .checkbox__icon-line {
  color: var(--gray-medium);
}
.checkbox__icon-hover, .checkbox__icon-active {
  visibility: hidden;
  opacity: 0;
}
.checkbox__icon-default {
  visibility: visible;
  opacity: 1;
}
.checkbox__icon-active {
  color: var(--color1-main);
}
.checkbox__icon-line path {
  fill: transparent;
  transition: all 0.2s ease;
}
.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: 3.8647342995vw;
  }
}
.checkbox__text 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__text a:hover {
    color: var(--color1-main);
  }
}
.checkbox__text a:active {
  color: var(--color1-darker);
}
.checkbox-position_left {
  flex-direction: row;
}
.checkbox-position_right {
  flex-direction: row-reverse;
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-solid:hover .checkbox__input:not(:checked) ~ .checkbox__icon .checkbox__icon-hover {
    visibility: visible;
    opacity: 1;
  }
  .checkbox-solid:hover .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-active {
    color: var(--color1-light);
  }
}
.checkbox-solid .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-default, .checkbox-solid .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-hover {
  visibility: hidden;
  opacity: 0;
}
.checkbox-solid .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-active {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-line:hover .checkbox__input:not(:checked) ~ .checkbox__icon .checkbox__icon-line path {
    fill: var(--color1-light);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line {
    color: var(--color1-dark);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line path {
    fill: var(--color1-dark);
  }
}
.checkbox-line .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line {
  color: var(--color1-main);
}
.checkbox-line .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line path {
  fill: var(--color1-main);
}
.checkbox-size-icon_m .checkbox-line .checkbox__input, .checkbox-size-icon_m .checkbox-line .checkbox__icon {
  width: 1.7708333333vw;
  height: 1.7708333333vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_m .checkbox-line .checkbox__input, .checkbox-size-icon_m .checkbox-line .checkbox__icon {
    width: 2.4890190337vw;
    height: 2.4890190337vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_m .checkbox-line .checkbox__input, .checkbox-size-icon_m .checkbox-line .checkbox__icon {
    width: 4.4270833333vw;
    height: 4.4270833333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_m .checkbox-line .checkbox__input, .checkbox-size-icon_m .checkbox-line .checkbox__icon {
    width: 8.2125603865vw;
    height: 8.2125603865vw;
  }
}
.checkbox-size-icon_m .checkbox__input, .checkbox-size-icon_m .checkbox__icon {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_m .checkbox__input, .checkbox-size-icon_m .checkbox__icon {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_m .checkbox__input, .checkbox-size-icon_m .checkbox__icon {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_m .checkbox__input, .checkbox-size-icon_m .checkbox__icon {
    width: 7.729468599vw;
    height: 7.729468599vw;
  }
}
.checkbox-size-icon_m .checkbox__text {
  padding-top: 0.2083333333vw;
  padding-bottom: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-top: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_m .checkbox__text {
    padding-bottom: 0.9661835749vw;
  }
}
.checkbox-size-icon_s .checkbox-line .checkbox__input, .checkbox-size-icon_s .checkbox-line .checkbox__icon {
  width: 1.3541666667vw;
  height: 1.3541666667vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_s .checkbox-line .checkbox__input, .checkbox-size-icon_s .checkbox-line .checkbox__icon {
    width: 1.9033674963vw;
    height: 1.9033674963vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_s .checkbox-line .checkbox__input, .checkbox-size-icon_s .checkbox-line .checkbox__icon {
    width: 3.3854166667vw;
    height: 3.3854166667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_s .checkbox-line .checkbox__input, .checkbox-size-icon_s .checkbox-line .checkbox__icon {
    width: 6.2801932367vw;
    height: 6.2801932367vw;
  }
}
.checkbox-size-icon_s .checkbox__input, .checkbox-size-icon_s .checkbox__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size-icon_s .checkbox__input, .checkbox-size-icon_s .checkbox__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size-icon_s .checkbox__input, .checkbox-size-icon_s .checkbox__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size-icon_s .checkbox__input, .checkbox-size-icon_s .checkbox__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.checkbox-size_m {
  padding-top: 0.2083333333vw;
  padding-bottom: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size_m {
    padding-top: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_m {
    padding-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m {
    padding-top: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size_m {
    padding-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_m {
    padding-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m {
    padding-bottom: 0.9661835749vw;
  }
}
.checkbox-theme_light .checkbox__text {
  color: var(--gray-dark);
}
.checkbox-theme_dark .checkbox__text {
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-theme_dark.checkbox-line:hover .checkbox__input:not(:checked) ~ .checkbox__icon .checkbox__icon-line path {
    fill: var(--color1-darker);
  }
  .checkbox-theme_dark.checkbox-line:hover .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line {
    color: var(--color1-light);
  }
  .checkbox-theme_dark.checkbox-line:hover .checkbox__input:checked ~ .checkbox__icon .checkbox__icon-line path {
    fill: var(--color1-light);
  }
}
.loader {
  --animation-speed: 2s;
  transform-origin: center;
  animation: rotate var(--animation-speed) linear infinite;
  will-change: transform;
  overflow: visible;
}
.loader-circle {
  fill: none;
  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;
}
.loader_xs {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .loader_xs {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .loader_xs {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .loader_xs {
    width: 3.8647342995vw;
    height: 3.8647342995vw;
  }
}
.loader_xs .loader-circle {
  stroke-width: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .loader_xs .loader-circle {
    stroke-width: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .loader_xs .loader-circle {
    stroke-width: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .loader_xs .loader-circle {
    stroke-width: 0.4830917874vw;
  }
}
.loader_s {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .loader_s {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .loader_s {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .loader_s {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.loader_s .loader-circle {
  stroke-width: 0.1041666667vw;
}
@media screen and (width <= 1401px) {
  .loader_s .loader-circle {
    stroke-width: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .loader_s .loader-circle {
    stroke-width: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .loader_s .loader-circle {
    stroke-width: 0.4830917874vw;
  }
}
.loader_m {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .loader_m {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .loader_m {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .loader_m {
    width: 9.6618357488vw;
    height: 9.6618357488vw;
  }
}
.loader_m .loader-circle {
  stroke-width: 0.15625vw;
}
@media screen and (width <= 1401px) {
  .loader_m .loader-circle {
    stroke-width: 0.2196193265vw;
  }
}
@media screen and (width <= 811px) {
  .loader_m .loader-circle {
    stroke-width: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .loader_m .loader-circle {
    stroke-width: 0.7246376812vw;
  }
}
.loader_l {
  width: 2.5vw;
  height: 2.5vw;
}
@media screen and (width <= 1401px) {
  .loader_l {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .loader_l {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .loader_l {
    width: 11.5942028986vw;
    height: 11.5942028986vw;
  }
}
.loader_l .loader-circle {
  stroke-width: 0.1822916667vw;
}
@media screen and (width <= 1401px) {
  .loader_l .loader-circle {
    stroke-width: 0.2562225476vw;
  }
}
@media screen and (width <= 811px) {
  .loader_l .loader-circle {
    stroke-width: 0.4557291667vw;
  }
}
@media screen and (width <= 481px) {
  .loader_l .loader-circle {
    stroke-width: 0.845410628vw;
  }
}
@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;
  }
}
.form-return {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-return {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-return {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-return {
    gap: 4.8309178744vw;
  }
}
.form-return__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.form-return__marker {
  flex-shrink: 0;
}
.form-return__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-return__block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-return__block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-return__block {
    gap: 2.8985507246vw;
  }
}
.form-return__title {
  text-transform: uppercase;
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .form-return__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-return__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-return__title {
    font-size: 4.8309178744vw;
  }
}
.form-return__text {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-return__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .form-return__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .form-return__text {
    font-size: 3.8647342995vw;
  }
}
.form-return_horizontal .form-return__container {
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-return_horizontal .form-return__container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-return_horizontal .form-return__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-return_horizontal .form-return__container {
    gap: 4.8309178744vw;
  }
}
.form-return_vertical .form-return__container {
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-return_vertical .form-return__container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-return_vertical .form-return__container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-return_vertical .form-return__container {
    gap: 2.8985507246vw;
  }
}
.form-return_success .form-return__marker {
  color: var(--success-dark);
  background: var(--success-light);
}
.form-return_error .form-return__marker {
  color: var(--error-dark);
  background: var(--error-light);
}
.form-login-verify, .form-login-verify__form {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-login-verify, .form-login-verify__form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-login-verify, .form-login-verify__form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-login-verify, .form-login-verify__form {
    gap: 4.8309178744vw;
  }
}
.form-login-verify__text {
  color: var(--text-icon-gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-login-verify__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .form-login-verify__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login-verify__text {
    font-size: 3.8647342995vw;
  }
}
.form-login-verify__fields, .form-login-verify__submit {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-login-verify__fields, .form-login-verify__submit {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-login-verify__fields, .form-login-verify__submit {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-login-verify__fields, .form-login-verify__submit {
    gap: 2.8985507246vw;
  }
}
.form-login-verify__alert {
  display: none;
  text-align: center;
  color: var(--error-dark);
  visibility: hidden;
  opacity: 0;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .form-login-verify__alert {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .form-login-verify__alert {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login-verify__alert {
    font-size: 3.1400966184vw;
  }
}
.form-login-verify__alert.success {
  color: var(--success-medium);
}
.form-login-verify__alert.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.form-login-verify__back {
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .form-login-verify__back.link-main-flat:hover .link-main__icon {
    color: var(--text-icon-color1-main);
  }
}
.form-login-verify__back.link-main-flat:active .link-main__icon {
  color: var(--text-icon-color1-darker);
}
.form-login-verify__back.link-main-flat .link-main__icon {
  color: var(--text-icon-color1-dark);
}
.form-login-verify__retry:disabled .btn__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-login-verify__retry:disabled .btn__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .form-login-verify__retry:disabled .btn__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login-verify__retry:disabled .btn__text {
    font-size: 3.8647342995vw;
  }
}
.login-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .login-socials {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .login-socials {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .login-socials {
    gap: 2.8985507246vw;
  }
}
.login-socials__title {
  color: var(--text-icon-gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .login-socials__title {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .login-socials__title {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .login-socials__title {
    font-size: 3.1400966184vw;
  }
}
.login-socials__list {
  display: inline-flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .login-socials__list {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .login-socials__list {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .login-socials__list {
    gap: 1.9323671498vw;
  }
}
.form-login, .form-login__form {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-login, .form-login__form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-login, .form-login__form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-login, .form-login__form {
    gap: 4.8309178744vw;
  }
}
.form-login__text {
  color: var(--text-icon-gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-login__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__text {
    font-size: 3.8647342995vw;
  }
}
.form-login__fields, .form-login__submit {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-login__fields, .form-login__submit {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__fields, .form-login__submit {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__fields, .form-login__submit {
    gap: 2.8985507246vw;
  }
}
.form-login__alert {
  display: none;
  text-align: center;
  color: var(--error-dark);
  visibility: hidden;
  opacity: 0;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .form-login__alert {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__alert {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__alert {
    font-size: 3.1400966184vw;
  }
}
.form-login__alert.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.form-login__form-container {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .form-login__form-container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__form-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__form-container {
    gap: 1.9323671498vw;
  }
}
.form-login__form-selector .selector-tab {
  height: 1.6666666667vw;
}
@media screen and (width <= 1401px) {
  .form-login__form-selector .selector-tab {
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__form-selector .selector-tab {
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__form-selector .selector-tab {
    height: 7.729468599vw;
  }
}
.form-login__form-selector .selector-tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .form-login__form-selector .selector-tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .form-login__form-selector .selector-tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .form-login__form-selector .selector-tab__text {
    font-size: 3.1400966184vw;
  }
}
.selector-list {
  display: inline-flex;
  border: solid;
  gap: 0.2083333333vw;
  padding: 0.1041666667vw;
  border-width: max(0.1041666667vw, 2px);
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .selector-list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .selector-list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .selector-list {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-list {
    padding: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .selector-list {
    padding: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .selector-list {
    padding: 0.4830917874vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-list {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .selector-list {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .selector-list {
    border-width: max(0.4830917874vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .selector-list {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .selector-list {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .selector-list {
    border-radius: 2.8985507246vw;
  }
}
.selector-list__item {
  flex: 1;
  justify-content: center;
}
.selector-list-theme_light {
  border-color: var(--gray-lighter);
}
.selector-list-theme_dark {
  border-color: var(--gray-dark);
}
.selector-tab {
  display: inline-flex;
  align-items: center;
  color: var(--gray-medium);
  background: transparent;
  gap: 0.2083333333vw;
  height: 2.5vw;
  padding-inline: 0.625vw;
  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) {
  .selector-tab {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab {
    gap: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-tab {
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab {
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab {
    height: 11.5942028986vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-tab {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab {
    padding-inline: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-tab {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab {
    border-radius: 1.9323671498vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .selector-tab:hover {
    color: var(--color1-main);
  }
}
.selector-tab:active {
  color: var(--color1-dark);
}
.selector-tab.active {
  cursor: default;
}
.selector-tab__icon {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .selector-tab__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab__icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.selector-tab__icon svg {
  width: 100%;
  height: 100%;
}
.selector-tab__text {
  padding-inline: 0.2083333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .selector-tab__text {
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab__text {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab__text {
    padding-inline: 0.9661835749vw;
  }
}
@media screen and (width <= 1401px) {
  .selector-tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .selector-tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .selector-tab__text {
    font-size: 3.8647342995vw;
  }
}
.selector-tab-theme_light.active {
  color: var(--gray-darker);
  background: var(--gray-lighter);
}
.selector-tab-theme_dark.active {
  color: var(--gray-white);
  background: var(--gray-dark);
}
.form-success {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-success {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-success {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-success {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 481px) {
  .form-success {
    grid-template-columns: 1fr;
  }
}
.form-reg, .form-reg__form {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-reg, .form-reg__form {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-reg, .form-reg__form {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-reg, .form-reg__form {
    gap: 4.8309178744vw;
  }
}
.form-reg__text {
  color: var(--text-icon-gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .form-reg__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .form-reg__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .form-reg__text {
    font-size: 3.8647342995vw;
  }
}
.form-reg__fields, .form-reg__submit {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-reg__fields, .form-reg__submit {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-reg__fields, .form-reg__submit {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-reg__fields, .form-reg__submit {
    gap: 2.8985507246vw;
  }
}
.form-reg__alert {
  display: none;
  text-align: center;
  color: var(--error-dark);
  visibility: hidden;
  opacity: 0;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .form-reg__alert {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .form-reg__alert {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .form-reg__alert {
    font-size: 3.1400966184vw;
  }
}
.form-reg__alert.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.notification {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .notification {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .notification {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .notification {
    gap: 4.8309178744vw;
  }
}
.notification-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .notification-list {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .notification-list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .notification-list {
    gap: 2.8985507246vw;
  }
}
.notification-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.0416666667vw;
  padding-top: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .notification-empty {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .notification-empty {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .notification-empty {
    gap: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .notification-empty {
    padding-top: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .notification-empty {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .notification-empty {
    padding-top: 9.6618357488vw;
  }
}
.notification .notification-empty__marker {
  color: var(--error-dark);
  background: var(--error-light);
}
.notification-empty__block {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .notification-empty__block {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .notification-empty__block {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .notification-empty__block {
    gap: 1.9323671498vw;
  }
}
.notification-empty__title {
  color: var(--text-icon-gray-darker);
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .notification-empty__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .notification-empty__title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .notification-empty__title {
    font-size: 4.8309178744vw;
  }
}
.notification-empty__text {
  color: var(--text-icon-gray-dark);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .notification-empty__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .notification-empty__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .notification-empty__text {
    font-size: 3.1400966184vw;
  }
}
.notification-close {
  z-index: 1;
  position: sticky;
  left: 0;
  right: 0;
  background: var(--gray-white);
  bottom: -0.0520833333vw;
  padding-bottom: 0.0520833333vw;
  padding-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .notification-close {
    bottom: -0.0732064422vw;
  }
}
@media screen and (width <= 811px) {
  .notification-close {
    bottom: -0.1302083333vw;
  }
}
@media screen and (width <= 481px) {
  .notification-close {
    bottom: -0.2415458937vw;
  }
}
@media screen and (width <= 1401px) {
  .notification-close {
    padding-bottom: 0.0732064422vw;
  }
}
@media screen and (width <= 811px) {
  .notification-close {
    padding-bottom: 0.1302083333vw;
  }
}
@media screen and (width <= 481px) {
  .notification-close {
    padding-bottom: 0.2415458937vw;
  }
}
@media screen and (width <= 1401px) {
  .notification-close {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .notification-close {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .notification-close {
    padding-top: 4.8309178744vw;
  }
}
#modal-notification .modal-body__content {
  max-height: calc(20.8333333333vw + 1.0416666667vw + 2.5vw);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#modal-notification .modal-body__content::-webkit-scrollbar {
  display: none;
}
#modal-notification .modal-body__content::-webkit-scrollbar-thumb {
  display: none;
}
@media screen and (width <= 1401px) {
  #modal-notification .modal-body__content {
    max-height: calc(29.2825768668vw + 1.4641288433vw + 3.513909224vw);
  }
}
@media screen and (width <= 811px) {
  #modal-notification .modal-body__content {
    max-height: unset;
  }
}
.modal-address__header {
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: var(--gray-white);
  gap: 0.625vw;
  padding-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .modal-address__header {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__header {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__header {
    gap: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-address__header {
    padding-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__header {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__header {
    padding-bottom: 4.8309178744vw;
  }
}
.modal-address__header-block {
  display: flex;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .modal-address__header-block {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__header-block {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__header-block {
    gap: 0.9661835749vw;
  }
}
.modal-address__header-title {
  text-transform: uppercase;
  color: var(--text-icon-gray-darker);
  font-size: 1.25vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-address__header-title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__header-title {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__header-title {
    font-size: 4.8309178744vw;
  }
}
.modal-address__body {
  border-top: solid var(--gray-lighter);
  padding-top: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .modal-address__body {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__body {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__body {
    padding-top: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-address__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-address__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-address__body {
    border-width: max(0.4830917874vw, 2px);
  }
}
.modal-address__item + .modal-address__item {
  border-top: solid var(--gray-lighter);
  margin-top: 0.625vw;
  padding-top: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .modal-address__item + .modal-address__item {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__item + .modal-address__item {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__item + .modal-address__item {
    margin-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-address__item + .modal-address__item {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-address__item + .modal-address__item {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-address__item + .modal-address__item {
    padding-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-address__item + .modal-address__item {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-address__item + .modal-address__item {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-address__item + .modal-address__item {
    border-width: max(0.4830917874vw, 2px);
  }
}
.modal-address__preloader {
  display: flex;
  justify-content: center;
}
.pvz-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .pvz-address {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address {
    gap: 2.8985507246vw;
  }
}
.pvz-address__list {
  width: 100%;
  border: solid var(--gray-lighter);
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .pvz-address__list {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__list {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__list {
    padding: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .pvz-address__list {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__list {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__list {
    border-radius: 4.8309178744vw;
  }
}
@media screen and (width <= 1401px) {
  .pvz-address__list {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .pvz-address__list {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .pvz-address__list {
    border-width: max(0.4830917874vw, 2px);
  }
}
.pvz-address__item {
  display: flex;
  align-items: flex-start;
  color: var(--gray-dark);
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .pvz-address__item {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item {
    gap: 1.9323671498vw;
  }
}
.pvz-address__item + .pvz-address__item {
  border-top: solid var(--gray-lighter);
  margin-top: 0.625vw;
  padding-top: 0.625vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .pvz-address__item + .pvz-address__item {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item + .pvz-address__item {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item + .pvz-address__item {
    margin-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .pvz-address__item + .pvz-address__item {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item + .pvz-address__item {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item + .pvz-address__item {
    padding-top: 2.8985507246vw;
  }
}
@media screen and (width <= 1401px) {
  .pvz-address__item + .pvz-address__item {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item + .pvz-address__item {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item + .pvz-address__item {
    border-width: max(0.4830917874vw, 2px);
  }
}
.pvz-address__item-icon {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .pvz-address__item-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item-icon {
    width: 5.7971014493vw;
    height: 5.7971014493vw;
  }
}
.pvz-address__item-icon svg {
  width: 100%;
  height: 100%;
}
.pvz-address__item-text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .pvz-address__item-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .pvz-address__item-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item-text {
    font-size: 3.8647342995vw;
  }
}
@media screen and (width <= 481px) {
  .pvz-address__item-btn {
    width: 100%;
  }
}
.pvz-address__item-btn * {
  pointer-events: none;
}
