@charset "UTF-8";
/** THEME COLOURS */
:root {
  --theme-color-main: #144196;
  --theme-color-second: #262626;
  --color-text: #262626;
  --color-blue: #144196;
  --color-blue-3: #0F2D69;
  --color-blue-4: #0084A2;
  --grey-color: #7F7F7F;
  --gray-light: #A0A0A0;
  --gray-light2: #DCDCDC;
  --gray-light3: #F6F6F6;
  --gray-dark: #262626;
  --dark-gradient: linear-gradient(90deg, #555 0%, #000 100%);
  --gray-dark-opacity-10: rgba(38, 38, 38, 0.10);
  --gray-dark-opacity-80: rgba(38, 38, 38, 0.80);
  --white-opacity-10: rgba(255, 255, 255, 0.10);
  --pink-color: #E7007B;
  --white-color: #ffffff;
  --green-color: #B6E844;
  --green-dark: #2D690D;
  --red-color: #FF1815;
  --orange-color: #FF7D28;
  --price-color: #151515;
  --price-old: #888888;
  --price-new: #dc4b47; }

/** MEDIA BREAKPOINTS */
html {
  font-size: 16px;
  background: var(--gray-light3);
  scroll-behavior: smooth; }
  @media (min-width: 992px) {
    html, html * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    html::-webkit-scrollbar,
    html *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    html::-webkit-scrollbar-button,
    html *::-webkit-scrollbar-button {
      display: none; }
    html::-webkit-scrollbar-track,
    html *::-webkit-scrollbar-track {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    html::-webkit-scrollbar-track-piece,
    html *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    html::-webkit-scrollbar-thumb,
    html *::-webkit-scrollbar-thumb {
      background: #939BA1;
      border-radius: 99px; }
    html::-webkit-scrollbar-corner,
    html *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }

body {
  background: var(--gray-light3);
  color: var(--gray-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }
  body * {
    text-underline-offset: 3px;
    text-decoration-thickness: 1px; }

body.catalog-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.catalog-opened .header-menu-mobile {
    z-index: 1000; }
  body.catalog-opened .catalog-drop {
    opacity: 1;
    pointer-events: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    @media (max-width: 991.98px) {
      body.catalog-opened .catalog-drop {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0); } }

body.menu-opened {
  overflow: hidden; }
  body.menu-opened #page-header .header-top::after {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  body.menu-opened #page-header .header-menu-mobile {
    pointer-events: initial;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible; }

body.filter-mobile-active {
  overflow: hidden; }
  body.filter-mobile-active .category-page-aside {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    opacity: 1; }
  body.filter-mobile-active #page-footer,
  body.filter-mobile-active #page-header {
    z-index: 20; }

picture {
  display: block; }

img {
  max-width: 100%;
  height: auto; }

figure.media {
  display: block; }

svg.hidden {
  display: block;
  width: 0 !important;
  height: 0 !important; }

.icon,
svg.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor; }

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, select:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important; }

a,
[js-href] {
  color: var(--color-link);
  text-decoration: none;
  cursor: pointer; }
  a, a:hover, a:active, a:focus,
  [js-href],
  [js-href]:hover,
  [js-href]:active,
  [js-href]:focus {
    outline: none; }
  @media (any-hover: hover) {
    a:hover,
    [js-href]:hover {
      color: var(--color-link-hovered);
      text-decoration: underline; } }
  a:focus,
  [js-href]:focus {
    color: var(--color-link-hovered);
    text-decoration: underline; }

.clearfix {
  clear: both; }

.clear-after:after {
  content: "";
  display: block;
  clear: both; }

body {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  body #page-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

#page-header {
  position: relative;
  z-index: 35; }

#page-content {
  position: relative;
  z-index: 25; }
  #page-content:after {
    content: "";
    clear: both; }

#page-footer {
  position: relative;
  z-index: 30; }

section.section {
  position: relative;
  z-index: 3;
  padding-top: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375)));
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    section.section {
      padding-top: 48px; } }
  @media (min-width: 1412px) {
    section.section {
      padding-top: 110px; } }
  @media (max-width: 375px) {
    section.section {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    section.section {
      padding-bottom: 110px; } }

a.phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 3px; }
  a.phone .quote {
    font-weight: 500; }

.date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid;
  background: white;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1; }

[js-copy-text] {
  position: relative;
  cursor: pointer; }

.fnx-tooltip {
  --br: 4px;
  --bg: white;
  display: none;
  position: absolute;
  z-index: 99;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: var(--br);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 4px 15px;
  margin-bottom: 10px;
  font-size: 12px;
  pointer-events: none; }
  .fnx-tooltip:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--bg);
    border-radius: var(--br); }
  .fnx-tooltip:after {
    content: "";
    position: absolute;
    z-index: -2;
    bottom: -6px;
    left: 50%;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateX(-50%);
        -ms-transform: rotate(45deg) translateX(-50%);
            transform: rotate(45deg) translateX(-50%);
    background: var(--bg);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }

.status-mark {
  position: relative;
  padding-left: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .status-mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 100%;
    background: #000000; }
  .status-mark-green:before {
    background: #2ed513; }
  .status-mark-green-dark:before {
    background: #02351c; }
  .status-mark-yellow:before {
    background: #deab3b; }
  .status-mark-orange:before {
    background: #ff7a00; }
  .status-mark-gray:before {
    background: #d3d3d3; }
  .status-mark-red:before {
    background: #b80c09; }
  .status-mark-blue:before {
    background: #1b52c7; }

.icon-arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  color: var(--theme-color-main);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .icon-arrow .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.swiper-pagination .swiper-pagination-bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: grey;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: black; }

.swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px; }
  .swiper-nav .swiper-button-next,
  .swiper-nav .swiper-button-prev {
    position: static !important;
    margin-top: 0 !important; }

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 12px;
  margin-top: -24px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px !important;
  height: 48px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #2626261A;
  border: 4px solid #2626261A;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 0;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .swiper-button-next:hover, .swiper-button-next:focus,
  .swiper-button-prev:hover,
  .swiper-button-prev:focus {
    background: var(--theme-color-main);
    border-color: var(--theme-color-main); }
    .swiper-button-next:hover .ic, .swiper-button-next:hover .icon, .swiper-button-next:focus .ic, .swiper-button-next:focus .icon,
    .swiper-button-prev:hover .ic,
    .swiper-button-prev:hover .icon,
    .swiper-button-prev:focus .ic,
    .swiper-button-prev:focus .icon {
      color: var(--white); }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: var(--theme-color-main);
    font-weight: 900;
    display: none; }
  .swiper-button-next .ic, .swiper-button-next .icon,
  .swiper-button-prev .ic,
  .swiper-button-prev .icon {
    width: 20px;
    height: 20px;
    padding: 2px;
    color: var(--gray-dark);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }

.swiper-pagination-fraction {
  --swiper-pagination-fraction-color: var(--white);
  min-width: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px; }
  .swiper-pagination-fraction .swiper-pagination-current {
    color: var(--white);
    font-size: 32px;
    font-weight: 400;
    line-height: 32px; }

#page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  padding-top: 16px;
  padding-bottom: 8px;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
  #page-header.is-hidden {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%); }
  @media (max-width: 991.98px) {
    #page-header {
      padding-top: 12px; } }
  #page-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px; }
  #page-header .logo-wrap {
    position: relative;
    z-index: 102;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 40px; }
    #page-header .logo-wrap img {
      height: 100%;
      width: auto;
      max-width: 100%; }
    @media (max-width: 991.98px) {
      #page-header .logo-wrap {
        margin-right: auto; } }
  #page-header .head-qty {
    position: absolute;
    z-index: 2;
    top: -4px;
    right: -4px;
    height: 21px;
    min-width: 21px;
    padding: 2px 3px;
    border-radius: 999px;
    border: 2px solid;
    font-size: 13px;
    line-height: 1;
    text-align: center; }
    #page-header .head-qty:empty {
      display: none; }
  #page-header .header-btn {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border: 1px solid var(--white-color);
    background: var(--white-color);
    color: var(--theme-color-main); }
    #page-header .header-btn:focus {
      background: var(--theme-color-main);
      color: var(--white-color); }
    @media (pointer: fine) {
      #page-header .header-btn:hover {
        background: var(--theme-color-main);
        color: var(--white-color); } }
    #page-header .header-btn .head-qty {
      border-color: var(--theme-color-main);
      background: var(--white-color);
      color: var(--theme-color-main); }
  #page-header .header-actions {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }

body.menu-opened {
  overflow: hidden;
  padding-right: var(--scrollbar-width); }
  body.menu-opened .header-menu {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    pointer-events: initial;
    visibility: visible; }

@media (max-width: 991.98px) {
  .header-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #262626CC;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    padding: 52px 12px 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    pointer-events: none;
    visibility: hidden;
    scrollbar-color: var(--theme-color-main) var(--bg);
    scrollbar-width: thin; }
    .header-menu::-webkit-scrollbar {
      width: 4px;
      border-radius: 2px;
      background-color: #eaeaea; }
    .header-menu::-webkit-scrollbar-button {
      width: 0;
      height: 0; }
    .header-menu::-webkit-scrollbar-track {
      background: #eaeaea; }
    .header-menu::-webkit-scrollbar-track-piece {
      background: #eaeaea; }
    .header-menu::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 4px; } }

.hamburger {
  position: relative;
  z-index: 102;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 12px;
  background: #262626CC;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 12px;
  color: var(--white-color);
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (min-width: 992px) {
    .hamburger {
      display: none; } }
  .menu-opened .hamburger .hamburger-line:nth-child(2n + 1), .hamburger.trigger-active .hamburger-line:nth-child(2n + 1) {
    -webkit-transform: translateY(3px) rotate(-45deg);
        -ms-transform: translateY(3px) rotate(-45deg);
            transform: translateY(3px) rotate(-45deg); }
  .menu-opened .hamburger .hamburger-line:nth-child(2n + 2), .hamburger.trigger-active .hamburger-line:nth-child(2n + 2) {
    -webkit-transform: translateY(-3px) rotate(45deg);
        -ms-transform: translateY(-3px) rotate(45deg);
            transform: translateY(-3px) rotate(45deg); }
  .hamburger .hamburger-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 16px;
    height: 16px; }
  .hamburger .hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 0.2em;
    background-color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .hamburger .hamburger-line:nth-child(2n + 1) {
      top: 4px; }
    .hamburger .hamburger-line:nth-child(2n + 2) {
      bottom: 4px; }

.header-pages-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .header-pages-nav .header-pages-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 992px) {
      .header-pages-nav .header-pages-list {
        position: relative;
        gap: 6px 24px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (max-width: 991.98px) {
      .header-pages-nav .header-pages-list {
        width: 100%;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  @media (min-width: 992px) {
    .header-pages-nav {
      position: relative;
      gap: 6px 24px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      min-height: 40px;
      padding: 4px 4px 4px 16px; }
      .header-pages-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        background: var(--gray-dark-opacity-80, rgba(38, 38, 38, 0.8));
        -webkit-backdrop-filter: blur(15px);
                backdrop-filter: blur(15px); }
      .header-pages-nav:has(.user-votes) .user-dropdown__inner {
        min-width: 302px; } }
  @media (max-width: 991.98px) {
    .header-pages-nav {
      padding-top: 8px;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .header-pages-nav:has(.user-votes), .header-pages-nav:has(.user-login) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; }
        .header-pages-nav:has(.user-votes) .pages-nav-actions, .header-pages-nav:has(.user-login) .pages-nav-actions {
          padding-bottom: 20px;
          padding-top: 12px; }
      .header-pages-nav:has(.user-votes) {
        border-bottom: 4px solid #FFFFFF1A; }
        .header-pages-nav:has(.user-votes) .user-dropdown {
          border-top: none; }
        .header-pages-nav:has(.user-votes) .user-dropdown__info {
          border-bottom: none;
          padding: 0; }
        .header-pages-nav:has(.user-votes) .btn-account-logout {
          padding-top: 20px;
          padding-bottom: 0; }
        .header-pages-nav:has(.user-votes) .user-dropdown__info-title .icon {
          display: block; } }
  .header-pages-nav .pages-nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 992px) {
      .header-pages-nav .pages-nav-actions {
        padding-left: 16px; } }
    @media (max-width: 991.98px) {
      .header-pages-nav .pages-nav-actions {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  @media (max-width: 991.98px) and (max-width: 991.98px) {
    .header-pages-nav .pages-nav-actions:has(.user-votes) .btn-account-logout {
      display: none; } }
  .header-pages-nav .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .header-pages-nav .nav-item {
        width: 100%; }
        .header-pages-nav .nav-item:has(.nav-link.user-login, .nav-link.user-register) {
          width: calc(50% - 6px); } }
  .header-pages-nav .nav-link {
    position: relative;
    padding: 2px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (max-width: 991.98px) {
      .header-pages-nav .nav-link {
        padding: 18px 0;
        font-size: 13px;
        border-top: 4px solid #FFFFFF1A;
        width: 100%;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        text-align: left; } }
    .header-pages-nav .nav-link::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--color-blue-4);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: left;
          -ms-transform-origin: left;
              transform-origin: left;
      -webkit-transition: -webkit-transform 0.3s;
      transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
      transition: transform 0.3s, -webkit-transform 0.3s; }
    @media (pointer: fine) {
      .header-pages-nav .nav-link:hover::after {
        -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
                transform: scaleX(1); } }
    .header-pages-nav .nav-link.user-login {
      padding: 4px 18px;
      -webkit-box-shadow: inset 0 0 0 4px var(--white-opacity-10, rgba(255, 255, 255, 0.1));
              box-shadow: inset 0 0 0 4px var(--white-opacity-10, rgba(255, 255, 255, 0.1));
      background: var(--white-opacity-10, rgba(255, 255, 255, 0.1));
      -webkit-backdrop-filter: blur(15px);
              backdrop-filter: blur(15px);
      font-weight: 700;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease;
      min-height: 32px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
      .header-pages-nav .nav-link.user-login::after {
        display: none; }
      @media (max-width: 991.98px) {
        .header-pages-nav .nav-link.user-login {
          min-height: 44px;
          padding: 4px 18px;
          font-size: 14px;
          border-top: none;
          text-align: center;
          margin-left: 0;
          width: 100%; } }
      @media (any-hover: hover) {
        .header-pages-nav .nav-link.user-login:hover {
          color: var(--white-color);
          border-color: var(--white-color);
          -webkit-box-shadow: inset 0 0 0 4px var(--white-color);
                  box-shadow: inset 0 0 0 4px var(--white-color); } }
    .header-pages-nav .nav-link.user-register {
      position: relative;
      overflow: hidden;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      padding: 4px 18px;
      min-height: 32px;
      -webkit-box-shadow: inset 0 0 0 4px var(--color-blue);
              box-shadow: inset 0 0 0 4px var(--color-blue);
      background: var(--color-blue);
      -webkit-backdrop-filter: blur(15px);
              backdrop-filter: blur(15px);
      font-weight: 700; }
      .header-pages-nav .nav-link.user-register::after {
        display: none; }
      @media (max-width: 991.98px) {
        .header-pages-nav .nav-link.user-register {
          min-height: 44px;
          padding: 4px 18px;
          font-size: 14px;
          border-top: none;
          text-align: center;
          width: 100%;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      @media (pointer: fine) {
        .header-pages-nav .nav-link.user-register:hover {
          border-color: var(--color-blue-3);
          background: var(--color-blue-3);
          color: var(--white-color);
          -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-3);
                  box-shadow: inset 0 0 0 4px var(--color-blue-3); } }

.user-dropdown {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 992px) {
    .user-dropdown {
      margin-right: 20px; } }
  @media (max-width: 991.98px) {
    .user-dropdown {
      width: 100%;
      border-top: 4px solid #FFFFFF1A; } }
  .user-dropdown:has(.js-account-dropdown.is-active) .user-dropdown__btn .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .user-dropdown:has(.user-dropdown__inner.is-active) .user-dropdown__btn .text::before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }
  .user-dropdown .user-dropdown__btn {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    outline: none  !important;
    margin: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white-color);
    background: transparent;
    cursor: pointer; }
    @media (any-hover: hover) {
      .user-dropdown .user-dropdown__btn:hover .text::before {
        -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
                transform: scaleX(1); } }
    @media (max-width: 991.98px) {
      .user-dropdown .user-dropdown__btn {
        display: none; } }
    .user-dropdown .user-dropdown__btn .ic, .user-dropdown .user-dropdown__btn .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .user-dropdown .user-dropdown__btn .text {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      line-height: 1; }
      .user-dropdown .user-dropdown__btn .text::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 4px;
        -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
                transform: scaleX(0);
        background: #0084A2;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .user-dropdown .user-dropdown__btn .icon {
      padding: 3px; }
  @media (min-width: 992px) {
    .user-dropdown .user-dropdown__inner {
      position: absolute;
      top: calc(100% + 16px);
      right: -24px;
      z-index: 100;
      min-width: 232px;
      background: #262626CC;
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
              box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
      transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px);
      opacity: 0;
      pointer-events: none; }
      .user-dropdown .user-dropdown__inner.is-active {
        opacity: 1;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        pointer-events: auto; }
      .user-dropdown .user-dropdown__inner::before {
        content: '';
        position: absolute;
        top: -17px;
        left: 0;
        width: 100%;
        height: 17px; } }
  @media (max-width: 991.98px) {
    .user-dropdown .user-dropdown__inner {
      width: 100%; } }
  .user-dropdown .user-dropdown__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    gap: 4px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: calc(13px + (20 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase;
    border-bottom: 4px solid #FFFFFF1A;
    color: var(--white-color); }
    @media (max-width: 375px) {
      .user-dropdown .user-dropdown__info {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .user-dropdown .user-dropdown__info {
        font-size: 20px; } }
    @media (max-width: 991.98px) {
      .user-dropdown .user-dropdown__info {
        padding: 16px 0; } }
  .user-dropdown .user-dropdown__info-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px; }
    .user-dropdown .user-dropdown__info-title .icon {
      display: none;
      width: 20px;
      height: 20px; }
  .user-dropdown .user-dropdown__info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-light);
    text-transform: none; }
    @media (max-width: 991.98px) {
      .user-dropdown .user-dropdown__info-text {
        display: none; } }
  .user-dropdown .user-dropdown__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 14px 16px;
    font-weight: 600;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 110%;
    color: var(--white-color);
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 375px) {
      .user-dropdown .user-dropdown__link {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .user-dropdown .user-dropdown__link {
        font-size: 14px; } }
    .user-dropdown .user-dropdown__link:not(:last-child) {
      border-bottom: 4px solid #FFFFFF1A; }
    @media (any-hover: hover) {
      .user-dropdown .user-dropdown__link:hover {
        color: var(--color-blue-4); } }
    @media (max-width: 991.98px) {
      .user-dropdown .user-dropdown__link {
        padding: 16px 0; } }

.btn-account-logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 14px 16px;
  font-weight: 600;
  font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
  line-height: 1;
  text-transform: uppercase;
  color: var(--red-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  @media (max-width: 375px) {
    .btn-account-logout {
      font-size: 13px; } }
  @media (min-width: 1412px) {
    .btn-account-logout {
      font-size: 14px; } }
  @media (max-width: 991.98px) {
    .btn-account-logout {
      padding: 24px 0 8px; } }
  @media (any-hover: hover) {
    .btn-account-logout:hover {
      color: var(--color-blue-4); } }
  @media (min-width: 992px) {
    .btn-account-logout.mobile-btn {
      display: none; } }
  .btn-account-logout .icon {
    width: 20px;
    height: 20px; }

.user-votes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 16px;
  border-bottom: 4px solid #FFFFFF1A; }
  @media (max-width: 991.98px) {
    .user-votes {
      padding: 12px 0 12px;
      border-bottom: none; } }
  .user-votes .user-votes__head {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-light2); }
    .user-votes .user-votes__head:not(:last-child) {
      margin-bottom: 8px; }
  .user-votes .user-votes__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--gray-light); }
    @media (max-width: 375px) {
      .user-votes .user-votes__item {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .user-votes .user-votes__item {
        font-size: 16px; } }
    .user-votes .user-votes__item:not(:last-child) {
      margin-bottom: 5px; }
      @media (max-width: 991.98px) {
        .user-votes .user-votes__item:not(:last-child) {
          margin-bottom: 2px; } }
    .user-votes .user-votes__item.item-total {
      color: var(--white-color); }
  .user-votes .user-votes__line {
    margin-top: 3px;
    position: relative;
    width: 100%;
    height: 4px;
    background: #FFFFFF1A; }
    @media (max-width: 991.98px) {
      .user-votes .user-votes__line {
        margin-top: 6px; } }
    .user-votes .user-votes__line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: var(--votes-progress, 0%);
      height: 100%;
      background: var(--color-blue-4);
      -webkit-transition: width 0.3s ease-in-out;
      transition: width 0.3s ease-in-out; }

#page-header .cellphones-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px; }
  #page-header .cellphones-list .phone {
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    color: var(--theme-color-second); }

#page-header .cellphones-dropdown-wrap {
  position: relative;
  z-index: 99; }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner {
        position: relative;
        gap: 0; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 100px;
    border: 1px solid grey;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    cursor: pointer; }
    @media (min-width: 1200px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
        pointer-events: none; } }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
        width: 40px;
        height: 40px;
        background: #f7f8ff;
        border-color: #f7f8ff; } }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon.active {
      background: grey; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon.active .icon {
        color: var(--white); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
      width: 20px;
      height: 20px;
      color: var(--theme-color-main); }
      @media (max-width: 1199.98px) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
          width: 16px;
          height: 16px; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover::before, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus::before {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 10px;
      background: transparent; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover .cellphones-dropdown, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphones-dropdown {
      opacity: 1;
      pointer-events: initial;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover .cellphone-main-icon, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphone-main-icon {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content {
        position: relative;
        z-index: 1; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: grey;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title:not(:last-child) {
      margin-bottom: 4px; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
        display: none; } }
  #page-header .cellphones-dropdown-wrap .cellphone-main {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    #page-header .cellphones-dropdown-wrap .cellphone-main .ic {
      cursor: pointer;
      margin-left: 5px; }
      #page-header .cellphones-dropdown-wrap .cellphone-main .ic.active {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphone-main {
        display: none; } }
  #page-header .cellphones-dropdown-wrap .phone {
    white-space: nowrap;
    text-decoration: none;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #page-header .cellphones-dropdown-wrap .phone .sup,
    #page-header .cellphones-dropdown-wrap .phone .quote,
    #page-header .cellphones-dropdown-wrap .phone .nums {
      font-weight: 400; }
    @media (any-hover: hover) {
      #page-header .cellphones-dropdown-wrap .phone:hover, #page-header .cellphones-dropdown-wrap .phone:focus {
        color: var(--theme-color-second); } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 99;
    top: 100%;
    right: 0;
    min-width: 100%;
    gap: 2px;
    padding: 4px;
    margin-top: 8px;
    border-radius: 12px;
    background: var(--white);
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
        left: auto;
        right: 0;
        margin-top: 30px; } }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown.show {
      opacity: 1;
      pointer-events: initial;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown.opened {
      opacity: 1; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      min-height: 40px;
      padding: 8px 12px;
      color: var(--theme-color-main);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      border-radius: 10px;
      background: white;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone::before {
        content: "";
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: block;
        width: 24px;
        height: 24px;
        margin-right: 5px;
        background-size: contain; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-life::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAN9SURBVHgBlVZbaxRZEP7q9GSzc0k0cQQTsrsui+sKuiz7sCuTSXaNuxtXX7wR8EL0wQdBRbw9+OAdRNCH4JPgD1BEvCsR0eBkJvEGCor44iXGC1EnmLlnxu6yumPa6TiZGevh9Dl1qr6vTp3q6iaUIcwg9LrroSs/vlFp9MWfURuy5fhSUdBQVTsUz5Nlq2hq7D1QXBzvgtUZcO4k/ZXu/yoCjtSshJHbLbOfUDrGQUHpQM5/kOY8yxQl4N1wocW7X7RbUeR0BYXpEWC0UHPqdb5a2ftmSuZWH5ZxmwOcaRcqPD9DaX9ISi6NS0D8C4gi3Fld61DbOKHqDSD98JioTlFzYom9vFFbzbnsYwL7xyWC6kQwPp/EyD4BRyZIrvU9YyxzUB86HNHMHowR6A6KijEPPRPW2nSWysBmOctolQxL5PuhfA0UzHTnu1p3RJiBUmLktlgpN4PingY3jKHHYKPOuiiXWkWB2C0xcCHi64DOT6G5j0n+J4PSO8RuyRg4qRwKC/00mf+Qp/+fmpKdCrnYLAscdBVZClrgYX8Vun2X5ebXyRkPgdMvgeS9L8AJDySo76kp8S8oKTh05PNxecFIiqrUgFiehqba6J94VG6GDGSlmrgFpYT0dVIEb61pEHGkscuEHtlUVipd9Pv7Pnkutp0iNSuUkV1dHJiuSYTnEHDeEYYSUXi8uokLUt9ZBPn7sa46P4zYvnGBWV2Q8QA1xSMF9+u8y21MxfoXBFXacLs8phZwfSMv2kZqjB23eLqmfgstulfSuAaKrgvxRSmd6czGevvFMownDgKrrCLZ9tEM5kV9E6hcRI3vrBbAtyunIxM9LwjTRoB4oQwLzamz7+ChdRBbcXPKDFH+6rShswNpz1xq/gQe8c3EcEW3DV5MNOp0EuipH83eYK9J9ZI2cdmU1oGkuUyG/fUSrVm6k1FaniOQ6HISMGt5Bn1I6Usp8CI9qvBw5oQ86lGWaNsdvciS3KTQp97+QVKwif5LvbK5ze8DuLE8cLqCYOyYvcrf4uveWXAZPmpM9zr0Ye99iWcmSoM/RApzqDXxpiBBIeHwxN/ks3gXJYV6oFW2USD6Ml+rSvoZPLvYNjNnZNgJd+LvseAWLUoIhzx18pKdkkb3p21vgippFzpCqNCOSoMcHM+/7O8ud9U2gIcnwa0PoT/TL78tejl+HwH/c1proOHRyAAAAABJRU5ErkJggg==") center no-repeat; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-kyivstar::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHSSURBVHgB7VRNLANREP5mtSVObhJxaOLCyc9dUgecCHe06ycuEuIgQeInRHDRq0htK3F14OTiNyFuEglxw8mRNBK0dsxu27XRrbZCIviSN/vevJn5JjszD/hR0Lge2lNlPi5KzpYhrgZhH+S5MIm+nEBBrUhKnipyd/tm/BNkhcuUGpcI1Rh03eDcgkqHDrZX1k6PXztGW36oQ1FxC2KxUhS4xyTOXaIrVp7G4fbMWoaEMzCOEcc6eunA0ofi7dD5Hn3uHUunsU+kT3z88vVa+tjzKPoK58kyIuzgrQ3t2EKAWuEE7UUDKYE0PXMUz4+N6C8+SdRApT2EGzyStSor8s68CZlASttbUHNtixxAlMqN4KaJo6NvygX/ZIfsasDxTXTbfokda9wsQdtlHcnaNP45/iBWXyII83myWxLQuE10t1LkYDb3jwdtjYegKF2yq0q2YQpGcUulyIMIx0Y+R6CxFzqWbJaLttugDGU0sXUtIMK1+RGEuEwy3rXOjCl00YV1VukUrAdt9xvma5AzgYI5pKaSeU8CTqfZ9Lgn5DKVhFcSWnIO5QRCZzIzeXNIRSYQBUSmej+QOwFjRuQljGKqdIVM8NONOWjAqdRkGL8Sr1EPkd9WgV8cAAAAAElFTkSuQmCC") center no-repeat; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-vodafone::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKkSURBVHgBpZZLaBRBEIb/nQTRoCB5ETcbsyjRgxAVHyBRFDEKKgqCFy+CF0/xKIgGfEAu3gVFBS+C4kVExEO8RJQNGhKQgA8SzfoAH3gQRbNx1q93ZsLOTM8+8Iemu6u7/qqpqq7dlKrgg9SVkjazXOVK2QbJnZNmitIY68lOKV9Jv7ECcR/ToCNtg6zJyFir6M3jjE7W3R+ldgzfy0gTqgUvpMWfpFsYcFEuBoP9T8alKUjNPe5kGVPBOetr09LCKF+qfPNeakGQY6wsl+Ppk0XSkWbpnU/ehuw5y64I3wS6/cukL4HACRZI0myeWshvEOe+gNyXHbeQG6zlbISkNMcMkLghpp6Iwt20dMxCdFDJWE3yz4YMYHE7lo8q7HmecYIvci0kVxnPlIwBv0g8Aw2e9yFAfIXQzNi0+arLjE040K+y0EX0z5Xmz1LHXClvIRRQTmPgq6rgm5T5Q9xZZiNHP2YJl1OQ9lv0crWQG7RQfH7So1iyQNpiQtQbPUHhpeoA4RqWxSF4eo2B7uhBqqyOawH3/zI9thwtNwZci+V21Y8YjyF3sP5WcY+2qk6kSpGKWcwbI5OW+z1U1zrVCFpMhq/eGJVDPuo0eQmKOUTpXixGelUSeEcDindm09ZfOUvpiGzGLHq7eBwXVAV00kM4cjIqx7MRmtXr0kumBAYT9E/z5K+bEEQPIG2E/AzLmzZFOE/5hjzg7X2U9touIy9wcZh5lHnWr++dzK22+9y5Q8s+HDKAp60o5VBaof/DNHndQOi/m818uzatgaTskaVs6yEnNLsD8pABA5LyhmkHX/FQdQKd27/pPT7HPBLLkJAdwPoQimtUATymHE3tfJv0IOX9J1BNBgLwrdlf0j6I1jeUIikXFn7fNc7+UYdX5on4B/9KufeiyIeAAAAAAElFTkSuQmCC") center no-repeat; }
      @media (any-hover: hover) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:hover, #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:focus {
          background: var(--theme-color-second);
          color: var(--white-color); } }

#page-header .nav-languages-dropdown-wrap {
  position: relative;
  z-index: 10; }
  #page-header .nav-languages-dropdown-wrap .current-language {
    position: relative;
    z-index: 5; }
  #page-header .nav-languages-dropdown-wrap .nav-languages {
    display: none;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    padding: 42px 2px 2px;
    gap: 2px;
    background: var(--white-color);
    border: 2px solid var(--theme-color-main);
    border-radius: 50px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #page-header .nav-languages-dropdown-wrap .nav-languages.show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      visibility: visible; }
    #page-header .nav-languages-dropdown-wrap .nav-languages.opened {
      opacity: 1; }
  #page-header .nav-languages-dropdown-wrap .nav-languages-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 32px;
    height: 32px;
    background: var(--white-color);
    border-radius: 100%; }
    #page-header .nav-languages-dropdown-wrap .nav-languages-link:focus {
      background: var(--theme-color-main);
      color: var(--white-color); }
    @media (pointer: fine) {
      #page-header .nav-languages-dropdown-wrap .nav-languages-link:hover {
        background: var(--theme-color-main);
        color: var(--white-color); } }

#page-header .nav-languages-inline-wrap .nav-languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; }

#page-header .nav-languages-inline-wrap .nav-languages-item {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px; }

#page-header .nav-languages-inline-wrap .nav-languages-link {
  color: var(--color-text); }

#page-header .nav-languages-inline-wrap .nav-languages-active {
  color: var(--theme-color-main);
  font-weight: bold;
  cursor: default; }

#page-footer {
  padding-top: 40px;
  padding-bottom: 24px;
  background: var(--gray-dark);
  color: var(--white-color); }
  @media (max-width: 991.98px) {
    #page-footer {
      padding-top: 20px;
      padding-bottom: 16px; } }
  #page-footer .footer__top {
    position: relative;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    background: #FFFFFF1A;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px); }
    @media (max-width: 991.98px) {
      #page-footer .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 16px;
        gap: 24px; } }
    #page-footer .footer__top:not(:last-child) {
      margin-bottom: 40px; }
      @media (max-width: 991.98px) {
        #page-footer .footer__top:not(:last-child) {
          margin-bottom: 32px; } }
    #page-footer .footer__top::before {
      content: '';
      position: absolute;
      top: 0;
      left: 4px;
      width: calc(100% - 4px);
      height: 4px;
      background: var(--color-blue-4); }
    #page-footer .footer__top::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 26px;
      height: 10px;
      background: url('data:image/svg+xml,<svg width="26" height="10" viewBox="0 0 26 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H19L26 10H7L0 0Z" fill="%230084A2"/></svg>') center no-repeat; }
  #page-footer .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
    @media (max-width: 991.98px) {
      #page-footer .footer__content {
        gap: 16px; } }
  #page-footer .footer__title {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 0; }
    @media (max-width: 991.98px) {
      #page-footer .footer__title {
        font-size: 28px; } }
  #page-footer .footer__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: var(--gray-light); }
    @media (max-width: 991.98px) {
      #page-footer .footer__text {
        font-size: 16px; } }
  #page-footer .footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    width: 480px; }
    @media (max-width: 767.98px) {
      #page-footer .footer__actions {
        width: 380px; } }
    @media (max-width: 991.98px) {
      #page-footer .footer__actions {
        width: 100%; } }
    #page-footer .footer__actions .btn {
      width: 100%; }
  #page-footer .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (min-width: 992px) {
      #page-footer .footer__nav {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    @media (max-width: 991.98px) {
      #page-footer .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 32px; } }
    #page-footer .footer__nav:not(:last-child) {
      margin-bottom: 24px; }
      @media (max-width: 991.98px) {
        #page-footer .footer__nav:not(:last-child) {
          margin-bottom: 32px; } }
  #page-footer .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px; }
    @media (max-width: 991.98px) {
      #page-footer .footer__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 32px; } }
    #page-footer .footer__row:not(:last-child) {
      margin-bottom: 40px; }
      @media (max-width: 991.98px) {
        #page-footer .footer__row:not(:last-child) {
          margin-bottom: 20px; } }
  #page-footer .footer__logo {
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-light); }
    @media (max-width: 991.98px) {
      #page-footer .footer__logo {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        gap: 12px;
        font-size: 13px; } }
    #page-footer .footer__logo .logo-wrap {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 190px; }
      @media (max-width: 991.98px) {
        #page-footer .footer__logo .logo-wrap {
          width: 140px; } }
      #page-footer .footer__logo .logo-wrap img {
        width: 100%;
        height: auto; }
  #page-footer .footer__bottom {
    padding-top: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    border-top: 4px solid #FFFFFF1A;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-light); }
    @media (max-width: 991.98px) {
      #page-footer .footer__bottom {
        padding-top: 16px; } }
    @media (min-width: 768px) {
      #page-footer .footer__bottom {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    @media (max-width: 767.98px) {
      #page-footer .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        font-size: 13px; } }
  #page-footer .footer__copyright-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 992px) {
      #page-footer .footer__copyright-nav {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    #page-footer .footer__copyright-nav a {
      position: relative;
      font-weight: 500;
      font-size: 14px;
      line-height: 140%;
      color: var(--gray-light);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      #page-footer .footer__copyright-nav a::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-blue-4);
        -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
      @media (max-width: 991.98px) {
        #page-footer .footer__copyright-nav a {
          font-size: 13px; } }
      #page-footer .footer__copyright-nav a:focus {
        text-decoration: none; }
      @media (any-hover: hover) {
        #page-footer .footer__copyright-nav a:hover {
          text-decoration: none; }
          #page-footer .footer__copyright-nav a:hover::before {
            -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                    transform: scaleX(1); } }
  #page-footer .footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px; }
    @media (max-width: 991.98px) {
      #page-footer .footer__company .btn-up {
        margin-left: auto; } }
  #page-footer .socials-wrap .socials-title {
    display: none; }
  #page-footer .socials-wrap nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    #page-footer .socials-wrap nav a {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 32px;
      height: 32px;
      border: 4px solid var(--white-color);
      -webkit-transition: background 0.3s ease, border-color 0.3s ease;
      transition: background 0.3s ease, border-color 0.3s ease; }
      @media (any-hover: hover) {
        #page-footer .socials-wrap nav a:hover {
          background: var(--theme-color-main);
          border-color: var(--theme-color-main); } }
      #page-footer .socials-wrap nav a svg {
        width: 16px;
        height: 16px; }

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px; }
  .footer-nav .nav-item {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .footer-nav .nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--white-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .footer-nav .nav-link::before {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--color-blue-4);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: left;
          -ms-transform-origin: left;
              transform-origin: left;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    @media (max-width: 991.98px) {
      .footer-nav .nav-link {
        font-size: 13px; } }
    .footer-nav .nav-link:focus {
      text-decoration: none; }
    @media (any-hover: hover) {
      .footer-nav .nav-link:hover {
        text-decoration: none; }
        .footer-nav .nav-link:hover::before {
          -webkit-transform: scaleX(1);
              -ms-transform: scaleX(1);
                  transform: scaleX(1); } }

.increate-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-light); }
  .increate-logo img,
  .increate-logo svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 102px;
    height: auto; }

.btn-up {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FFFFFF1A;
  border: 4px solid #FFFFFF1A;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  @media (any-hover: hover) {
    .btn-up:hover {
      background: var(--theme-color-main);
      border-color: var(--theme-color-main);
      color: var(--white-color); } }
  .btn-up .icon {
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.footer__contacts.contacts-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 991.98px) {
    .footer__contacts.contacts-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px; } }
  .footer__contacts.contacts-block .contacts-block__col:first-child .contacts-block__title {
    text-transform: uppercase; }
  .footer__contacts.contacts-block .contacts-block__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-light); }
    .footer__contacts.contacts-block .contacts-block__title:not(:last-child) {
      margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .footer__contacts.contacts-block .contacts-block__title {
        font-size: 13px; }
        .footer__contacts.contacts-block .contacts-block__title:not(:last-child) {
          margin-bottom: 8px; } }
  .footer__contacts.contacts-block .contacts-block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--white-color); }
    @media (max-width: 991.98px) {
      .footer__contacts.contacts-block .contacts-block__content {
        font-size: 14px; } }
    .footer__contacts.contacts-block .contacts-block__content a {
      position: relative;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      font-weight: 500;
      font-size: 16px;
      line-height: 120%;
      color: var(--white-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (max-width: 991.98px) {
        .footer__contacts.contacts-block .contacts-block__content a {
          font-size: 14px; } }
      .footer__contacts.contacts-block .contacts-block__content a::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-blue-4);
        -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
      .footer__contacts.contacts-block .contacts-block__content a:focus {
        text-decoration: none; }
      @media (any-hover: hover) {
        .footer__contacts.contacts-block .contacts-block__content a:hover {
          text-decoration: none; }
          .footer__contacts.contacts-block .contacts-block__content a:hover::before {
            -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                    transform: scaleX(1); } }

.form-style-box {
  width: 100%;
  background: var(--white-color);
  padding: 24px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 991.98px) {
    .form-style-box {
      padding: 16px; } }
  .form-style-box .form-wrap {
    margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .form-style-box .form-wrap {
        margin-bottom: 8px; } }
  .form-style-box .form-title {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .form-style-box .form-title {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .form-style-box .form-title {
        font-size: 40px; } }
    @media (max-width: 375px) {
      .form-style-box .form-title {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .form-style-box .form-title {
        margin-bottom: 24px; } }
  .form-style-box .form-note {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .form-style-box .form-note {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .form-style-box .form-note {
        font-size: 16px; } }
    @media (max-width: 375px) {
      .form-style-box .form-note {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .form-style-box .form-note {
        margin-bottom: 24px; } }
  .form-style-box .goto-register {
    color: var(--gray-light);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center; }
    .form-style-box .goto-register:not(:last-child) {
      margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .form-style-box .goto-register:not(:last-child) {
          margin-bottom: 16px; } }
      @media (min-width: 1412px) {
        .form-style-box .goto-register:not(:last-child) {
          margin-bottom: 24px; } }
    @media (max-width: 767.98px) {
      .form-style-box .goto-register {
        font-size: 13px; } }
    .form-style-box .goto-register a {
      color: var(--color-blue-4);
      text-decoration: none;
      margin-left: 4px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .form-style-box .goto-register a:hover {
          color: var(--color-blue);
          text-decoration: underline; } }
  .form-style-box .btn {
    width: 100%; }
    .form-style-box .btn:not(:last-child) {
      margin-bottom: 24px; }
  .form-style-box a.forgot-password {
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-blue-4);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    margin-bottom: calc(24px + (32 - 24) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .form-style-box a.forgot-password {
        margin-bottom: 24px; } }
    @media (min-width: 1412px) {
      .form-style-box a.forgot-password {
        margin-bottom: 32px; } }
    @media (max-width: 991.98px) {
      .form-style-box a.forgot-password {
        font-size: 13px; } }
    @media (any-hover: hover) {
      .form-style-box a.forgot-password:hover {
        color: var(--color-blue);
        text-decoration: none; } }

.form-style input:-webkit-autofill,
.form-style input:-webkit-autofill:hover,
.form-style input:-webkit-autofill:focus,
.form-style textarea:-webkit-autofill,
.form-style textarea:-webkit-autofill:hover,
.form-style textarea:-webkit-autofill:focus,
.form-style select:-webkit-autofill,
.form-style select:-webkit-autofill:hover,
.form-style select:-webkit-autofill:focus {
  color: var(--gray-dark) !important;
  -webkit-text-fill-color: var(--gray-dark);
  -webkit-box-shadow: 0 0 0 1000px var(--white-color) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; }

.form-style .form-title {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.form-style .form-note {
  font-weight: 600;
  font-size: calc(16px + (18 - 16) * ((100vw - 375px) / (1412 - 375)));
  line-height: 120%;
  color: var(--gray-dark); }
  @media (max-width: 375px) {
    .form-style .form-note {
      font-size: 16px; } }
  @media (min-width: 1412px) {
    .form-style .form-note {
      font-size: 18px; } }

.form-style .form-info-label {
  width: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 4px 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  background: var(--green-color);
  color: var(--green-dark); }
  .form-style .form-info-label::before {
    content: '';
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 12px;
    height: 9px;
    background: url('data:image/svg+xml,<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.24264 6.12825L10.3709 0L11.3137 0.942807L4.24264 8.01385L0 3.77125L0.942813 2.82845L4.24264 6.12825Z" fill="%232D690D"/></svg>') center no-repeat; }

.form-style .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px; }
  .form-style .form-grid:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .form-style .form-grid:not(:last-child) {
        margin-bottom: 16px; } }
  @media (max-width: 991.98px) {
    .form-style .form-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      row-gap: 16px; } }
  .form-style .form-grid .form-group:not(:last-child) {
    margin-bottom: 0; }

.form-style .form-group-heading {
  padding-top: 16px;
  font-weight: 600;
  font-size: calc(16px + (18 - 16) * ((100vw - 375px) / (1412 - 375)));
  line-height: 120%;
  border-top: 1px solid #DCDCDC; }
  @media (max-width: 375px) {
    .form-style .form-group-heading {
      font-size: 16px; } }
  @media (min-width: 1412px) {
    .form-style .form-group-heading {
      font-size: 18px; } }
  .form-style .form-group-heading:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .form-style .form-group-heading:not(:last-child) {
        margin-bottom: 16px; } }

.form-style .form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px; }
  @media (min-width: 992px) {
    .form-style .form-top {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 991.98px) {
    .form-style .form-top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .form-style .form-top .form-title:not(:last-child) {
    margin-bottom: 0px; }
  .form-style .form-top .form-note {
    width: 100%;
    max-width: 295px; }
    @media (max-width: 767.98px) {
      .form-style .form-top .form-note {
        max-width: 100%; } }
  .form-style .form-top:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .form-style .form-top:not(:last-child) {
        margin-bottom: 16px; } }

.form-style .form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%; }
  @media (min-width: 992px) {
    .form-style .form-bottom {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 991.98px) {
    .form-style .form-bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .form-style .form-bottom .btn {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 575.98px) {
      .form-style .form-bottom .btn {
        width: 100%; } }

.form-style .form-info {
  width: 100%;
  max-width: 295px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-light); }
  @media (max-width: 991.98px) {
    .form-style .form-info {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      max-width: 370px; } }

.form-style .form-alert {
  margin-bottom: 10px; }

.form-style .form-group {
  position: relative;
  margin-bottom: 0; }
  .form-style .form-group.form-group-video:has(input[disabled]) {
    opacity: 0.5; }
  .form-style .form-group.form-group-video .form-label {
    font-weight: 600;
    font-size: 11px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 4px; }
  .form-style .form-group.form-group-video .form-controls {
    position: relative; }
    .form-style .form-group.form-group-video .form-controls .icon {
      position: absolute;
      top: 50%;
      left: 16px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 20px;
      height: 20px; }
  .form-style .form-group.form-group-video .form-control {
    padding-left: 44px !important; }

.form-style .form-group:not(:last-child),
.form-style .form-row-group:not(:last-child) {
  margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .form-style .form-group:not(:last-child),
    .form-style .form-row-group:not(:last-child) {
      margin-bottom: 16px; } }

.form-style .form-label {
  font-weight: 600;
  font-size: 11px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: block;
  margin-bottom: 4px; }

.form-style .required {
  color: var(--color-blue);
  font-weight: normal; }

.form-style a.btn {
  position: relative;
  overflow: hidden;
  background: var(--theme-color-main);
  color: var(--white-color);
  border: 2px solid var(--theme-color-main); }
  .form-style a.btn:focus {
    background: var(--white-color);
    color: var(--theme-color-main);
    -webkit-box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%);
            box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%); }
  .form-style a.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    pointer-events: none; }
  .form-style a.btn [disabled] {
    background: #14419680; }
  @media (pointer: fine) {
    .form-style a.btn:hover {
      -webkit-box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
              box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px);
      color: var(--white-color); }
      .form-style a.btn:hover::after {
        -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
                transform: translateX(100%); } }

.form-style .form-control:not(.jq-selectbox) {
  min-height: 48px;
  padding: 4px 15px;
  background: var(--white-color);
  border: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray-dark);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  caret-color: var(--gray-dark);
  -webkit-box-shadow: inset 0 0 0 2px var(--gray-light2);
          box-shadow: inset 0 0 0 2px var(--gray-light2); }
  .form-style .form-control:not(.jq-selectbox):hover {
    -webkit-box-shadow: inset 0 0 0 4px var(--gray-light2);
            box-shadow: inset 0 0 0 4px var(--gray-light2); }
  .form-style .form-control:not(.jq-selectbox):focus {
    -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
            box-shadow: inset 0 0 0 4px var(--color-blue-4); }
  .form-style .form-control:not(.jq-selectbox):active {
    -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
            box-shadow: inset 0 0 0 4px var(--color-blue-4); }
  .form-style .form-control:not(.jq-selectbox).form-control-error {
    -webkit-box-shadow: inset 0 0 0 4px var(--red-color);
            box-shadow: inset 0 0 0 4px var(--red-color); }
  .form-style .form-control:not(.jq-selectbox)::-webkit-input-placeholder {
    color: var(--gray-light); }
  .form-style .form-control:not(.jq-selectbox)::-moz-placeholder {
    color: var(--gray-light); }
  .form-style .form-control:not(.jq-selectbox):-ms-input-placeholder {
    color: var(--gray-light); }
  .form-style .form-control:not(.jq-selectbox)::-ms-input-placeholder {
    color: var(--gray-light); }
  .form-style .form-control:not(.jq-selectbox)::placeholder {
    color: var(--gray-light); }
  .form-style .form-control:not(.jq-selectbox)::-webkit-input-placeholder {
    color: var(--gray-light); }
  @media (max-width: 991.98px) {
    .form-style .form-control:not(.jq-selectbox) {
      height: 44px;
      padding: 8px 12px; } }
  .form-style .form-control:not(.jq-selectbox)[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; }

.form-style textarea.form-control {
  height: 145px;
  resize: none;
  padding-top: 16px !important;
  padding-bottom: 16px !important; }
  @media (max-width: 991.98px) {
    .form-style textarea.form-control {
      height: 104px !important;
      padding-top: 12px !important;
      padding-right: 12px !important; } }

.form-style .form-error {
  display: block;
  margin: 0;
  padding: 4px 0;
  color: red;
  font-size: 12px; }

.form-style .btn-submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0; }

.form-style a {
  color: var(--theme-color-second);
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .form-style a:focus, .form-style a.current, .form-style a.active {
    color: var(--theme-color-main); }
  @media (pointer: fine) {
    .form-style a:hover {
      color: var(--theme-color-main); } }

.form-style .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.form-style .iti--separate-dial-code .iti__selected-flag,
.form-style .iti__country.iti__highlight {
  background-color: transparent !important; }

.form-style .iti {
  position: relative;
  z-index: 1;
  width: 100%; }
  .form-style .iti .iti__selected-flag {
    position: absolute;
    top: -48px;
    left: 0;
    padding: 0 6px 0 24px;
    height: 48px; }
  .form-style .iti .iti__flag {
    scale: 1.333;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: unset; }
  .form-style .iti .iti__arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff; }
  .form-style .iti .iti__arrow--up {
    border-top: none;
    border-bottom: 6px solid #ffffff; }
  .form-style .iti.iti--allow-dropdown .iti__flag-container,
  .form-style .iti.iti--separate-dial-code .iti__flag-container {
    right: 0;
    left: 0;
    top: 100%; }
  .form-style .iti .iti__flag-box {
    margin-right: 15px; }
  .form-style .iti .iti__selected-dial-code {
    font-size: 16px;
    margin-left: 14px; }
  .form-style .iti .iti--separate-dial-code .iti__selected-dial-code, .form-style .iti .iti__arrow {
    margin-left: 11px; }
  .form-style .iti .form-control.input-tel {
    padding-left: 130px !important; }
  .form-style .iti .iti__country-list {
    width: 100%;
    z-index: -1;
    background-color: #171717;
    border: 2px solid rgba(17, 202, 190, 0.23);
    border-radius: 0 0 0 24px;
    padding: 14px;
    padding-top: 24px;
    margin-top: -24px;
    white-space: normal; }

.form-style .jq-selectbox.form-control {
  height: 48px; }
  @media (max-width: 991.98px) {
    .form-style .jq-selectbox.form-control {
      height: 44px; } }
  .form-style .jq-selectbox.form-control.opened .jq-selectbox__trigger-arrow {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg); }
  .form-style .jq-selectbox.form-control.opened .jq-selectbox__select {
    -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
            box-shadow: inset 0 0 0 4px var(--color-blue-4); }
  .form-style .jq-selectbox.form-control .jq-selectbox__select {
    height: 48px;
    min-height: 48px;
    width: 100%;
    padding: 4px 40px 4px 15px;
    background: var(--white-color);
    -webkit-box-shadow: inset 0 0 0 2px var(--gray-light2);
            box-shadow: inset 0 0 0 2px var(--gray-light2);
    border-radius: 0;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    color: var(--gray-dark);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (max-width: 991.98px) {
      .form-style .jq-selectbox.form-control .jq-selectbox__select {
        height: 44px;
        padding: 8px 12px; } }
    .form-style .jq-selectbox.form-control .jq-selectbox__select .jq-selectbox__select-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      line-height: 1;
      font-family: "Source Sans 3", sans-serif;
      font-optical-sizing: auto; }
  .form-style .jq-selectbox.form-control .jq-selectbox__trigger {
    top: 4px;
    bottom: 4px;
    right: 4px;
    height: calc(100% - 8px); }
  .form-style .jq-selectbox.form-control .jq-selectbox__trigger-arrow {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-top: 0; }
  .form-style .jq-selectbox.form-control .jq-selectbox__dropdown {
    -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
            box-shadow: inset 0 0 0 4px var(--color-blue-4);
    border: none;
    margin-top: 2px;
    border-radius: 0;
    padding: 8px 16px;
    overflow: hidden;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto; }
    .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li {
      position: relative;
      padding: 8px;
      font-weight: 400;
      font-size: 16px;
      line-height: 130%;
      background: transparent;
      color: var(--gray-dark); }
      .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li:hover {
        color: var(--white-color);
        background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
        background: linear-gradient(90deg, #555555 0%, #000000 100%); }
      .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li.sel {
        color: var(--white-color);
        background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
        background: linear-gradient(90deg, #555555 0%, #000000 100%); }

.form-style .btn + .custom-checkbox {
  margin-top: 20px; }

.form-style .custom-checkbox {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 8px;
  margin: 0;
  font-weight: 400;
  line-height: 140%;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  /*input[type="checkbox"]:focus ~ .checkbox {
            box-shadow: 0 0 0 0.25rem fade(var(--white-color), 40%);
        }*/ }
  @media (max-width: 375px) {
    .form-style .custom-checkbox {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .form-style .custom-checkbox {
      font-size: 16px; } }
  .form-style .custom-checkbox:has(.form-control-error) .checkbox {
    border-color: var(--red-color); }
  .form-style .custom-checkbox a {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .form-style .custom-checkbox a:hover {
        color: var(--color-blue-4);
        text-decoration: none; } }
  .form-style .custom-checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .form-style .custom-checkbox .checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--gray-dark);
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease; }
  .form-style .custom-checkbox .form-error {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3; }
  .form-style .custom-checkbox input[type="checkbox"]:checked ~ .checkbox {
    background-color: var(--color-blue-4);
    border-color: var(--color-blue-4);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.66667 7L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.form-style .form-group.confirm-group {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  padding-left: 20px; }
  .form-style .form-group.confirm-group a {
    text-decoration: underline; }
  @media (max-width: 991.98px) {
    .form-style .form-group.confirm-group {
      padding-left: 0;
      font-size: 12px;
      line-height: 150%; } }

.iti-mobile .iti--container {
  z-index: 199992;
  inset: 21px; }
  .iti-mobile .iti--container .iti__country-list {
    width: 100%;
    z-index: -1;
    background-color: #171717;
    border: 2px solid rgba(17, 202, 190, 0.23);
    border-radius: 16px;
    padding: 14px;
    white-space: normal; }

.callback-main {
  padding-top: 0 !important; }
  .callback-main .callback-main__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px; }
    @media (max-width: 991.98px) {
      .callback-main .callback-main__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px; } }
  .callback-main .callback-main__img {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    width: 360px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 767.98px) {
      .callback-main .callback-main__img {
        width: 100%;
        max-width: 560px; } }
    .callback-main .callback-main__img img {
      width: 100%;
      height: auto;
      -o-object-fit: cover;
         object-fit: cover;
      aspect-ratio: 360 / 390; }
  .callback-main .callback-main__form {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }

.form-style-popup {
  width: 100%; }

.fancybox-container.form-popup .fancybox-content {
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px #1c1c1c;
          box-shadow: 2px 2px 10px #1c1c1c;
  width: 100%;
  max-width: 400px; }

.form-style .additional-chose {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem; }

.form-style .login-by-social {
  margin-top: 12px; }
  .form-style .login-by-social .title {
    position: relative;
    text-align: center;
    font-size: 1rem; }
    .form-style .login-by-social .title span {
      position: relative;
      z-index: 2;
      color: #696969;
      background: white;
      padding: 0 10px; }
    .form-style .login-by-social .title:after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      background: #696969;
      height: 1px;
      width: 100%; }
  .form-style .login-by-social .sign-in-socials-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 10px;
    margin-top: 13px; }
    .form-style .login-by-social .sign-in-socials-wrap .btn-sign-in-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0px;
              flex: 1 0 0;
      padding: 7px 15px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      text-decoration: none;
      border-radius: 100px;
      border: 1px solid #696969;
      background: var(--white-color); }
      .form-style .login-by-social .sign-in-socials-wrap .btn-sign-in-social .text {
        text-align: center;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.2;
        color: var(--color-text); }

.password-view-wrap {
  position: relative; }
  .password-view-wrap .form-control {
    padding-right: 50px; }
  .password-view-wrap .password-view-toggle {
    position: absolute;
    z-index: 1;
    bottom: 14px;
    right: 12px;
    color: #696969;
    cursor: pointer; }
    .password-view-wrap .password-view-toggle svg.ic {
      width: 20px;
      height: 20px; }
  .password-view-wrap .form-control[type=text] ~ .password-view-toggle {
    color: var(--color-blue); }

.page-login {
  padding-top: 104px;
  padding-bottom: 110px; }
  @media (max-width: 991.98px) {
    .page-login {
      padding-top: 72px;
      padding-bottom: 48px; } }

.login-block {
  width: 100%;
  max-width: 610px;
  margin: 40px auto;
  background: transparent; }
  .login-block .login__title {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .login-block .login__title {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .login-block .login__title {
        font-size: 40px; } }
    @media (max-width: 375px) {
      .login-block .login__title {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .login-block .login__title {
        margin-bottom: 24px; } }
  .login-block .login-block__note {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .login-block .login-block__note {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .login-block .login-block__note {
        font-size: 16px; } }
    @media (max-width: 375px) {
      .login-block .login-block__note {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .login-block .login-block__note {
        margin-bottom: 24px; } }

/* --- REGISTER BLOCK (BEM) --- */
.register-block {
  width: 100%;
  max-width: 610px;
  margin: 40px auto;
  background: transparent; }
  .register-block__main-title {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .register-block__main-title {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .register-block__main-title {
        font-size: 40px; } }
    @media (max-width: 375px) {
      .register-block__main-title {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .register-block__main-title {
        margin-bottom: 24px; } }
  .register-block__note {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .register-block__note {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .register-block__note {
        font-size: 16px; } }
    @media (max-width: 375px) {
      .register-block__note {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .register-block__note {
        margin-bottom: 24px; } }

/* --- TABS NAVIGATION --- */
.register-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375)));
  background: var(--gray-light2);
  padding: 4px; }
  @media (max-width: 375px) {
    .register-tabs {
      margin-bottom: 16px; } }
  @media (min-width: 1412px) {
    .register-tabs {
      margin-bottom: 24px; } }
  .register-tabs__btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: var(--gray-light2);
    color: var(--gray-dark);
    border: none;
    min-height: 32px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none; }
    @media (any-hover: hover) {
      .register-tabs__btn:hover:not(.is-active) {
        background: var(--white-color);
        border-radius: 0;
        color: var(--gray-dark);
        -webkit-box-shadow: none;
                box-shadow: none;
        text-decoration: none; } }
    .register-tabs__btn.is-active {
      background: var(--theme-color-main);
      color: var(--white-color); }
    .register-tabs__btn:focus {
      outline: none;
      border-radius: 0;
      -webkit-box-shadow: none;
              box-shadow: none;
      text-decoration: none; }

/* --- TAB CONTENT --- */
.register-tab {
  display: none;
  -webkit-animation: fadeIn 0.4s ease;
          animation: fadeIn 0.4s ease; }
  .register-tab.is-active {
    display: block; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/* --- REGISTER FORM SPECIFICS --- */
.register-form {
  padding: 24px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  @media (max-width: 991.98px) {
    .register-form {
      padding: 16px; } }
  .register-form__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px; }
    .register-form__grid .form-group {
      margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .register-form__grid .form-group {
          margin-bottom: 16px; } }
      @media (min-width: 1412px) {
        .register-form__grid .form-group {
          margin-bottom: 24px; } }
    @media (max-width: 767.98px) {
      .register-form__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }
  .register-form__radio-group {
    margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .register-form__radio-group {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .register-form__radio-group {
        margin-bottom: 24px; } }
    .register-form__radio-group .form-label {
      margin-bottom: 8px;
      font-weight: 600;
      font-size: 11px;
      line-height: 120%;
      text-transform: uppercase; }
  .register-form__radio-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px; }
  .register-form__agreements {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
    .register-form__agreements .custom-checkbox {
      margin-top: 0 !important; }
      .register-form__agreements .custom-checkbox a {
        text-decoration: underline; }
        @media (any-hover: hover) {
          .register-form__agreements .custom-checkbox a:hover {
            text-decoration: none; } }
  .register-form__submit {
    width: 100%;
    margin-bottom: 16px; }
  .register-form__footer {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%; }
    @media (max-width: 767.98px) {
      .register-form__footer {
        font-size: 13px; } }
    .register-form__footer .note {
      color: var(--gray-light);
      font-weight: 400;
      font-size: 14px;
      line-height: 140%;
      text-align: center;
      margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .register-form__footer .note {
          margin-bottom: 16px; } }
      @media (min-width: 1412px) {
        .register-form__footer .note {
          margin-bottom: 24px; } }
      @media (max-width: 767.98px) {
        .register-form__footer .note {
          font-size: 13px; } }
      .register-form__footer .note a {
        color: var(--gray-light);
        text-decoration: underline;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media (any-hover: hover) {
          .register-form__footer .note a:hover {
            color: var(--color-blue-4);
            text-decoration: none; } }
    .register-form__footer .login-link {
      color: var(--gray-dark); }
      .register-form__footer .login-link a {
        color: var(--color-blue-4);
        text-decoration: none;
        margin-left: 4px;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media (any-hover: hover) {
          .register-form__footer .login-link a:hover {
            color: var(--color-blue);
            text-decoration: underline; } }

/* --- CUSTOM RADIO STYLES --- */
.custom-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  line-height: 140%;
  color: var(--gray-dark);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (max-width: 375px) {
    .custom-radio {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .custom-radio {
      font-size: 16px; } }
  @media (any-hover: hover) {
    .custom-radio:hover {
      color: var(--color-blue); } }
  .custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .custom-radio .radio-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .custom-radio .radio-mark::after {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--white-color);
      border-radius: 50%;
      opacity: 0;
      -webkit-transform: scale(0.5);
          -ms-transform: scale(0.5);
              transform: scale(0.5);
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .custom-radio input[type="radio"]:checked ~ .radio-mark {
    border-color: var(--color-blue-4);
    background: var(--color-blue-4); }
    .custom-radio input[type="radio"]:checked ~ .radio-mark::after {
      opacity: 1;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }

body:not(.search-modal-opened) #search-modal,
body:not(.search-modal-opened) .search-modal-overlay {
  visibility: hidden;
  pointer-events: none;
  z-index: -100000;
  opacity: 0; }

body.search-modal-opened {
  overflow: hidden;
  padding-right: var(--scrollbar-width); }
  body.search-modal-opened #page-header .search-form {
    position: relative;
    z-index: 999999999999; }

#search-modal {
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 10000;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  border-radius: 24px;
  padding: 20px 14px 24px 24px;
  background: white;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  @media (min-width: 576px) {
    #search-modal .search-modal-header,
    #search-modal .search-form {
      display: none; } }
  @media (max-width: 991.98px) {
    #search-modal {
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); } }
  #search-modal .search-results {
    max-height: calc(100dvh - 210px);
    overflow: auto;
    padding-right: 10px; }
    @media (min-width: 992px) {
      #search-modal .search-results, #search-modal .search-results * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      #search-modal .search-results::-webkit-scrollbar,
      #search-modal .search-results *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      #search-modal .search-results::-webkit-scrollbar-button,
      #search-modal .search-results *::-webkit-scrollbar-button {
        display: none; }
      #search-modal .search-results::-webkit-scrollbar-track,
      #search-modal .search-results *::-webkit-scrollbar-track {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
      #search-modal .search-results::-webkit-scrollbar-track-piece,
      #search-modal .search-results *::-webkit-scrollbar-track-piece {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
      #search-modal .search-results::-webkit-scrollbar-thumb,
      #search-modal .search-results *::-webkit-scrollbar-thumb {
        background: #939BA1;
        border-radius: 99px; }
      #search-modal .search-results::-webkit-scrollbar-corner,
      #search-modal .search-results *::-webkit-scrollbar-corner {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }
  #search-modal.loading .search-results {
    opacity: 0.5;
    pointer-events: none; }
  #search-modal .result-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    color: grey;
    margin-bottom: 8px; }
  #search-modal .result[style*="block"] ~ .result[style*="block"] {
    margin-top: 20px; }
  #search-modal .result-message {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 16px;
    text-align: center;
    padding: 24px;
    font-size: 16px;
    line-height: 24px; }
    #search-modal .result-message > .icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 40px;
      line-height: 1;
      margin: 0 auto 12px; }
    #search-modal .result-message .term-target {
      font-weight: bold; }
    #search-modal .result-message .description {
      margin-bottom: 20px; }
  #search-modal .result-products,
  #search-modal .result-categories,
  #search-modal .result-empty,
  #search-modal .result-start-search {
    display: none; }
  #search-modal .result-products .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 14px; }
  #search-modal .product-search-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 96px 1fr minmax(104px, auto);
    grid-template-columns: 96px 1fr minmax(104px, auto);
    grid-column-gap: 16px;
    grid-row-gap: 7px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    color: var(--theme-color-main);
    padding: 16px 0;
    border-bottom: 1px solid #ededed; }
    #search-modal .product-search-card:first-child {
      border-top: 1px solid #ededed; }
    #search-modal .product-search-card .title,
    #search-modal .product-search-card .description {
      -ms-grid-column: 2;
      grid-column: 2; }
    #search-modal .product-search-card img {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3; }
    #search-modal .product-search-card .price-wrap {
      -ms-grid-column: 3;
      grid-column: 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3; }
    #search-modal .product-search-card img {
      border-radius: 12px;
      width: 96px;
      height: 96px;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      padding: 8px; }
    #search-modal .product-search-card .title {
      font-size: 16px;
      line-height: 1.1;
      margin-top: auto; }
    #search-modal .product-search-card .sku {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: auto;
      color: gray; }
    #search-modal .product-search-card .price-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
  #search-modal .result-categories .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7px; }
  #search-modal .category-search-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 32px;
    border-radius: 999px;
    background: white;
    border: 1px solid #ededed;
    color: var(--theme-color-main);
    text-decoration: none;
    padding: 3px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (pointer: fine) {
      #search-modal .category-search-card:hover {
        background: var(--theme-color-main);
        border-color: var(--theme-color-main);
        color: var(--white-color); } }
    #search-modal .category-search-card:focus {
      background: var(--theme-color-main);
      border-color: var(--theme-color-main);
      color: var(--white-color); }
  #search-modal .search-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 18px; }
    #search-modal .search-modal-header .title {
      font-size: 24px;
      line-height: 28px; }
  #search-modal .close-modal {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9741 7.82387C7.20876 8.05852 7.58921 8.05852 7.82387 7.82387C8.05852 7.58921 8.05852 7.20876 7.82387 6.9741L4.84976 4L7.82387 1.0259C8.05852 0.79124 8.05852 0.410788 7.82387 0.176132C7.58921 -0.0585239 7.20876 -0.0585239 6.9741 0.176132L4 3.15024L1.02576 0.175992C0.7911 -0.0586643 0.410649 -0.0586638 0.175993 0.175992C-0.0586632 0.410648 -0.0586638 0.7911 0.175993 1.02576L3.15024 4L0.175992 6.97424C-0.0586643 7.2089 -0.0586637 7.58935 0.175992 7.82401C0.410648 8.05866 0.7911 8.05866 1.02576 7.82401L4 4.84976L6.9741 7.82387Z" fill="%231B1203"/></svg>');
    background-color: rgba(128, 128, 128, 0.1);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #search-modal .close-modal:after {
      display: none; }
    #search-modal .close-modal:focus {
      background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9741 7.82387C7.20876 8.05852 7.58921 8.05852 7.82387 7.82387C8.05852 7.58921 8.05852 7.20876 7.82387 6.9741L4.84976 4L7.82387 1.0259C8.05852 0.79124 8.05852 0.410788 7.82387 0.176132C7.58921 -0.0585239 7.20876 -0.0585239 6.9741 0.176132L4 3.15024L1.02576 0.175992C0.7911 -0.0586643 0.410649 -0.0586638 0.175993 0.175992C-0.0586632 0.410648 -0.0586638 0.7911 0.175993 1.02576L3.15024 4L0.175992 6.97424C-0.0586643 7.2089 -0.0586637 7.58935 0.175992 7.82401C0.410648 8.05866 0.7911 8.05866 1.02576 7.82401L4 4.84976L6.9741 7.82387Z" fill="white"/></svg>');
      background-color: var(--theme-color-main);
      -webkit-box-shadow: 0 0 2px 4px rgba(0, 0, 0, 0.4);
              box-shadow: 0 0 2px 4px rgba(0, 0, 0, 0.4); }
  #search-modal .search-form {
    margin-bottom: 20px; }
  #search-modal .search-modal-header {
    display: none; }
  @media (max-width: 575.98px) {
    #search-modal {
      inset: 0;
      border-radius: 0;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      padding: 16px 20px; }
      #search-modal .search-modal-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      #search-modal .result-title {
        margin-bottom: 12px; }
      #search-modal .result-products .result-list {
        margin-top: 12px; }
      #search-modal .result-message {
        font-size: 14px;
        line-height: 20px;
        height: calc(100dvh - 180px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        #search-modal .result-message > .icon {
          font-size: 56px;
          margin-bottom: 16px; }
      #search-modal .search-results {
        padding-right: 0;
        max-height: calc(100dvh - 66px);
        padding-bottom: 20px; }
      #search-modal .product-search-card {
        -ms-grid-columns: 88px 1fr;
        grid-template-columns: 88px 1fr;
        grid-column-gap: 12px; }
        #search-modal .product-search-card img {
          -ms-grid-column: 1;
          grid-column: 1;
          -ms-grid-row: 1;
          -ms-grid-row-span: 3;
          grid-row: 1 / 4;
          -ms-grid-row-align: start;
              align-self: start; }
        #search-modal .product-search-card .price-wrap {
          -ms-grid-column: 2;
          grid-column: 2;
          -ms-grid-row: 3;
          grid-row: 3; }
        #search-modal .product-search-card img {
          width: 88px;
          height: 88px; }
        #search-modal .product-search-card .title {
          line-height: 1.1; }
        #search-modal .product-search-card .price-wrap {
          line-height: 1;
          margin-top: 4px; }
          #search-modal .product-search-card .price-wrap .old-price {
            margin-bottom: 2px; } }

.search-modal-overlay {
  visibility: visible;
  opacity: 1;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.search-form {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 100px; }
  .search-form input {
    border: 1px solid #ededed;
    border-radius: 100px;
    height: 46px;
    width: 100%;
    padding-left: 19px;
    padding-right: 60px;
    outline: none; }
    .search-form input:focus {
      border-color: var(--theme-color-main); }
  .search-form .btn-search {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 54px;
    height: 100%;
    border: none;
    outline: none;
    background: none; }
    @media (max-width: 991.98px) {
      .search-form .btn-search {
        height: 46px; } }
    .search-form .btn-search .ic {
      color: var(--theme-color-main);
      font-size: 20px; }
  .search-form input:focus ~ .btn-search .ic {
    color: var(--theme-color-main); }

:root {
  --breadcrumbs-height: 44px; }

#page-breadcrumbs {
  --gap: 5px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  height: var(--breadcrumbs-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  #page-breadcrumbs .breadcrumbs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap); }
  #page-breadcrumbs .breadcrumb-scroll-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    direction: rtl;
    position: relative;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    #page-breadcrumbs .breadcrumb-scroll-wrap::-webkit-scrollbar {
      display: none; }
    #page-breadcrumbs .breadcrumb-scroll-wrap.grabbing {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
  #page-breadcrumbs .breadcrumb-inner {
    position: absolute;
    top: 0;
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin: 0;
    direction: ltr; }
  #page-breadcrumbs .breadcrumbs-nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: var(--gap);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
    line-height: 1;
    color: #757575; }
    #page-breadcrumbs .breadcrumbs-nav-item:not(:last-child):after {
      display: inline-block;
      content: "/";
      content: "";
      width: 10px;
      height: 10px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.9 18.6" xml:space="preserve" id="ic-arrow-right-bold-mini" fill="%23757575"><path d="m3.1.5 7.2 7.6c.3.3.5.8.5 1.3s-.2.9-.5 1.2l-7.2 7.6c-.3.3-.8.5-1.3.5s-.9-.2-1.3-.5c-.8-.8-.8-1.6 0-2.6l6-6.2-6-6.3C-.3 2.2-.3 1.3.5.5.9.2 1.4 0 1.9 0s.9.2 1.2.5z"></path></svg>');
      background-repeat: no-repeat;
      background-position: center; }
  #page-breadcrumbs a.breadcrumbs-nav-item {
    text-decoration: none; }
    #page-breadcrumbs a.breadcrumbs-nav-item span {
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease; }
    #page-breadcrumbs a.breadcrumbs-nav-item:focus span {
      color: var(--theme-color-main); }
    @media (pointer: fine) {
      #page-breadcrumbs a.breadcrumbs-nav-item:hover span {
        color: var(--theme-color-main); } }
  #page-breadcrumbs .breadcrumbs-nav-item-main {
    color: var(--theme-color-main);
    font-weight: bolder; }
  #page-breadcrumbs .breadcrumbs-nav-item-last {
    cursor: default;
    color: #adadad; }

@media (max-width: 991.98px) {
  :root {
    --breadcrumbs-height: 30px; } }

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-height: 44px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  .btn .btn-text {
    vertical-align: middle; }
  .btn .icon,
  .btn .ic {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .btn[disabled] {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed; }

.btn-default {
  position: relative;
  overflow: hidden;
  background: var(--theme-color-main);
  color: var(--white-color);
  border: 2px solid var(--theme-color-main); }
  .btn-default:focus {
    background: var(--color-blue-3);
    color: var(--white-color);
    border-color: var(--color-blue-3); }
  @media (pointer: fine) {
    .btn-default:hover {
      border-color: var(--color-blue-3);
      background: var(--color-blue-3);
      color: var(--white-color); } }

.btn-grey {
  gap: 8px;
  min-height: 44px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gray-dark);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: #2626261A;
  border: 4px solid #2626261A;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  @media (any-hover: hover) {
    .btn-grey:hover {
      color: var(--gray-dark);
      border-color: var(--gray-dark); } }
  .btn-grey .icon {
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.btn-load-more,
.btn-blur {
  position: relative;
  overflow: hidden;
  background: #FFFFFF1A;
  border: 4px solid #FFFFFF1A;
  color: var(--white-color);
  padding: 8px 18px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px); }
  @media (any-hover: hover) {
    .btn-load-more:hover,
    .btn-blur:hover {
      color: var(--white-color);
      border-color: var(--white-color); } }
  @media (any-hover: hover) {
    .btn-load-more.dark-mod:hover,
    .btn-blur.dark-mod:hover {
      color: var(--gray-dark);
      border-color: var(--gray-dark); } }

.btn-gray {
  background: #a6a6a6;
  color: #000000;
  border: 2px solid #a6a6a6; }
  @media (pointer: fine) {
    .btn-gray:hover {
      border-color: #000000; } }
  .btn-gray:focus {
    border-color: #000000; }

.btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
  border: 0 none;
  outline: none !important;
  padding: 0; }

.btn-link {
  color: var(--theme-color-main); }

@-webkit-keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  75% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px); }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px); } }

@keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  75% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px); }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px); } }

.loader-wrap {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

.loader {
  width: 100px;
  height: 60px;
  position: relative;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .loader span {
    display: block;
    width: 8px;
    height: 40px;
    background-color: var(--color-text); }
    .loader span:not(:last-child) {
      margin-right: 5px; }
    .loader span:nth-child(1) {
      -webkit-animation: loader-grow 1s ease-in-out infinite;
              animation: loader-grow 1s ease-in-out infinite; }
    .loader span:nth-child(2) {
      -webkit-animation: loader-grow 1s ease-in-out 0.15s infinite;
              animation: loader-grow 1s ease-in-out 0.15s infinite; }
    .loader span:nth-child(3) {
      -webkit-animation: loader-grow 1s ease-in-out 0.30s infinite;
              animation: loader-grow 1s ease-in-out 0.30s infinite; }
    .loader span:nth-child(4) {
      -webkit-animation: loader-grow 1s ease-in-out 0.45s infinite;
              animation: loader-grow 1s ease-in-out 0.45s infinite; }

@-webkit-keyframes loader-grow {
  0%, 100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1); }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    transform: scaleY(1.8); } }

@keyframes loader-grow {
  0%, 100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1); }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    transform: scaleY(1.8); } }

.map-iframe-wrap iframe {
  width: 100%;
  height: 500px; }

#messageDialog {
  padding: 24px;
  border-radius: 0;
  width: 100%;
  max-width: 526px;
  min-height: 182px; }
  @media (max-width: 991.98px) {
    #messageDialog {
      min-height: 170px;
      padding: 16px; } }
  #messageDialog .popup-title {
    padding-right: 24px;
    font-weight: 600;
    font-size: calc(18px + (20 - 18) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase; }
    @media (max-width: 375px) {
      #messageDialog .popup-title {
        font-size: 18px; } }
    @media (min-width: 1412px) {
      #messageDialog .popup-title {
        font-size: 20px; } }
    #messageDialog .popup-title:not(:last-child) {
      margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        #messageDialog .popup-title:not(:last-child) {
          margin-bottom: 12px; } }
  #messageDialog .popup-message {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%; }
    @media (max-width: 375px) {
      #messageDialog .popup-message {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      #messageDialog .popup-message {
        font-size: 16px; } }
    #messageDialog .popup-message:not(:last-child) {
      margin-bottom: 24px; }
      @media (max-width: 991.98px) {
        #messageDialog .popup-message:not(:last-child) {
          margin-bottom: 20px; } }

.confirm-popup {
  padding: 24px;
  border-radius: 0;
  width: 100%;
  max-width: 526px; }
  @media (max-width: 991.98px) {
    .confirm-popup {
      padding: 16px; } }
  .confirm-popup .confirm-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    height: 32px;
    background: #2626261A;
    border: 4px solid #2626261A;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px); }
  .confirm-popup .confirm-popup__title {
    padding-right: 24px;
    font-weight: 600;
    font-size: calc(18px + (20 - 18) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase; }
    @media (max-width: 375px) {
      .confirm-popup .confirm-popup__title {
        font-size: 18px; } }
    @media (min-width: 1412px) {
      .confirm-popup .confirm-popup__title {
        font-size: 20px; } }
    .confirm-popup .confirm-popup__title:not(:last-child) {
      margin-bottom: 16px; }
  .confirm-popup .confirm-popup__text {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    vertical-align: middle; }
    @media (max-width: 375px) {
      .confirm-popup .confirm-popup__text {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .confirm-popup .confirm-popup__text {
        font-size: 16px; } }
  .confirm-popup .confirm-popup__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px; }
    .confirm-popup .confirm-popup__actions .btn-default {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
    .confirm-popup .confirm-popup__actions .btn-grey {
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.pagination-wrap {
  margin: 30px 0; }
  .pagination-wrap .load-more {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .pagination-wrap .load-more [disabled] {
      -webkit-animation: load_mode_spinner 2s linear infinite;
              animation: load_mode_spinner 2s linear infinite; }
  @media (max-width: 1199.98px) {
    .pagination-wrap {
      margin: 25px 0; } }
  @media (max-width: 991.98px) {
    .pagination-wrap {
      margin: 20px 0; } }
  @media (max-width: 767.98px) {
    .pagination-wrap {
      margin: 20px 0; }
      .pagination-wrap .load-more {
        padding-bottom: 15px; } }

.pagination {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .pagination {
      gap: 16px; } }
  @media (min-width: 1412px) {
    .pagination {
      gap: 24px; } }
  .pagination:not(:first-child) {
    margin-top: calc(20px + (40 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .pagination:not(:first-child) {
        margin-top: 20px; } }
    @media (min-width: 1412px) {
      .pagination:not(:first-child) {
        margin-top: 40px; } }
  .pagination:not(:last-child) {
    margin-bottom: calc(20px + (40 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .pagination:not(:last-child) {
        margin-bottom: 20px; } }
    @media (min-width: 1412px) {
      .pagination:not(:last-child) {
        margin-bottom: 40px; } }
  .pagination ul, .pagination li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px; }
  .pagination li a {
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--white-color);
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .pagination li a .ic {
      width: 12px;
      height: 12px; }
    @media (any-hover: hover) {
      .pagination li a:hover {
        text-decoration: none;
        -webkit-box-shadow: inset 0 0 0 2px var(--theme-color-main);
                box-shadow: inset 0 0 0 2px var(--theme-color-main);
        color: var(--theme-color-main); }
        .pagination li a:hover .ic {
          color: var(--theme-color-main); } }
    .pagination li a:focus {
      text-decoration: none;
      outline: none;
      -webkit-box-shadow: none;
              box-shadow: none; }
  .pagination li.page-gap span {
    display: inline-block;
    cursor: default;
    -webkit-transform: translateY(24px);
        -ms-transform: translateY(24px);
            transform: translateY(24px);
    letter-spacing: 0.2rem;
    padding: 0 0 0 2px; }
  .pagination li.disabled a {
    pointer-events: none;
    cursor: default; }
  .pagination li.current-link a,
  .pagination li.active a {
    background: var(--theme-color-main);
    color: var(--white-color); }
  @media (max-width: 1199.98px) {
    .pagination .page-item a {
      width: 54px;
      height: 54px; }
    .pagination .page-item.page-gap span {
      -webkit-transform: translateY(20px);
          -ms-transform: translateY(20px);
              transform: translateY(20px); } }
  @media (max-width: 767.98px) {
    .pagination {
      margin: 26px 0; }
      .pagination .page-item a {
        width: 48px;
        height: 48px; }
      .pagination .page-item.page-gap span {
        -webkit-transform: translateY(17px);
            -ms-transform: translateY(17px);
                transform: translateY(17px); } }

@-webkit-keyframes load_mode_spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes load_mode_spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@media (min-width: 992px) {
  body, * {
    scrollbar-color: var(--theme-color-main) var(--white-color);
    scrollbar-width: thin; } }

@media (min-width: 992px) {
  .thin-scrollbar, .thin-scrollbar * {
    scrollbar-color: auto;
    scrollbar-width: auto; }
  .thin-scrollbar::-webkit-scrollbar,
  .thin-scrollbar *::-webkit-scrollbar {
    width: 3px;
    height: 3px; }
  .thin-scrollbar::-webkit-scrollbar-button,
  .thin-scrollbar *::-webkit-scrollbar-button {
    display: none; }
  .thin-scrollbar::-webkit-scrollbar-track,
  .thin-scrollbar *::-webkit-scrollbar-track {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  .thin-scrollbar::-webkit-scrollbar-track-piece,
  .thin-scrollbar *::-webkit-scrollbar-track-piece {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  .thin-scrollbar::-webkit-scrollbar-thumb,
  .thin-scrollbar *::-webkit-scrollbar-thumb {
    background: #939BA1;
    border-radius: 99px; }
  .thin-scrollbar::-webkit-scrollbar-corner,
  .thin-scrollbar *::-webkit-scrollbar-corner {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }

@-moz-document url-prefix() {
  @media (min-width: 992px) {
    body,
    *,
    .thin-scrollbar,
    .thin-scrollbar * {
      scrollbar-color: black #f2f2f2 !important;
      scrollbar-width: thin !important; } } }

.section-title,
.page-title {
  display: inline-block;
  padding-left: 16px;
  border-left: 6px solid var(--pink-color);
  font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
  background: linear-gradient(90deg, #555555 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Science Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0; }
  @media (max-width: 375px) {
    .section-title,
    .page-title {
      font-size: 28px; } }
  @media (min-width: 1412px) {
    .section-title,
    .page-title {
      font-size: 40px; } }
  .section-title:not(:last-child),
  .page-title:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .section-title:not(:last-child),
      .page-title:not(:last-child) {
        margin-bottom: 20px; } }

.page-rules {
  padding-top: calc(72px + (104 - 72) * ((100vw - 375px) / (1412 - 375)));
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .page-rules {
      padding-top: 72px; } }
  @media (min-width: 1412px) {
    .page-rules {
      padding-top: 104px; } }
  @media (max-width: 375px) {
    .page-rules {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    .page-rules {
      padding-bottom: 110px; } }
  .page-rules .how-work {
    padding-top: 0 !important; }
  .page-rules .page-description:not(:last-child) {
    margin-bottom: calc(20px + (32 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .page-rules .page-description:not(:last-child) {
        margin-bottom: 20px; } }
    @media (min-width: 1412px) {
      .page-rules .page-description:not(:last-child) {
        margin-bottom: 32px; } }

.page-regular {
  overflow: hidden;
  padding-top: calc(72px + (104 - 72) * ((100vw - 375px) / (1412 - 375)));
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .page-regular {
      padding-top: 72px; } }
  @media (min-width: 1412px) {
    .page-regular {
      padding-top: 104px; } }
  @media (max-width: 375px) {
    .page-regular {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    .page-regular {
      padding-bottom: 110px; } }
  .page-regular .text-formatted {
    max-width: 820px; }

.main-title {
  font-size: calc(32px + (72 - 32) * ((100vw - 375px) / (1412 - 375)));
  font-family: "Science Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2%;
  text-transform: uppercase; }
  @media (max-width: 375px) {
    .main-title {
      font-size: 32px; } }
  @media (min-width: 1412px) {
    .main-title {
      font-size: 72px; } }
  .main-title:not(:last-child) {
    margin-bottom: calc(16px + (56 - 16) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .main-title:not(:last-child) {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .main-title:not(:last-child) {
        margin-bottom: 56px; } }

.text-scroll {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: unset;
  padding-right: 5px; }
  @media (min-width: 992px) {
    .text-scroll, .text-scroll * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .text-scroll::-webkit-scrollbar,
    .text-scroll *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .text-scroll::-webkit-scrollbar-button,
    .text-scroll *::-webkit-scrollbar-button {
      display: none; }
    .text-scroll::-webkit-scrollbar-track,
    .text-scroll *::-webkit-scrollbar-track {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .text-scroll::-webkit-scrollbar-track-piece,
    .text-scroll *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .text-scroll::-webkit-scrollbar-thumb,
    .text-scroll *::-webkit-scrollbar-thumb {
      background: #939BA1;
      border-radius: 99px; }
    .text-scroll::-webkit-scrollbar-corner,
    .text-scroll *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }

.text-formatted {
  --br: 0px;
  font-weight: 400;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  line-height: 140%;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto; }
  @media (max-width: 375px) {
    .text-formatted {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .text-formatted {
      font-size: 16px; } }
  .text-formatted:after {
    content: "";
    display: block;
    clear: both; }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
    margin-top: calc(20px + (32 - 20) * ((100vw - 375px) / (1412 - 375)));
    margin-bottom: calc(16px + (20 - 16) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    font-weight: 700;
    letter-spacing: -3%;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
    background: linear-gradient(90deg, #555555 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0; }
    @media (max-width: 375px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
        margin-top: 20px; } }
    @media (min-width: 1412px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
        margin-top: 32px; } }
    @media (max-width: 375px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
        margin-bottom: 16px; } }
    @media (min-width: 1412px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
        margin-bottom: 20px; } }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):first-child {
      margin-top: 0; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):last-child {
      margin-bottom: 0; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + :not(h1):not(.h1):not(h2):not(.h2):not(h3):not(.h3):not(h4):not(.h4):not(h5):not(.h5):not(.text-title):not(.text-sub-title) {
      margin-top: 10px; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .text-title, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .text-sub-title {
      margin-top: 10px; }
  .text-formatted h1, .text-formatted .h1 {
    font-size: calc(32px + (56 - 32) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .text-formatted h1, .text-formatted .h1 {
        font-size: 32px; } }
    @media (min-width: 1412px) {
      .text-formatted h1, .text-formatted .h1 {
        font-size: 56px; } }
  .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    padding-left: 16px;
    border-left: 6px solid var(--pink-color); }
    @media (max-width: 375px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 40px; } }
  .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
    font-size: calc(24px + (32 - 24) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
        font-size: 24px; } }
    @media (min-width: 1412px) {
      .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
        font-size: 32px; } }
  .text-formatted h4, .text-formatted .h4 {
    font-size: calc(20px + (24 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .text-formatted h4, .text-formatted .h4 {
        font-size: 20px; } }
    @media (min-width: 1412px) {
      .text-formatted h4, .text-formatted .h4 {
        font-size: 24px; } }
  .text-formatted a,
  .text-formatted [js-href] {
    position: relative;
    -webkit-transition: coor 0.3s ease;
    transition: coor 0.3s ease;
    font-weight: 600;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    color: var(--color-blue-4); }
    @media (max-width: 375px) {
      .text-formatted a,
      .text-formatted [js-href] {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .text-formatted a,
      .text-formatted [js-href] {
        font-size: 16px; } }
    @media (pointer: fine) {
      .text-formatted a:hover,
      .text-formatted [js-href]:hover {
        text-shadow: 0 0 0;
        text-decoration: none;
        color: var(--color-blue); } }
  .text-formatted ul, .text-formatted ol, .text-formatted p, .text-formatted blockquote {
    margin-bottom: 16px; }
  .text-formatted p {
    position: relative; }
    .text-formatted p:empty {
      display: none; }
  .text-formatted hr {
    border: none;
    border-bottom: 2px solid;
    opacity: 1;
    margin: 1.5em 0; }
  .text-formatted blockquote {
    display: block;
    clear: both;
    border-left: 5px solid var(--pink-color);
    padding: 5px 0 5px 1em;
    font-size: 1.5em;
    margin: 1.5em 0; }
    .text-formatted blockquote > *:last-child {
      margin-bottom: 0; }
  @media (min-width: 992px) {
    .text-formatted figure.image.image-style-align-right {
      float: right;
      margin-left: 20px; } }
  @media (min-width: 992px) {
    .text-formatted figure.image.image-style-align-left {
      float: left;
      margin-right: 20px; } }
  .text-formatted img {
    max-width: 100%;
    height: auto !important;
    margin: 16px auto 20px;
    border-radius: 0;
    vertical-align: unset; }
    .text-formatted img.image-style-align-left, .text-formatted img[style*="float:left"], .text-formatted img[style*="float: left"] {
      margin: 0 1.5rem 0 0; }
    .text-formatted img.image-style-align-right, .text-formatted img[style*="float:right"], .text-formatted img[style*="float: right"] {
      margin: 0 0 0 1.5rem; }
    .text-formatted img:not([style*="float"]):not(.image-style-align-left):not(.image-style-align-right) {
      display: block; }
    .text-formatted img.image-style-align-center {
      display: block;
      margin: 0 auto; }
    .text-formatted img.image-style-align-left {
      float: left; }
    .text-formatted img.image-style-align-right {
      float: right; }
    .text-formatted img.image_resized {
      max-width: 100%;
      height: auto; }
    @media (max-width: 575.98px) {
      .text-formatted img {
        margin: 1.9em auto 3em; }
        .text-formatted img.image-style-align-left, .text-formatted img[style*="float:left"], .text-formatted img[style*="float: left"] {
          margin: 0 1.5rem 0 0; }
        .text-formatted img.image-style-align-right, .text-formatted img[style*="float:right"], .text-formatted img[style*="float: right"] {
          margin: 0 0 0 1.5rem; } }
  .text-formatted figure.image {
    position: relative;
    max-width: 100%;
    margin: 10px 0 24px; }
    .text-formatted figure.image img {
      display: block;
      margin: auto; }
    .text-formatted figure.image figcaption {
      font-size: 1rem;
      color: var(--gray-light);
      text-align: center;
      margin-top: 10px;
      font-style: italic;
      padding: 0 10px; }
  .text-formatted ul:not(.list),
  .text-formatted ol:not(.list) {
    padding-left: 0; }
    .text-formatted ul:not(.list) li,
    .text-formatted ol:not(.list) li {
      margin-bottom: 0.4em; }
    .text-formatted ul:not(.list) ul, .text-formatted ul:not(.list) ol,
    .text-formatted ol:not(.list) ul,
    .text-formatted ol:not(.list) ol {
      margin-top: 0.6em;
      margin-left: 1.3em; }
  .text-formatted ol:not(.list) {
    list-style-position: inside;
    list-style-type: none;
    counter-reset: step-counter; }
    .text-formatted ol:not(.list) > li {
      position: relative;
      list-style-type: none;
      counter-increment: step-counter; }
      .text-formatted ol:not(.list) > li:before {
        content: counters(step-counter, ".", decimal-leading-zero) ".";
        display: inline-block;
        min-width: 0.75em;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        font-size: 1em;
        margin-right: 0.4em;
        font-weight: bold; }
    .text-formatted ol:not(.list) ol li:before {
      content: counters(step-counter, ".") "."; }
  .text-formatted ul:not(.list) > li {
    position: relative;
    list-style-type: none;
    padding-left: 1.5em; }
    .text-formatted ul:not(.list) > li:before {
      position: absolute;
      left: 0;
      content: "●";
      display: inline-block;
      min-width: 0.9em;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease;
      margin-right: 0.4em;
      color: var(--color-blue); }
  .text-formatted ul:not(.list)[style*="list-style-type:square"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: square"] > li:before {
    content: "■"; }
  .text-formatted ul:not(.list)[style*="list-style-type:disc"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: disc"] > li:before {
    content: "●"; }
  .text-formatted ul:not(.list)[style*="list-style-type:circle"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: circle"] > li:before {
    content: "○"; }
  .text-formatted .table-wrap {
    max-width: 100%;
    overflow: auto;
    margin: 1.2em 0; }
    .text-formatted .table-wrap table {
      margin: 0; }
  .text-formatted table {
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    margin: 1.2em 0; }
    .text-formatted table thead tr {
      background: var(--color-decore);
      color: var(--white-color); }
    .text-formatted table tbody:first-child tr:nth-child(odd),
    .text-formatted table thead + tbody tr:nth-child(even) {
      background: #ececec; }
    .text-formatted table th,
    .text-formatted table td {
      padding: 15px 15px;
      text-align: left;
      border: none; }
    .text-formatted table thead td,
    .text-formatted table th {
      text-align: center;
      font-weight: bold; }
    .text-formatted table tfoot td {
      font-weight: bold; }
  .text-formatted > *:last-child {
    margin-bottom: 0; }

.text-formatted {
  color: var(--color-text); }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, .text-title, .text-sub-title) {
    color: var(--color-text); }
  .text-formatted a,
  .text-formatted [js-href] {
    --color-link-text: #24084e;
    --color-link-hovered-text: #6337a6; }
  .text-formatted hr {
    border-bottom-color: var(--color-decore); }
  .text-formatted ol > li:before {
    color: var(--color-decore); }
  .text-formatted ul > li:before {
    color: var(--color-decore); }
  .text-formatted blockquote {
    border-left-color: var(--color-decore); }
  .text-formatted table thead td,
  .text-formatted table th {
    border-color: var(--color-decore); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 100%;
  max-width: 496px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(12px + (16 - 12) * ((100vw - 375px) / (1412 - 375)));
  color: var(--white-color);
  padding: 24px;
  background: #262626CC;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border: 1px solid #FFFFFF1A;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease; }
  @media (max-width: 375px) {
    .cookie-banner {
      gap: 12px; } }
  @media (min-width: 1412px) {
    .cookie-banner {
      gap: 16px; } }
  @media (max-width: 767.98px) {
    .cookie-banner {
      bottom: 0;
      right: 0;
      left: 0;
      max-width: 100%;
      padding: 20px; } }
  .cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .cookie-banner .js-cookie-reject {
    border: 4px solid #FFFFFF1A; }

.cookie-banner__title {
  font-weight: 600;
  font-size: calc(18px + (20 - 18) * ((100vw - 375px) / (1412 - 375)));
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
  color: var(--white-color); }
  @media (max-width: 375px) {
    .cookie-banner__title {
      font-size: 18px; } }
  @media (min-width: 1412px) {
    .cookie-banner__title {
      font-size: 20px; } }

.cookie-banner__close {
  position: absolute;
  top: 8px;
  right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #FFFFFF1A;
  border: 4px solid #FFFFFF1A;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  color: var(--white-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .cookie-banner__close .icon {
    width: 12px;
    height: 12px; }
  @media (any-hover: hover) {
    .cookie-banner__close:hover {
      background: var(---theme-color-main);
      border-color: var(---theme-color-main);
      color: var(--white-color); } }

.cookie-banner__content {
  font-weight: 400;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  line-height: 140%;
  vertical-align: middle; }
  @media (max-width: 375px) {
    .cookie-banner__content {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .cookie-banner__content {
      font-size: 16px; } }
  .cookie-banner__content p {
    margin: 0; }

.cookie-banner__actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px; }

.cookie-banner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  border: 1px solid transparent; }

.cookie-banner__btn--accept {
  background-color: var(--theme-color-main);
  color: var(--white-color); }
  @media (any-hover: hover) {
    .cookie-banner__btn--accept:hover {
      background-color: var(--color-blue-4); } }

.cookie-banner__btn--reject {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--gray-light); }
  @media (any-hover: hover) {
    .cookie-banner__btn--reject:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: var(--white-color); } }

.section-comparison-scrollbar {
  position: sticky;
  z-index: 10;
  left: 0;
  top: 0;
  padding: 0;
  margin-bottom: 30px;
  background: #f3f7ff; }
  .section-comparison-scrollbar .compare-scroll {
    width: 100%;
    overflow: hidden;
    height: 1px; }
  .section-comparison-scrollbar .compare-scroll-wrap {
    overflow: auto; }
    .section-comparison-scrollbar .compare-scroll-wrap::-webkit-scrollbar {
      background: #91b1f4;
      width: 3px;
      top: 0;
      position: absolute; }
    .section-comparison-scrollbar .compare-scroll-wrap::-webkit-scrollbar-track {
      background: #ffffff;
      width: 3px;
      top: 0;
      position: absolute; }
    .section-comparison-scrollbar .compare-scroll-wrap::-webkit-scrollbar-thumb {
      background: #91b1f4;
      width: 3px;
      top: 0;
      position: absolute; }

.compare-bottom-scroll-hide {
  position: relative;
  width: 100%; }
  .compare-bottom-scroll-hide:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    background: #f3f7ff;
    height: 30px;
    left: 0;
    width: 100%;
    bottom: 100%; }

.section-comparison {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--bootstrap-container);
  padding: var(--bootstrap-padding);
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px; }
  .section-comparison.touch:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .section-comparison .compare-product-head {
    margin-bottom: 40px; }
  .section-comparison .compare-warning {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ffffff;
    padding: 16px 16px 20px 18px;
    border-radius: 5px; }
    .section-comparison .compare-warning p {
      margin: 0 0 16px;
      font-size: 15px;
      line-height: 18px;
      color: #333333; }
  .section-comparison .product-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    background: #ffffff;
    padding: 16px 16px 20px 18px;
    border-radius: 5px; }
    .section-comparison .product-main .product-image {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0 16px 0 0;
      max-width: 104px; }
      .section-comparison .product-main .product-image img {
        display: block;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center; }
    .section-comparison .product-main .product-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: calc(100% - 120px); }
      .section-comparison .product-main .product-info .product-title {
        font-size: 15px;
        line-height: 18px;
        font-weight: 700;
        color: #333333;
        max-width: 300px;
        margin: 0 0 10px;
        padding-right: 30px; }
      .section-comparison .product-main .product-info .rating {
        margin: 0 0 13px; }
      .section-comparison .product-main .product-info .price {
        font-size: 25px;
        line-height: 29px;
        font-weight: 700; }
      .section-comparison .product-main .product-info .product-footer {
        margin-top: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
    .section-comparison .product-main .js-close {
      position: absolute;
      right: 17px;
      top: 17px; }
  .section-comparison .compare-attribute-row {
    padding-bottom: 7px;
    border-bottom: 1px dashed rgba(51, 51, 51, 0.2);
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #333333;
    margin-top: 32px;
    margin-bottom: 32px; }
    .section-comparison .compare-attribute-row span {
      display: inline-block;
      position: sticky;
      left: 0; }
  .section-comparison .compare-product {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #999999;
    margin-bottom: 16px; }
  .section-comparison .compare-value {
    font-size: 14px;
    line-height: 17px;
    color: #333333; }

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

.comparison-heading .buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .comparison-heading .buttons-wrap .btn-show-differences {
    margin-left: 30px; }

.comparison-heading .add-model {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .comparison-heading .add-model:hover, .comparison-heading .add-model:focus {
      text-decoration: none; }
      .comparison-heading .add-model:hover .text, .comparison-heading .add-model:focus .text {
        color: var(--theme-color-second); }
      .comparison-heading .add-model:hover .add-model-icon, .comparison-heading .add-model:focus .add-model-icon {
        color: var(--theme-color-second); } }
  .comparison-heading .add-model .text {
    font-size: 14px;
    line-height: 17px;
    margin: 0 16px 0 0;
    color: #333333;
    opacity: 0.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
  .comparison-heading .add-model .add-model-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 34px;
    height: 34px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 2px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .comparison-heading .add-model .add-model-icon .icon {
      width: 100%;
      height: 100%; }

.comparison-heading .btn-show-differences {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer; }
  .comparison-heading .btn-show-differences .text {
    font-size: 14px;
    line-height: 17px;
    margin: 0 16px 0 0;
    color: #333333;
    opacity: 0.5;
    min-width: 130px;
    text-align: right; }
  .comparison-heading .btn-show-differences .icons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2px;
    border-radius: 30px;
    height: 34px;
    padding: 0 2px;
    border: 1px solid; }
  .comparison-heading .btn-show-differences .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    background: var(--theme-color-second);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .comparison-heading .btn-show-differences:not(.active) .text._differences {
    display: none; }
  .comparison-heading .btn-show-differences:not(.active) .icon._differences {
    background: white;
    border-color: var(--white-color); }
  .comparison-heading .btn-show-differences:not(.active) .icon._all {
    border-color: var(--theme-color-second);
    background: var(--theme-color-second); }
  .comparison-heading .btn-show-differences.active .text._all {
    display: none; }
  .comparison-heading .btn-show-differences.active .icon._all {
    background: white;
    border-color: var(--white-color); }
  .comparison-heading .btn-show-differences.active .icon._differences {
    border-color: var(--theme-color-second);
    background: var(--theme-color-second); }

.comparison-nav {
  margin: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .comparison-nav .nav-toggle {
    padding: 10px 15px;
    text-transform: none;
    border: 1px solid rgba(51, 51, 51, 0.2);
    min-height: 45px;
    font-size: 22px;
    line-height: 1.3; }
    .comparison-nav .nav-toggle .count {
      margin-left: 10px;
      color: #1561ff; }
    .comparison-nav .nav-toggle.sub-in:after {
      content: "";
      width: 30px;
      height: 30px;
      background: url("../img/blue-arr-down.svg") no-repeat center;
      background-size: 20px;
      margin-left: 10px; }
  .comparison-nav .nav-menu {
    display: none;
    background: white;
    border: 1px solid rgba(51, 51, 51, 0.2);
    margin-top: -1px; }
    .comparison-nav .nav-menu .nav-item {
      display: block;
      padding: 10px 0;
      margin: 0 15px;
      font-size: 16px; }
      .comparison-nav .nav-menu .nav-item:not(:last-child) {
        border-bottom: 1px dashed rgba(51, 51, 51, 0.2); }
      @media (pointer: fine) {
        .comparison-nav .nav-menu .nav-item:hover {
          color: var(--color-link-hovered); } }
  .comparison-nav.active .nav-toggle.sub-in:after {
    background: url("../img/close-ico.svg") no-repeat center;
    background-size: 18px; }
  .comparison-nav.active .nav-menu {
    display: block; }
  @media (max-width: 767px) {
    .comparison-nav .nav-toggle {
      font-size: 16px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.section-comparison .viewport-padding {
  min-width: calc((100% - 1170px) / 2); }

.section-comparison .compare-attribute-row span {
  left: calc((100% - 1170px) / 2);
  max-width: 1170px; }

.section-comparison .compare-row > * {
  width: 570px; }
  .section-comparison .compare-row > *:not(:first-child) {
    margin-left: 30px; }

@media (max-width: 1229px) {
  .section-comparison .viewport-padding {
    min-width: calc((100% - 930px) / 2); }
  .section-comparison .compare-attribute-row span {
    left: calc((100% - 930px) / 2);
    max-width: 930px; }
  .section-comparison .compare-row > * {
    width: 450px; }
    .section-comparison .compare-row > *:not(:first-child) {
      margin-left: 30px; } }

@media (max-width: 991px) {
  .section-comparison .viewport-padding {
    min-width: calc((100% - 690px) / 2); }
  .section-comparison .compare-attribute-row span {
    left: calc((100% - 690px) / 2);
    max-width: 690px; }
  .section-comparison .compare-row > * {
    width: 335px; }
    .section-comparison .compare-row > *:not(:first-child) {
      margin-left: 20px; } }

@media (max-width: 767px) {
  .section-comparison .viewport-padding {
    min-width: calc((100% - 510px) / 2); }
  .section-comparison .compare-attribute-row span {
    left: calc((100% - 510px) / 2);
    max-width: 510px; }
  .section-comparison .compare-row > * {
    width: 250px; }
    .section-comparison .compare-row > *:not(:first-child) {
      margin-left: 10px; } }

@media (max-width: 575px) {
  .section-comparison .viewport-padding {
    min-width: 15px; }
  .section-comparison .compare-attribute-row span {
    left: 15px;
    max-width: calc(100vw - 30px); }
  .section-comparison .compare-row > * {
    width: 250px; }
    .section-comparison .compare-row > *:not(:first-child) {
      margin-left: 10px; } }

@media (max-width: 991px) {
  .section-comparison .product-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .section-comparison .product-main .product-image {
      height: 103px;
      margin: 0 0 24px; }
    .section-comparison .product-main .product-info {
      width: 100%; }
      .section-comparison .product-main .product-info .product-title {
        padding-right: 0; }
  .section-comparison .compare-attribute-row {
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px; }
  .comparison-heading .comparison-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .comparison-heading .buttons-wrap {
    width: 100%;
    margin-top: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .section-comparison-scrollbar {
    display: none; } }

@media (max-width: 767px) {
  .section-comparison .product-main {
    padding: 39px 6px 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .section-comparison .product-main .product-info .product-title {
      font-size: 12px;
      line-height: 15px;
      margin: 0 0 17px;
      min-height: 30px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
    .section-comparison .product-main .product-info .rating {
      margin: 0 0 9px; }
    .section-comparison .product-main .product-info .price {
      font-size: 16px;
      line-height: 20px;
      margin: 0 0 8px; }
    .section-comparison .product-main .product-info .product-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .section-comparison .product-main .product-info .product-footer .btn-default btn-small {
        width: 100%; }
    .section-comparison .product-main .js-close {
      right: 9px;
      top: 9px; }
      .section-comparison .product-main .js-close img {
        max-width: 14px; }
  .section-comparison .compare-warning {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 6px 10px; }
    .section-comparison .compare-warning .btn-default btn-small {
      width: 100%; }
    .section-comparison .compare-warning p {
      text-align: center;
      margin: 0 0 121px; }
  .section-comparison .compare-attribute-row {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 10px; }
  .section-comparison .compare-product {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px; }
  .comparison-heading .buttons-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .comparison-heading .buttons-wrap .add-model {
      margin: 0 0 15px; }
    .comparison-heading .buttons-wrap .btn-show-differences {
      margin: 0; } }

.brands-main {
  overflow: hidden;
  padding-bottom: 0 !important; }
  .brands-main .brands-main__container {
    position: relative; }
  .brands-main .brands-main__slider {
    position: static;
    overflow: visible; }
    @media (max-width: 991.98px) {
      .brands-main .brands-main__slider {
        padding-bottom: 16px; } }
  .brands-main .brands-main__img {
    width: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 102px; }
    @media (max-width: 991.98px) {
      .brands-main .brands-main__img {
        width: 120px;
        min-height: 77px; } }
    .brands-main .brands-main__img img {
      width: 100%;
      height: auto;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .brands-main .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 102px; }
    @media (max-width: 991.98px) {
      .brands-main .swiper-slide {
        width: 120px;
        min-height: 77px; } }
    .brands-main .swiper-slide img {
      width: 100%;
      height: auto;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  @media (min-width: 992px) {
    .brands-main .swiper-nav {
      position: absolute;
      top: 0;
      right: 16px; } }
  @media (max-width: 991.98px) {
    .brands-main .swiper-nav {
      display: none; } }
  .brands-main .swiper-scrollbar {
    --swiper-scrollbar-drag-bg-color: #262626;
    --swiper-scrollbar-bg-color: #fff; }
    @media (min-width: 992px) {
      .brands-main .swiper-scrollbar {
        display: none; } }

[data-marquee] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }
  [data-marquee].is-initialized {
    opacity: 1; }

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: marquee-scroll var(--marquee-duration) linear infinite;
          animation: marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform; }
  .marquee-track:hover {
    -webkit-animation-play-state: paused;
            animation-play-state: paused; }

.marquee-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0); } }

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0); } }

.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  padding: 4px 0;
  overflow: hidden;
  font-weight: 500;
  font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
  line-height: 1;
  text-transform: uppercase;
  background: #0084A2;
  color: var(--white-color); }
  @media (max-width: 375px) {
    .marquee {
      font-size: 13px; } }
  @media (min-width: 1412px) {
    .marquee {
      font-size: 14px; } }
  .marquee .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .marquee .item {
        gap: 24px; } }
    .marquee .item::before {
      content: '';
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 16px;
      height: 8px;
      background: var(--white-color); }
  .marquee img {
    height: 82px;
    width: auto;
    -o-object-fit: scale-down;
       object-fit: scale-down; }
    @media (max-width: 991.98px) {
      .marquee img {
        height: 24px; } }

.faq-utp .faq-utp__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px; }
  @media (max-width: 991.98px) {
    .faq-utp .faq-utp__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.faq-utp .faq-utp__title {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .faq-utp .faq-utp__title:not(:last-child) {
    margin-bottom: 0px; }
  @media (max-width: 991.98px) {
    .faq-utp .faq-utp__title {
      width: auto; } }

.faq-utp .faq-utp__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }

.faq-utp .faq-utp__list:not(:last-child) {
  margin-bottom: 24px; }

.faq-utp .faq-utp__item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--gray-light2); }
  .faq-utp .faq-utp__item:first-child {
    border-top: 4px solid var(--gray-light2); }
  .faq-utp .faq-utp__item.accordion-open .faq-utp__item-icon .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

.faq-utp .faq-utp__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .faq-utp .faq-utp__item-title:hover {
      color: var(--theme-color-main); } }
  @media (max-width: 991.98px) {
    .faq-utp .faq-utp__item-title {
      font-size: 18px; } }

.faq-utp .faq-utp__item-icon {
  margin-left: auto;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-color);
  background: var(--theme-color-main); }
  .faq-utp .faq-utp__item-icon .icon {
    width: 12px;
    height: 12px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }

.faq-utp .faq-utp__item-content {
  display: none;
  padding-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%; }
  @media (max-width: 991.98px) {
    .faq-utp .faq-utp__item-content {
      font-size: 14px; } }

.faq-utp .faq-utp__show-btn {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none !important;
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-blue-4);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .faq-utp .faq-utp__show-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% - 26px);
    height: 4px;
    background: var(--color-blue-4);
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .faq-utp .faq-utp__show-btn:focus {
    text-decoration: none; }
  @media (any-hover: hover) {
    .faq-utp .faq-utp__show-btn:hover {
      text-decoration: none; }
      .faq-utp .faq-utp__show-btn:hover::before {
        -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
                transform: scaleX(1); } }
  .faq-utp .faq-utp__show-btn .icon {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 4px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .faq-utp .faq-utp__show-btn .hide {
    display: none; }
  .faq-utp .faq-utp__show-btn.active .hide {
    display: block; }
  .faq-utp .faq-utp__show-btn.active .show {
    display: none; }
  .faq-utp .faq-utp__show-btn.active .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

.section-error {
  padding: 98px 0 40px; }
  @media (max-width: 991.98px) {
    .section-error {
      padding: 72px 0 20px; } }
  .section-error .section-error-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 60px;
    min-height: 420px; }
    @media (max-width: 991.98px) {
      .section-error .section-error-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px; } }
  .section-error .section-error-img {
    width: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .section-error .section-error-img {
        width: 100%;
        max-width: 470px; } }
    .section-error .section-error-img img {
      width: 100%;
      height: auto; }
  .section-error .section-error-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 991.98px) {
      .section-error .section-error-content {
        row-gap: 16px; } }
  .section-error .section-error-label {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: var(--pink-color); }
    @media (max-width: 375px) {
      .section-error .section-error-label {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .section-error .section-error-label {
        font-size: 40px; } }
  .section-error .section-error-title {
    margin-top: auto;
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: 72px;
    font-size: calc(32px + (72 - 32) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
    background: linear-gradient(90deg, #555555 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; }
    @media (max-width: 375px) {
      .section-error .section-error-title {
        font-size: 32px; } }
    @media (min-width: 1412px) {
      .section-error .section-error-title {
        font-size: 72px; } }
  .section-error .section-error-text {
    max-width: 460px;
    font-weight: 400;
    line-height: 140%;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .section-error .section-error-text {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .section-error .section-error-text {
        font-size: 16px; } }
  .section-error .btn {
    width: auto;
    -ms-flex-item-align: start;
        align-self: flex-start; }

.hero {
  position: relative;
  min-height: 880px;
  width: 100%;
  color: var(--white-color);
  padding-top: 180px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1449.98px) {
    .hero {
      min-height: 650px; } }
  @media (max-width: 991.98px) {
    .hero {
      min-height: 712px;
      padding-top: 80px;
      padding-bottom: 12px; } }
  .hero .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .hero .hero__bg picture,
    .hero .hero__bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .hero .hero__bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      background: #00000066; }
  .hero .hero__container {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .hero .hero__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .hero .hero__top:not(:last-child) {
      margin-bottom: 64px; }
      @media (max-width: 991.98px) {
        .hero .hero__top:not(:last-child) {
          margin-bottom: 0; } }
    @media (max-width: 991.98px) {
      .hero .hero__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .hero .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 925px; }
  .hero .hero__title {
    max-width: 820px;
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2%;
    font-size: 72px;
    text-transform: uppercase; }
    .hero .hero__title:not(:last-child) {
      margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        .hero .hero__title:not(:last-child) {
          margin-bottom: 12px; } }
    @media (max-width: 991.98px) {
      .hero .hero__title {
        font-size: 32px; } }
  .hero .hero__text {
    text-wrap: balance;
    max-width: 550px;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%; }
    .hero .hero__text:not(:last-child) {
      margin-bottom: 40px; }
      @media (max-width: 991.98px) {
        .hero .hero__text:not(:last-child) {
          margin-bottom: 20px; } }
  .hero .hero__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (max-width: 991.98px) {
      .hero .hero__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 8px; } }
  @media (max-width: 767.98px) {
    .hero .hero__btn {
      width: 100%; } }
  .hero .hero__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px; }
    @media (max-width: 991.98px) {
      .hero .hero__right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
  .hero .hero__timer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .hero .hero__timer {
        width: 100%;
        max-width: 520px; } }
  .hero .hero__logo {
    margin-top: auto;
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .hero .hero__logo img {
      height: 52px;
      width: auto; }
      @media (max-width: 991.98px) {
        .hero .hero__logo img {
          height: 32px; } }
  @media (max-width: 991.98px) {
    .hero .hero__bottom {
      display: none; } }
  .hero .hero__info {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    max-width: 100%;
    background: #FFFFFF1A;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    width: 100%;
    min-width: 0; }
  .hero .hero__info-title {
    padding: 16px;
    min-width: 174px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .hero .hero__list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 16px;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    .hero .hero__list::-webkit-scrollbar {
      display: none; }
  .hero .hero__item {
    min-width: 250px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    padding: 16px 20px 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4px; }
    .hero .hero__item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 26px;
      height: 10px;
      background: url('data:image/svg+xml,<svg width="26" height="10" viewBox="0 0 26 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H19L26 10H7L0 0Z" fill="white"/></svg>') center no-repeat; }
    .hero .hero__item::after {
      content: "";
      position: absolute;
      top: 0;
      left: 10px;
      height: 4px;
      width: 100%;
      background: var(--white-color); }

.timer {
  background-color: var(--pink-color);
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white-color);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  .timer .timer__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .timer .timer__clock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px; }
  .timer .timer__item {
    background-color: var(--white-color);
    color: #151515;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 2px 12px;
    min-width: 79px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .timer .timer__value {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase; }
  .timer .timer__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-left: 4px; }
  .timer .timer__separator {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: var(--white-color); }

.how-work .how-work__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px; }
  @media (max-width: 991.98px) {
    .how-work .how-work__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.how-work .how-work__content {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (min-width: 992px) {
    .how-work .how-work__content {
      width: 400px; } }
  @media (max-width: 991.98px) {
    .how-work .how-work__content {
      width: 100%; } }

.how-work .how-work__title:not(:last-child) {
  margin-bottom: 24px; }

.how-work .how-work__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%; }
  @media (max-width: 991.98px) {
    .how-work .how-work__text {
      font-size: 16px; } }
  .how-work .how-work__text:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .how-work .how-work__text:not(:last-child) {
        margin-bottom: 16px; } }

.how-work .how-work__info:not(:last-child) {
  margin-bottom: 35px; }
  @media (max-width: 991.98px) {
    .how-work .how-work__info:not(:last-child) {
      margin-bottom: 16px; } }

.how-work .how-work__info ul, .how-work .how-work__info ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-dark);
  counter-reset: number; }
  @media (max-width: 991.98px) {
    .how-work .how-work__info ul, .how-work .how-work__info ol {
      font-size: 14px; } }
  .how-work .how-work__info ul li, .how-work .how-work__info ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    counter-increment: number; }
    @media (max-width: 991.98px) {
      .how-work .how-work__info ul li, .how-work .how-work__info ol li {
        gap: 12px; } }
    .how-work .how-work__info ul li::before, .how-work .how-work__info ol li::before {
      content: counter(number, decimal-leading-zero);
      font-family: "Science Gothic", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
      font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
      font-weight: 700;
      font-style: italic;
      font-size: 14px;
      line-height: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 62px;
      height: 24px;
      background-color: var(--color-blue);
      color: var(--white-color);
      clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%); }
      @media (max-width: 991.98px) {
        .how-work .how-work__info ul li::before, .how-work .how-work__info ol li::before {
          width: 56px;
          height: 22px;
          font-size: 12px; } }

.how-work .how-work__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-blue-4);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer; }
  .how-work .how-work__link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% - 26px);
    height: 4px;
    background: var(--color-blue-4);
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .how-work .how-work__link:focus {
    text-decoration: none; }
  @media (max-width: 991.98px) {
    .how-work .how-work__link {
      font-size: 14px; } }
  @media (any-hover: hover) {
    .how-work .how-work__link:hover {
      text-decoration: none; }
      .how-work .how-work__link:hover::before {
        -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
                transform: scaleX(1); }
      .how-work .how-work__link:hover .icon {
        -webkit-transform: translateX(4px);
            -ms-transform: translateX(4px);
                transform: translateX(4px); } }
  .how-work .how-work__link .icon {
    width: 20px;
    height: 20px;
    padding: 4px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }

.how-work .how-work__media {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start; }
  .how-work .how-work__media picture,
  .how-work .how-work__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.icon-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--color-blue);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease; }
  @media (any-hover: hover) {
    .icon-play:hover {
      background: var(--color-blue-4); } }
  .icon-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 16px;
    height: 21px;
    background: url('data:image/svg+xml,<svg width="16" height="21" viewBox="0 0 16 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.168 10.6424L1.03647 20.0633C0.730121 20.2676 0.3162 20.1848 0.11196 19.8785C0.0389601 19.7689 0 19.6402 0 19.5086V0.666667C0 0.298467 0.29848 0 0.666667 0C0.79828 0 0.926961 0.0389601 1.03647 0.11196L15.168 9.53289C15.4743 9.73716 15.5571 10.1512 15.3528 10.4574C15.304 10.5306 15.2412 10.5936 15.168 10.6424Z" fill="white"/></svg>') center no-repeat; }
  @media (max-width: 991.98px) {
    .icon-play {
      width: 48px;
      height: 48px; } }

.price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  color: var(--theme-color-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1; }
  .price-wrap .old-price {
    display: inline-block;
    color: var(--price-old);
    font-size: 0.7em;
    font-weight: 400;
    text-decoration: line-through;
    margin-bottom: 0.1em; }
  .price-wrap .price {
    color: var(--price-color);
    font-weight: bold; }
  .price-wrap .old-price ~ .price {
    color: var(--price-new); }
  .price-wrap .old-price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
  .price-wrap .old-price-wrap ~ .price {
    color: var(--price-new); }
  .price-wrap .discount-percents {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--price-new);
    color: var(--white-color);
    font-size: 12px;
    line-height: 1; }

.qty-picker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }
  @media (max-width: 991.98px) {
    .qty-picker {
      gap: 8px; } }
  .qty-picker .minus,
  .qty-picker .plus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.2);
    color: var(--theme-color-main);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .qty-picker .minus svg,
    .qty-picker .plus svg {
      width: 20px;
      height: 20px; }
    @media (any-hover: hover) {
      .qty-picker .minus:hover,
      .qty-picker .plus:hover {
        background: var(--theme-color-second);
        color: var(--white); } }
    .qty-picker .minus:focus,
    .qty-picker .plus:focus {
      background: var(--theme-color-second);
      color: var(--white); }
  .qty-picker input {
    height: 48px;
    width: 72px;
    padding: 1px 4px;
    text-align: center;
    outline: none !important;
    background: transparent !important;
    border-radius: 8px;
    border: 1px solid var(--grey-color);
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease; }
    @media (any-hover: hover) {
      .qty-picker input:hover {
        border-color: var(--theme-color-second); } }
    .qty-picker input:focus {
      border-color: var(--theme-color-second); }
  .qty-picker input::-webkit-outer-spin-button,
  .qty-picker input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .qty-picker input[type=number] {
    -moz-appearance: textfield; }

.products-sets-wrap {
  margin: 30px 0; }
  .products-sets-wrap .sets-carousel:not(.swiper-initialized) .swiper-slide ~ .swiper-slide {
    display: none; }
  .products-sets-wrap .sets-carousel {
    margin-left: -10px;
    margin-right: -10px; }
    .products-sets-wrap .sets-carousel .swiper-slide {
      padding: 10px; }
  .products-sets-wrap .set-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 320px auto 320px auto 320px;
    grid-template-columns: 320px auto 320px auto 320px;
    gap: 20px; }
    .products-sets-wrap .set-card .plus-icon,
    .products-sets-wrap .set-card .equal-icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .products-sets-wrap .set-card .plus-icon svg,
      .products-sets-wrap .set-card .equal-icon svg {
        width: 50px;
        height: 50px; }
    .products-sets-wrap .set-card .summary-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 10px;
      border-radius: 10px;
      -webkit-box-shadow: 0 2px 3px #bebebe;
              box-shadow: 0 2px 3px #bebebe; }
      .products-sets-wrap .set-card .summary-block .summary-title {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px; }
      .products-sets-wrap .set-card .summary-block .set-actions {
        margin-top: auto; }
        .products-sets-wrap .set-card .summary-block .set-actions .btn {
          width: 100%; }

.product-stickers {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px; }
  .product-stickers.stickers-top-left {
    top: 5px;
    left: 5px; }
  .product-stickers.stickers-top-right {
    top: 5px;
    right: 5px; }
  .product-stickers.stickers-bottom-left {
    bottom: 5px;
    left: 5px; }
  .product-stickers.stickers-bottom-right {
    bottom: 5px;
    right: 5px; }
  .product-stickers .label {
    padding: 2px 5px;
    border-radius: 2px;
    text-align: center;
    color: var(--white-color); }
    .product-stickers .label.label-is_new {
      background: blue; }
    .product-stickers .label.label-is_top {
      background: orange; }
    .product-stickers .label.label-is_sale {
      background: orangered; }
    .product-stickers .label.label-is_recommended {
      background: yellowgreen; }
    .product-stickers .label.label-is_exclusive {
      background: mediumpurple; }
    .product-stickers .label.label-is_used_equipment {
      background: darkslategray; }

.product-variants-wrap .variant-checker:not(:last-child) {
  margin-bottom: 10px; }

.product-variants-wrap .variant-checker .block-title {
  font-weight: bold; }

.product-variants-wrap .variant-checker-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px; }
  .product-variants-wrap .variant-checker-buttons .button {
    background: white;
    border: 1px solid #000000;
    border-radius: 3px;
    padding: 2px 5px; }
    .product-variants-wrap .variant-checker-buttons .button.selected {
      padding: 1px 4px;
      border-width: 2px;
      border-color: var(--theme-color-second); }

.product-variants-wrap .variant-checker-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px; }
  .product-variants-wrap .variant-checker-images .button-image {
    border: 1px solid #000000;
    background: white;
    border-radius: 3px;
    padding: 4px; }
    .product-variants-wrap .variant-checker-images .button-image.selected {
      padding: 3px;
      border-width: 2px;
      border-color: var(--theme-color-second); }

.cart-item .variant-attributes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 4px; }
  .cart-item .variant-attributes .variant-attribute {
    line-height: 1; }
  .cart-item .variant-attributes .value {
    font-weight: bold; }

.category-page-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(250px, 300px) 1fr;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 30px; }
  @media (max-width: 1199.98px) {
    .category-page-grid {
      -ms-grid-columns: 280px 1fr;
      grid-template-columns: 280px 1fr; } }
  @media (max-width: 991.98px) {
    .category-page-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .category-page-grid .catalog-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
    .category-page-grid .catalog-top:not(:last-child) {
      margin-bottom: 16px; }
  .category-page-grid .aside-elem:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid grey; }
  .category-page-grid .aside-elem.accordion-collapsed .arrow-wrap {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .category-page-grid .aside-elem:not(:last-child) {
    margin-bottom: 16px; }

@media (min-width: 992px) {
  .category-page-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 10px rgba(207, 207, 207, 0.3);
            box-shadow: 2px 2px 10px rgba(207, 207, 207, 0.3); } }

@media (max-width: 991.98px) {
  .category-page-aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100dvh;
    background: var(--white);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; } }

.category-page-aside .category-aside-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid black; }
  @media (min-width: 992px) {
    .category-page-aside .category-aside-top {
      display: none; } }
  .category-page-aside .category-aside-top .category-aside-top-title {
    color: var(--theme-color-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
  .category-page-aside .category-aside-top .category-aside-top-close {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%; }
    .category-page-aside .category-aside-top .category-aside-top-close .icon {
      width: 12px;
      height: 12px;
      color: var(--theme-color-main); }

.category-page-aside .slider-nav {
  padding-top: 10px; }
  .category-page-aside .slider-nav .amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .category-page-aside .slider-nav .amount:not(:last-child) {
      margin-bottom: 29px; }
  .category-page-aside .slider-nav .amount-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    min-width: 88px;
    color: grey;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .category-page-aside .slider-nav .amount-item input {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      min-height: 40px;
      max-width: 88px;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-align: center;
      color: var(--theme-color-main);
      border-radius: 4px;
      border: 1px solid #e3e3e3;
      background: var(--white);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (any-hover: hover) {
        .category-page-aside .slider-nav .amount-item input:hover, .category-page-aside .slider-nav .amount-item input:focus {
          border-color: var(--theme-color-main); } }
      .category-page-aside .slider-nav .amount-item input:focus-visible, .category-page-aside .slider-nav .amount-item input:focus {
        border-color: var(--theme-color-main);
        outline: none; }
  .category-page-aside .slider-nav .ui-slider {
    height: 6px; }
    .category-page-aside .slider-nav .ui-slider:not(:last-child) {
      margin-bottom: 25px; }
  .category-page-aside .slider-nav .ui-widget-content {
    background: #f1f1f1;
    height: 6px;
    border-radius: 100px;
    border: none;
    margin: 0 32px; }
    .category-page-aside .slider-nav .ui-widget-content:after {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      border-radius: 100px;
      top: -2px;
      bottom: 2px;
      left: -32px;
      right: -32px;
      background: #f1f1f1; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range {
    height: 6px;
    top: -2px;
    background: transparent; }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 105%;
      height: 100%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: #ffac07; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle {
    top: 1px;
    width: 32px;
    height: 0;
    display: block;
    border: none;
    outline: none;
    margin-left: -16px; }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle::before {
      content: "";
      position: absolute;
      top: 50%;
      z-index: 1;
      width: 32px;
      height: 32px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background: black;
      cursor: pointer;
      border-radius: 100px; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle:nth-of-type(1):before {
    right: 50%; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle:nth-of-type(2):before {
    left: 50%; }
  .category-page-aside .slider-nav .btn-apply {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 4px; }

.catalog-product-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; }
  @media (max-width: 767.98px) {
    .catalog-product-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px) {
    .catalog-product-grid {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr); } }

.category-page-aside-wrap {
  padding: 10px; }
  @media (max-width: 991.98px) {
    .category-page-aside-wrap {
      padding: 100px 16px 16px;
      overflow-y: auto;
      max-height: 100dvh; } }

.aside-elem-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer; }
  .aside-elem-title .arrow-wrap {
    margin-left: auto;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--theme-color-main);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .aside-elem-title .arrow-wrap .icon {
      width: 10px;
      height: 10px; }

.btn-filter-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 328px;
  margin-right: auto;
  height: 48px;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 56px;
  background: black;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; }
  .btn-filter-mobile:not(:last-child) {
    margin-bottom: 16px; }
  .btn-filter-mobile::before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 21 20" fill="none"><path d="M18.8333 2.29297H2.16667C1.8904 2.29297 1.62545 2.40272 1.4301 2.59807C1.23475 2.79342 1.125 3.05837 1.125 3.33464C1.125 3.6109 1.23475 3.87585 1.4301 4.0712C1.62545 4.26656 1.8904 4.3763 2.16667 4.3763H18.8333C19.1096 4.3763 19.3746 4.26656 19.5699 4.0712C19.7653 3.87585 19.875 3.6109 19.875 3.33464C19.875 3.05837 19.7653 2.79342 19.5699 2.59807C19.3746 2.40272 19.1096 2.29297 18.8333 2.29297Z" fill="white"/><path d="M18.8333 8.95898H2.16667C1.8904 8.95898 1.62545 9.06873 1.4301 9.26408C1.23475 9.45943 1.125 9.72438 1.125 10.0007C1.125 10.2769 1.23475 10.5419 1.4301 10.7372C1.62545 10.9326 1.8904 11.0423 2.16667 11.0423H18.8333C19.1096 11.0423 19.3746 10.9326 19.5699 10.7372C19.7653 10.5419 19.875 10.2769 19.875 10.0007C19.875 9.72438 19.7653 9.45943 19.5699 9.26408C19.3746 9.06873 19.1096 8.95898 18.8333 8.95898Z" fill="white"/><path d="M18.8333 15.625H2.16667C1.8904 15.625 1.62545 15.7347 1.4301 15.9301C1.23475 16.1254 1.125 16.3904 1.125 16.6667C1.125 16.9429 1.23475 17.2079 1.4301 17.4032C1.62545 17.5986 1.8904 17.7083 2.16667 17.7083H18.8333C19.1096 17.7083 19.3746 17.5986 19.5699 17.4032C19.7653 17.2079 19.875 16.9429 19.875 16.6667C19.875 16.3904 19.7653 16.1254 19.5699 15.9301C19.3746 15.7347 19.1096 15.625 18.8333 15.625Z" fill="white"/><path d="M14.667 6.45898C16.3929 6.45898 17.792 5.05987 17.792 3.33398C17.792 1.60809 16.3929 0.208984 14.667 0.208984C12.9411 0.208984 11.542 1.60809 11.542 3.33398C11.542 5.05987 12.9411 6.45898 14.667 6.45898Z" fill="white"/><path d="M8.83301 13.125C10.5589 13.125 11.958 11.7259 11.958 10C11.958 8.27411 10.5589 6.875 8.83301 6.875C7.10712 6.875 5.70801 8.27411 5.70801 10C5.70801 11.7259 7.10712 13.125 8.83301 13.125Z" fill="white"/><path d="M14.667 19.793C16.3929 19.793 17.792 18.3939 17.792 16.668C17.792 14.9421 16.3929 13.543 14.667 13.543C12.9411 13.543 11.542 14.9421 11.542 16.668C11.542 18.3939 12.9411 19.793 14.667 19.793Z" fill="white"/></svg>') center no-repeat; }
  @media (min-width: 992px) {
    .btn-filter-mobile {
      display: none; } }

.catalog-aside-nav {
  padding-top: 12px;
  padding-bottom: 12px; }
  .catalog-aside-nav ul, .catalog-aside-nav li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .catalog-aside-nav .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .catalog-aside-nav .nav-item:not(:last-child) {
      margin-bottom: 12px; }
  .catalog-aside-nav .nav-link {
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: var(--theme-color-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .catalog-aside-nav .nav-link.active {
      color: grey; }
    @media (any-hover: hover) {
      .catalog-aside-nav .nav-link:hover {
        color: grey; } }
    .catalog-aside-nav .nav-link:focus {
      color: grey; }

.catalog-filter-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px; }
  @media (max-width: 991.98px) {
    .catalog-filter-selected {
      margin-bottom: 2px; } }
  .catalog-filter-selected .filter-selected-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .catalog-filter-selected .filter-selected-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .catalog-filter-selected .filter-selected {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2px 10px;
    gap: 8px;
    min-height: 24px;
    color: var(--theme-color-main);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    border-radius: 100px;
    background: #f8f8f8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .catalog-filter-selected .filter-selected .icon-wrap {
      width: 8px;
      height: 8px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      color: var(--theme-color-main);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected:hover {
        background: grey;
        color: var(--white);
        text-decoration: none; }
        .catalog-filter-selected .filter-selected:hover .icon-wrap {
          color: var(--white); } }
    .catalog-filter-selected .filter-selected:focus {
      background: grey;
      color: var(--white);
      text-decoration: none; }
      .catalog-filter-selected .filter-selected:focus .icon-wrap {
        color: var(--white); }
  .catalog-filter-selected .filter-selected-clear {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    color: var(--theme-color-main);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected-clear:hover {
        background: grey;
        color: var(--white); } }
    .catalog-filter-selected .filter-selected-clear:focus {
      background: grey;
      color: var(--white); }

.subcategory-slider-wrap {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 48px; }
  @media (max-width: 991.98px) {
    .subcategory-slider-wrap {
      padding-bottom: 24px; } }
  .subcategory-slider-wrap .subcategory-slider {
    position: relative; }
    @media (max-width: 991.98px) {
      .subcategory-slider-wrap .subcategory-slider {
        padding-bottom: 43px; } }
    .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) {
      width: 100%; }
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        max-height: 120px;
        overflow: hidden; }
        @media (max-width: 1199.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[5];
            grid-template-columns: repeat(5, 1fr);
            gap: 16px; } }
        @media (max-width: 991.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[4];
            grid-template-columns: repeat(4, 1fr); } }
        @media (max-width: 767.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 575.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr); } }
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-button-next,
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-button-prev {
        display: none; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-image {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-image:not(:last-child) {
        margin-bottom: 12px; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-image img, .subcategory-slider-wrap .subcategory-slider .subcategory-image picture {
        display: block; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      color: var(--theme-color-main);
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-title span {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        word-break: break-word; }
      @media (max-width: 991.98px) {
        .subcategory-slider-wrap .subcategory-slider .subcategory-title {
          font-size: 18px; } }
    @media (min-width: 768px) {
      .subcategory-slider-wrap .subcategory-slider .swiper-pagination {
        display: none; } }
    .subcategory-slider-wrap .subcategory-slider .swiper-button-next.swiper-button-disabled,
    .subcategory-slider-wrap .subcategory-slider .swiper-button-prev.swiper-button-disabled {
      opacity: 0;
      visibility: hidden; }
    @media (max-width: 767.98px) {
      .subcategory-slider-wrap .subcategory-slider .swiper-button-next,
      .subcategory-slider-wrap .subcategory-slider .swiper-button-prev {
        display: none; } }

.section-categories-navigation {
  margin-bottom: 50px; }

.categories-navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px; }
  @media (max-width: 991.98px) {
    .categories-navigation {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767.98px) {
    .categories-navigation {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px) {
    .categories-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 16px; } }
  .categories-navigation .category-card {
    padding: 20px 20px 25px;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 3px #bebebe;
            box-shadow: 0 2px 3px #bebebe; }
    .categories-navigation .category-card .category-img {
      display: block;
      position: relative;
      margin-bottom: 10px; }
      .categories-navigation .category-card .category-img img, .categories-navigation .category-card .category-img picture {
        display: block; }
    .categories-navigation .category-card .category-title {
      font-weight: 500;
      font-size: 18px; }
    .categories-navigation .category-card .category-sub-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      padding-left: 15px; }

.catalog-filter .aside-elem:not(:last-child) {
  margin-bottom: 20px; }

.catalog-filter .aside-elem-title {
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .catalog-filter .aside-elem-title .arrow-wrap {
    margin-left: auto; }

.catalog-filter .filter-search-wrap {
  margin-top: 10px; }
  .catalog-filter .filter-search-wrap input {
    width: 100%; }

.catalog-filter .aside-elem-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px; }

.catalog-filter .aside-elem-list:not(.show-hidden) .attribute-checkbox.is-hidden,
.catalog-filter .aside-elem-list:not(.show-hidden) .color-value.is-hidden {
  display: none; }

.catalog-filter .aside-elem-list.colors-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
  overflow: unset;
  max-height: unset;
  padding-right: 0; }

.catalog-filter .color-value {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer; }
  .catalog-filter .color-value.checked {
    border-color: green; }
  .catalog-filter .color-value:focus, .catalog-filter .color-value:hover {
    -webkit-box-shadow: 0 0 6px 0 #000000;
            box-shadow: 0 0 6px 0 #000000; }

.catalog-filter .attribute-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  color: var(--color-link);
  text-decoration: none; }
  .catalog-filter .attribute-checkbox .checkmark {
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1px solid #e9e9e9;
    background-color: #ffffff;
    border-radius: 2px;
    margin-top: 3px; }
  .catalog-filter .attribute-checkbox.active .checkmark {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5.5" fill="none" viewBox="0 0 16 11"><path stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m2 4.77 4.615 4.615L14 2"/></svg>');
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-color: #000000; }
  @media (pointer: fine) {
    .catalog-filter .attribute-checkbox:hover {
      text-decoration: underline; } }

.catalog-filter .toggle-elem-list {
  margin-top: 10px;
  font-weight: bolder;
  color: var(--color-link);
  text-decoration: underline;
  cursor: pointer; }
  .catalog-filter .toggle-elem-list .open {
    display: block; }
  .catalog-filter .toggle-elem-list .hide {
    display: none; }
  .catalog-filter .toggle-elem-list.active .open {
    display: none; }
  .catalog-filter .toggle-elem-list.active .hide {
    display: block; }

.catalog-filter-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px; }
  .catalog-filter-selected .filter-selected-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .catalog-filter-selected .filter-selected-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px; }
  .catalog-filter-selected .filter-selected,
  .catalog-filter-selected .filter-selected-clear {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    border: 1px solid #000000;
    padding: 2px 6px;
    border-radius: 2px; }

.catalog-sorting-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px; }
  .catalog-sorting-wrap .sorting-title {
    text-transform: uppercase; }
  .catalog-sorting-wrap .jq-selectbox.opened .jq-selectbox__trigger {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .catalog-sorting-wrap .jq-selectbox .sorting-select {
    border: none; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 20px;
    min-width: 180px;
    width: 100%;
    padding: 4px 16px;
    background: var(--white);
    border: none;
    color: var(--theme-color-main);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      color: var(--theme-color-main);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:hover {
          color: grey; } }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:focus {
        color: grey; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger {
    width: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger-arrow {
    margin-top: 0;
    width: 20px;
    height: 20px;
    color: var(--theme-color-main);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><circle cx="10" cy="10" r="10" transform="rotate(90 10 10)" fill="white"/><path d="M13.3333 9.16675L9.99992 12.5001L6.66659 9.16675" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown {
    left: 50% !important;
    min-width: 150px;
    border: 1px solid;
    border-radius: 6px;
    padding: 6px;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.08); }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown ul, .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li {
      list-style: none; }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li {
      border-radius: 4px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:focus, .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li.sel {
        background: grey;
        color: var(--white); }
      @media (any-hover: hover) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:not(.sel):hover {
          color: var(--theme-color-main); } }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:not(.sel):focus {
        color: var(--theme-color-main); }

.catalog-sorting-wrap.catalog-sorting-inline .sorting-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; }

.catalog-sorting-wrap.catalog-sorting-inline .sorting-btn {
  cursor: pointer; }
  .catalog-sorting-wrap.catalog-sorting-inline .sorting-btn.active {
    font-weight: bold;
    text-decoration: underline; }

.per-page-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px; }
  .per-page-wrap:not(:last-child) {
    margin-bottom: 16px; }
  .per-page-wrap .per-page-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .per-page-wrap .per-page-item.active {
    font-weight: 700; }

.page-post-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px;
  grid-template-columns: 1fr 300px;
  gap: 30px; }

.article-content .nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0; }
  .article-content .nav-buttons .nav-link-item {
    gap: 10px; }
  .article-content .nav-buttons .nav-link-item-prev {
    padding-left: 7px; }
  .article-content .nav-buttons .nav-link-item-next {
    margin-left: auto;
    padding-right: 7px; }

.article-section-youtube .preview {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 10px;
  overflow: hidden; }
  .article-section-youtube .preview .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 116px;
    height: 80px; }

.article-header {
  margin: 30px 0; }
  .article-header .author-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 10px; }
    .article-header .author-wrap .author-img {
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 999px;
      overflow: hidden; }
    .article-header .author-wrap .author-position {
      font-size: 0.875em;
      margin-bottom: 4px; }
  .article-header .article-rubrics-wrap {
    margin-bottom: 10px; }

.article-aside-sticky {
  position: sticky;
  top: 20px;
  max-height: calc(100dvh - 20px - 20px);
  overflow: auto;
  margin: -15px;
  padding: 15px; }

.article-aside-nav {
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px #cfcfcf;
          box-shadow: 2px 2px 10px #cfcfcf;
  background: white;
  margin-bottom: 30px; }
  .article-aside-nav .title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px; }
  .article-aside-nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px; }

.articles-latest-text-slider,
.articles-latest-video-slider {
  position: relative;
  padding: 0 16px;
  margin: 0 -16px;
  padding-bottom: 64px !important;
  overflow: visible !important; }
  .articles-latest-text-slider:has(.swiper-pagination-lock),
  .articles-latest-video-slider:has(.swiper-pagination-lock) {
    padding-bottom: 0 !important; }
  .articles-latest-text-slider .swiper-slide,
  .articles-latest-video-slider .swiper-slide {
    opacity: 1;
    height: auto !important; }
    .articles-latest-text-slider .swiper-slide:not(.swiper-slide-visible),
    .articles-latest-video-slider .swiper-slide:not(.swiper-slide-visible) {
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
  .articles-latest-text-slider:not(.swiper-initialized),
  .articles-latest-video-slider:not(.swiper-initialized) {
    overflow: hidden; }
    .articles-latest-text-slider:not(.swiper-initialized) .swiper-wrapper,
    .articles-latest-video-slider:not(.swiper-initialized) .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      margin-right: -16px; }
    .articles-latest-text-slider:not(.swiper-initialized) .swiper-slide,
    .articles-latest-video-slider:not(.swiper-initialized) .swiper-slide {
      width: 25%;
      padding-right: 16px; }
      @media (max-width: 991.98px) {
        .articles-latest-text-slider:not(.swiper-initialized) .swiper-slide,
        .articles-latest-video-slider:not(.swiper-initialized) .swiper-slide {
          width: 33.333%; } }
      @media (max-width: 767.98px) {
        .articles-latest-text-slider:not(.swiper-initialized) .swiper-slide,
        .articles-latest-video-slider:not(.swiper-initialized) .swiper-slide {
          width: 50%; } }
      @media (max-width: 575.98px) {
        .articles-latest-text-slider:not(.swiper-initialized) .swiper-slide,
        .articles-latest-video-slider:not(.swiper-initialized) .swiper-slide {
          width: 100%; } }
  .articles-latest-text-slider .swiper-slide,
  .articles-latest-video-slider .swiper-slide {
    height: auto !important; }

.articles-latest {
  background: var(--gray-dark); }
  .articles-latest .articles-latest__title {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important; }
  .articles-latest .articles-latest__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px; }
    @media (max-width: 991.98px) {
      .articles-latest .articles-latest__controls {
        row-gap: 16px; } }
    .articles-latest .articles-latest__controls:not(:last-child) {
      margin-bottom: 16px; }
  .articles-latest .articles-latest__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .articles-latest .articles-latest__search input {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 48px;
      background: var(--white-color);
      font-weight: 400;
      font-size: 16px;
      line-height: 130%;
      border-radius: 0;
      border: none;
      padding: 8px 16px;
      caret-color: var(--gray-dark);
      color: var(--gray-dark);
      -webkit-box-shadow: inset 0 0 0 2px var(--gray-light2);
              box-shadow: inset 0 0 0 2px var(--gray-light2); }
      @media (max-width: 991.98px) {
        .articles-latest .articles-latest__search input {
          height: 44px;
          padding: 8px 12px; } }
      .articles-latest .articles-latest__search input::-webkit-input-placeholder {
        color: var(--gray-light); }
      .articles-latest .articles-latest__search input::-moz-placeholder {
        color: var(--gray-light); }
      .articles-latest .articles-latest__search input:-ms-input-placeholder {
        color: var(--gray-light); }
      .articles-latest .articles-latest__search input::-ms-input-placeholder {
        color: var(--gray-light); }
      .articles-latest .articles-latest__search input::placeholder {
        color: var(--gray-light); }
      .articles-latest .articles-latest__search input:hover {
        -webkit-box-shadow: inset 0 0 0 4px var(--gray-light2);
                box-shadow: inset 0 0 0 4px var(--gray-light2); }
      .articles-latest .articles-latest__search input:focus {
        -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
                box-shadow: inset 0 0 0 4px var(--color-blue-4); }
      .articles-latest .articles-latest__search input:active {
        -webkit-box-shadow: inset 0 0 0 4px var(--color-blue-4);
                box-shadow: inset 0 0 0 4px var(--color-blue-4); }
      .articles-latest .articles-latest__search input:focus {
        outline: none; }
  .articles-latest .articles-latest__btn-search {
    width: 48px;
    height: 48px;
    color: var(--white-color);
    border-radius: 0;
    background: #FFFFFF1A;
    border: 4px solid #FFFFFF1A;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (max-width: 991.98px) {
      .articles-latest .articles-latest__btn-search {
        width: 46px;
        height: 44px; } }
    .articles-latest .articles-latest__btn-search .icon {
      width: 20px;
      height: 20px; }
      @media (max-width: 991.98px) {
        .articles-latest .articles-latest__btn-search .icon {
          width: 16px;
          height: 16px; } }
    @media (any-hover: hover) {
      .articles-latest .articles-latest__btn-search:hover {
        color: var(--white-color);
        border-color: var(--white-color); } }
  .articles-latest .articles-latest__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px; }
    @media (min-width: 768px) {
      .articles-latest .articles-latest__info {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (max-width: 767.98px) {
      .articles-latest .articles-latest__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px; } }
  .articles-latest .articles-latest__count {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--white-color); }
    @media (max-width: 991.98px) {
      .articles-latest .articles-latest__count {
        font-size: 14px; } }
  .articles-latest .articles-latest__filter {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .articles-latest .js-articles-container:not(:last-child) {
    margin-bottom: 40px; }
    @media (max-width: 991.98px) {
      .articles-latest .js-articles-container:not(:last-child) {
        margin-bottom: 20px; } }
  .articles-latest .articles-latest__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
    @media (max-width: 991.98px) {
      .articles-latest .articles-latest__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; } }
    @media (max-width: 767.98px) {
      .articles-latest .articles-latest__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }
    .articles-latest .articles-latest__grid:not(:last-child) {
      margin-bottom: 40px; }
      @media (max-width: 991.98px) {
        .articles-latest .articles-latest__grid:not(:last-child) {
          margin-bottom: 20px; } }
  .articles-latest .articles-latest__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .articles-latest .articles-latest__bottom:not(:last-child) {
      margin-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .articles-latest .articles-latest__bottom:not(:last-child) {
          margin-bottom: 48px; } }
      @media (min-width: 1412px) {
        .articles-latest .articles-latest__bottom:not(:last-child) {
          margin-bottom: 110px; } }

.sort-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px; }
  .sort-list .sort-list__item {
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.sort-btn {
  background: transparent;
  padding: 2px 0;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent; }
  @media (any-hover: hover) {
    .sort-btn:hover {
      color: var(--white-color); } }
  .sort-btn:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .sort-btn.is-active {
    color: var(--white-color);
    border-color: var(--color-blue-4); }

.statistic {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 991.98px) {
    .statistic {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .statistic .statistic__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    padding-bottom: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--white-color); }
    @media (max-width: 991.98px) {
      .statistic .statistic__item {
        font-size: 14px; } }
    .statistic .statistic__item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: calc(100% - 4px);
      height: 4px;
      background: var(--color-blue-4); }
    .statistic .statistic__item::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 26px;
      height: 10px;
      background: var(--color-blue-4);
      clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%); }
  .statistic .statistic__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px; }
    @media (max-width: 991.98px) {
      .statistic .statistic__item-content {
        gap: 16px; } }
  .statistic .statistic__item-icon {
    width: 42px;
    height: 42px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: transparent;
    border: 2px solid var(--white-color); }
    @media (max-width: 991.98px) {
      .statistic .statistic__item-icon {
        width: 32px;
        height: 32px; } }
    .statistic .statistic__item-icon .icon {
      width: 20px;
      height: 20px; }
      @media (max-width: 991.98px) {
        .statistic .statistic__item-icon .icon {
          width: 18px;
          height: 18px; } }
  .statistic .statistic__item-count {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -5%;
    text-transform: uppercase;
    color: var(--color-blue-4); }
    @media (max-width: 991.98px) {
      .statistic .statistic__item-count {
        font-size: 48px; } }

.favorites__title.page-title:not(:last-child) {
  margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .favorites__title.page-title:not(:last-child) {
      margin-bottom: 12px; } }

.favorites__text {
  max-width: 570px;
  font-weight: 600;
  line-height: 120%;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .favorites__text {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .favorites__text {
      font-size: 16px; } }
  .favorites__text:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .favorites__text:not(:last-child) {
        margin-bottom: 16px; } }

.favorites-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 991.98px) {
    .favorites-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 12px; } }
  @media (max-width: 767.98px) {
    .favorites-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }

.favorites-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #26262633;
  color: var(--white-color);
  cursor: pointer;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 0;
  border: none;
  outline: none; }
  .favorites-toggle::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.51059 14.8L3.63272 18.0902L4.94549 11.4833L0 6.90983L6.6892 6.11672L9.51059 0L12.3319 6.11672L19.0211 6.90983L14.0757 11.4833L15.3884 18.0902L9.51059 14.8ZM9.51059 12.89L13.0495 14.8709L12.2591 10.8931L15.2367 8.1395L11.2093 7.66195L9.51059 3.97918L7.81187 7.66195L3.78443 8.1395L6.76202 10.8931L5.97162 14.8709L9.51059 12.89Z" fill="white"/></svg>') center no-repeat;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease; }
  @media (any-hover: hover) {
    .favorites-toggle:hover {
      background: var(--gray-dark); } }
  .favorites-toggle .icon {
    width: 20px;
    height: 20px;
    display: none; }
  .favorites-toggle.choosed, .favorites-toggle.is-active {
    background: #26262633; }
    .favorites-toggle.choosed::before, .favorites-toggle.is-active::before {
      background: url('data:image/svg+xml,<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.51059 14.8L3.63272 18.0902L4.94549 11.4833L0 6.90983L6.6892 6.11672L9.51059 0L12.3319 6.11672L19.0211 6.90983L14.0757 11.4833L15.3884 18.0902L9.51059 14.8Z" fill="white"/></svg>') center no-repeat; }
  .favorites-toggle:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none; }

.rules-block .page-title {
  font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .rules-block .page-title {
      font-size: 28px; } }
  @media (min-width: 1412px) {
    .rules-block .page-title {
      font-size: 40px; } }
  .rules-block .page-title:not(:last-child) {
    margin-bottom: 20px; }

.rules-block .rules-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  font-weight: 400;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  line-height: 140%; }
  @media (max-width: 375px) {
    .rules-block .rules-block__item {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .rules-block .rules-block__item {
      font-size: 16px; } }
  .rules-block .rules-block__item:not(:last-child) {
    margin-bottom: 24px; }
  .rules-block .rules-block__item .ic-arrow {
    width: 16px;
    height: 16px;
    padding: 2px; }
  .rules-block .rules-block__item p {
    margin-bottom: 0; }
  .rules-block .rules-block__item a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    color: var(--color-blue-4);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 375px) {
      .rules-block .rules-block__item a {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .rules-block .rules-block__item a {
        font-size: 16px; } }
    .rules-block .rules-block__item a::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--color-blue-4);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: left;
          -ms-transform-origin: left;
              transform-origin: left;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .rules-block .rules-block__item a:focus {
      text-decoration: none; }
    @media (any-hover: hover) {
      .rules-block .rules-block__item a:hover {
        text-decoration: none; }
        .rules-block .rules-block__item a:hover::before {
          -webkit-transform: scaleX(1);
              -ms-transform: scaleX(1);
                  transform: scaleX(1); } }

.rules-block .rules-block__actions {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 991.98px) {
    .rules-block .rules-block__actions {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

.rules-block .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.rules-block .rules-block__logo {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .rules-block .rules-block__logo img {
    height: 100%;
    width: auto; }

.rubrics-nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #FFFFFF1A;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 8px; }
  .rubrics-nav .rubric {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px 12px;
    gap: 6px;
    min-height: 32px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: var(--white-color);
    background-color: transparent; }
    .rubrics-nav .rubric .icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 20px;
      height: 20px; }
    @media (pointer: fine) {
      .rubrics-nav .rubric:hover {
        background: var(--white-color);
        color: var(--gray-dark); }
        .rubrics-nav .rubric:hover::before {
          -webkit-filter: invert(1);
                  filter: invert(1); }
        .rubrics-nav .rubric:hover .icon {
          color: var(--gray-dark); } }
    .rubrics-nav .rubric.rubric-voice::before {
      content: '';
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: url('data:image/svg+xml,<svg width="19" height="17" viewBox="0 0 19 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.3332 6.1339H16.6667C17.5872 6.1339 18.3333 6.88009 18.3333 7.80054V9.55421C18.3333 9.77188 18.2907 9.98746 18.2078 10.1888L15.6292 16.4512C15.5006 16.7635 15.1963 16.9672 14.8586 16.9672H0.833333C0.3731 16.9672 0 16.5941 0 16.1339V7.80054C0 7.34033 0.3731 6.96723 0.833333 6.96723H3.73487C4.00564 6.96723 4.25953 6.83568 4.41568 6.61447L8.96017 0.176422C9.07892 0.00819801 9.30275 -0.0480587 9.48692 0.0440288L10.9987 0.799885C11.875 1.23808 12.3276 2.22773 12.0859 3.17725L11.3332 6.1339ZM5 8.29013V15.3005H14.3005L16.6667 9.55421V7.80054H11.3332C10.2459 7.80054 9.44983 6.77636 9.718 5.72272L10.4708 2.76608C10.5191 2.57617 10.4286 2.37823 10.2533 2.2906L9.70233 2.01513L5.77729 7.57561C5.56904 7.87063 5.30284 8.11246 5 8.29013ZM3.33333 8.63388H1.66667V15.3005H3.33333V8.63388Z" fill="white"/></svg>') center no-repeat;
      -webkit-transition: -webkit-filter 0.3s ease;
      transition: -webkit-filter 0.3s ease;
      transition: filter 0.3s ease;
      transition: filter 0.3s ease, -webkit-filter 0.3s ease; }
    .rubrics-nav .rubric.rubric-favorites::before {
      content: '';
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: url('data:image/svg+xml,<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.51059 14.8L3.63272 18.0902L4.94549 11.4833L0 6.90983L6.6892 6.11672L9.51059 0L12.3319 6.11672L19.0211 6.90983L14.0757 11.4833L15.3884 18.0902L9.51059 14.8ZM9.51059 12.89L13.0495 14.8709L12.2591 10.8931L15.2367 8.1395L11.2093 7.66195L9.51059 3.97918L7.81187 7.66195L3.78443 8.1395L6.76202 10.8931L5.97162 14.8709L9.51059 12.89Z" fill="white"/></svg>') center no-repeat;
      -webkit-transition: -webkit-filter 0.3s ease;
      transition: -webkit-filter 0.3s ease;
      transition: filter 0.3s ease;
      transition: filter 0.3s ease, -webkit-filter 0.3s ease; }
    .rubrics-nav .rubric.active {
      color: var(--white-color);
      background-color: var(--theme-color-main);
      cursor: default;
      pointer-events: none; }

.page-blog {
  padding-top: calc(72px + (104 - 72) * ((100vw - 375px) / (1412 - 375)));
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375)));
  background: var(--gray-dark);
  color: var(--white-color); }
  @media (max-width: 375px) {
    .page-blog {
      padding-top: 72px; } }
  @media (min-width: 1412px) {
    .page-blog {
      padding-top: 104px; } }
  @media (max-width: 375px) {
    .page-blog {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    .page-blog {
      padding-bottom: 110px; } }

.page-blog-root .callback-main {
  padding-top: 110px !important;
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 991.98px) {
    .page-blog-root .callback-main {
      padding-top: 48px !important; } }
  @media (max-width: 375px) {
    .page-blog-root .callback-main {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    .page-blog-root .callback-main {
      padding-bottom: 110px; } }

.articles-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 991.98px) {
    .articles-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 8px; } }
  @media (max-width: 767.98px) {
    .articles-grid {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr); } }

.article-card.article-card-video .article-img {
  position: relative; }
  .article-card.article-card-video .article-img:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 58px;
    height: 40px;
    background: url('data:image/svg+xml,<svg class="play-btn" width="116" height="81" viewBox="0 0 116 81" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M46.2857 57.8571L76.3136 40.5L46.2857 23.1429V57.8571ZM113.169 12.555C113.921 15.2743 114.441 18.9193 114.789 23.5479C115.194 28.1764 115.367 32.1686 115.367 35.64L115.714 40.5C115.714 53.1707 114.789 62.4857 113.169 68.445C111.722 73.6521 108.366 77.0079 103.159 78.4543C100.44 79.2064 95.4643 79.7271 87.8271 80.0743C80.3057 80.4793 73.4207 80.6529 67.0564 80.6529L57.8571 81C33.615 81 18.5143 80.0743 12.555 78.4543C7.34786 77.0079 3.99214 73.6521 2.54571 68.445C1.79357 65.7257 1.27286 62.0807 0.925715 57.4521C0.520715 52.8236 0.347143 48.8314 0.347143 45.36L0 40.5C0 27.8293 0.925715 18.5143 2.54571 12.555C3.99214 7.34786 7.34786 3.99214 12.555 2.54571C15.2743 1.79357 20.25 1.27286 27.8871 0.925713C35.4086 0.520713 42.2936 0.347143 48.6579 0.347143L57.8571 0C82.0993 0 97.2 0.925715 103.159 2.54571C108.366 3.99214 111.722 7.34786 113.169 12.555Z" fill="red"></path></svg>') no-repeat center;
    background-size: contain; }

.article-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .article-card .article-card__img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .article-card .article-card__img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #00000033;
      z-index: 1; }
    .article-card .article-card__img picture,
    .article-card .article-card__img img {
      aspect-ratio: 400 / 225;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .article-card .icon-play {
    z-index: 10;
    background: #FFFFFF1A;
    width: 40px;
    height: 40px;
    border: 1px solid #2626261A;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px); }
    @media (max-width: 991.98px) {
      .article-card .icon-play {
        width: 36px;
        height: 36px; } }
    .article-card .icon-play::before {
      content: '';
      width: 8px;
      height: 11px;
      background: url('data:image/svg+xml,<svg width="8" height="11" viewBox="0 0 8 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.584 5.32118L0.518234 10.0316C0.36506 10.1338 0.1581 10.0924 0.05598 9.93925C0.01948 9.88445 0 9.82011 0 9.75431V0.333333C0 0.149233 0.14924 0 0.333333 0C0.39914 0 0.46348 0.01948 0.518234 0.05598L7.584 4.76645C7.73713 4.86858 7.77853 5.07558 7.6764 5.22871C7.652 5.26531 7.6206 5.29678 7.584 5.32118Z" fill="white"/></svg>') center no-repeat; }
  .article-card .article-card__content {
    padding: 16px;
    background: var(--white-color); }
  .article-card .article-card__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px; }
    .article-card .article-card__head:not(:last-child) {
      margin-bottom: 20px; }
  .article-card .article-card__date {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gray-light); }
    @media (max-width: 991.98px) {
      .article-card .article-card__date {
        font-size: 13px; } }
  .article-card .article-card__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .article-card .article-card__count {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase; }
    .article-card .article-card__count:not(:last-child) {
      padding-right: 12px; }
      .article-card .article-card__count:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0;
        width: 2px;
        height: 14px;
        background: var(--gray-light2); }
    .article-card .article-card__count .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .article-card .article-card__count.votes-count .icon {
      display: none; }
    .article-card .article-card__count.votes-count::after {
      content: '';
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 8.99997H5V21H2C1.44772 21 1 20.5523 1 20V9.99997C1 9.44769 1.44772 8.99997 2 8.99997ZM7.29289 7.70708L13.6934 1.30661C13.8693 1.13066 14.1479 1.11087 14.3469 1.26016L15.1995 1.8996C15.6842 2.26312 15.9026 2.88253 15.7531 3.46966L14.5998 7.99997H21C22.1046 7.99997 23 8.8954 23 9.99997V12.1043C23 12.3656 22.9488 12.6243 22.8494 12.8658L19.755 20.3807C19.6007 20.7554 19.2355 21 18.8303 21H8C7.44772 21 7 20.5523 7 20V8.41419C7 8.14897 7.10536 7.89462 7.29289 7.70708Z" fill="black"/></svg>') center no-repeat;
      background-size: contain; }
  .article-card .article-card__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gray-dark); }
    @media (max-width: 991.98px) {
      .article-card .article-card__title {
        font-size: 18px; } }
    .article-card .article-card__title:not(:last-child) {
      margin-bottom: 4px; }
  .article-card .article-card__link {
    color: var(--gray-dark);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .article-card .article-card__link:hover {
        color: var(--color-blue);
        text-decoration: none; } }
  .article-card .article-card__text {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gray-light); }
    @media (max-width: 991.98px) {
      .article-card .article-card__text {
        font-size: 13px; } }
    .article-card .article-card__text:not(:last-child) {
      margin-bottom: 20px; }
  .article-card .article-card__btn {
    width: 100%;
    opacity: 0.5;
    pointer-events: none; }
    .article-card .article-card__btn.activate {
      opacity: 1;
      pointer-events: auto; }
    .article-card .article-card__btn:focus {
      outline: none;
      border: none;
      -webkit-box-shadow: none;
              box-shadow: none; }

/* --- СТИЛІ ПОПАПУ ВІДЕО --- */
.video-modal-popup {
  padding: 0 !important;
  width: 100%;
  max-width: 634px;
  background: var(--white-color, #ffffff);
  border-radius: 0;
  overflow: hidden; }
  .video-modal-popup .video-modal-popup__media {
    position: relative;
    width: 100%;
    aspect-ratio: 634 / 357;
    background: #000; }
    .video-modal-popup .video-modal-popup__media iframe, .video-modal-popup .video-modal-popup__media video, .video-modal-popup .video-modal-popup__media img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .video-modal-popup .video-modal-popup__media .icon-play {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background: #FFFFFF1A;
      width: 40px;
      height: 40px;
      border: 1px solid #2626261A;
      -webkit-backdrop-filter: blur(30px);
              backdrop-filter: blur(30px); }
      @media (max-width: 991.98px) {
        .video-modal-popup .video-modal-popup__media .icon-play {
          width: 36px;
          height: 36px; } }
      .video-modal-popup .video-modal-popup__media .icon-play::before {
        content: '';
        width: 8px;
        height: 11px;
        background: url('data:image/svg+xml,<svg width="8" height="11" viewBox="0 0 8 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.584 5.32118L0.518234 10.0316C0.36506 10.1338 0.1581 10.0924 0.05598 9.93925C0.01948 9.88445 0 9.82011 0 9.75431V0.333333C0 0.149233 0.14924 0 0.333333 0C0.39914 0 0.46348 0.01948 0.518234 0.05598L7.584 4.76645C7.73713 4.86858 7.77853 5.07558 7.6764 5.22871C7.652 5.26531 7.6206 5.29678 7.584 5.32118Z" fill="white"/></svg>') center no-repeat; }
  .video-modal-popup .video-modal-popup__favorite {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    border: none; }
  .video-modal-popup .video-modal-popup__body {
    padding: 16px;
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .video-modal-popup .video-modal-popup__body {
        padding: 12px; } }
  .video-modal-popup .video-modal-popup__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    gap: 32px;
    color: var(--gray-color, #777); }
    @media (max-width: 991.98px) {
      .video-modal-popup .video-modal-popup__top-row {
        margin-bottom: 16px;
        font-size: 13px;
        gap: 16px; } }
  .video-modal-popup .video-modal-popup__date {
    font-weight: 500;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase;
    margin-right: auto;
    color: var(--gray-light); }
    @media (max-width: 375px) {
      .video-modal-popup .video-modal-popup__date {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .video-modal-popup .video-modal-popup__date {
        font-size: 14px; } }
  .video-modal-popup .video-modal-popup__title {
    font-weight: 600;
    font-size: calc(18px + (20 - 18) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase; }
    @media (max-width: 375px) {
      .video-modal-popup .video-modal-popup__title {
        font-size: 18px; } }
    @media (min-width: 1412px) {
      .video-modal-popup .video-modal-popup__title {
        font-size: 20px; } }
    .video-modal-popup .video-modal-popup__title:not(:last-child) {
      margin-bottom: 4px; }
  .video-modal-popup .video-modal-popup__subtitle {
    color: var(--gray-light);
    font-weight: 500;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase; }
    @media (max-width: 375px) {
      .video-modal-popup .video-modal-popup__subtitle {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .video-modal-popup .video-modal-popup__subtitle {
        font-size: 14px; } }
    .video-modal-popup .video-modal-popup__subtitle:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .video-modal-popup .video-modal-popup__subtitle:not(:last-child) {
          margin-bottom: 16px; } }
  .video-modal-popup .video-modal-popup__description {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--gray-dark); }
    @media (max-width: 375px) {
      .video-modal-popup .video-modal-popup__description {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .video-modal-popup .video-modal-popup__description {
        font-size: 16px; } }
    .video-modal-popup .video-modal-popup__description:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .video-modal-popup .video-modal-popup__description:not(:last-child) {
          margin-bottom: 16px; } }
  .video-modal-popup .btn-default {
    width: 100%; }
  @media (min-width: 992px) {
    .video-modal-popup .js-share-btn .icon {
      display: none; } }
  @media (max-width: 991.98px) {
    .video-modal-popup .js-share-btn .icon {
      width: 16px;
      height: 16px; } }
  @media (max-width: 991.98px) {
    .video-modal-popup .js-share-btn .text {
      display: none; } }

.fancybox-container:has(.video-modal-popup) .fancybox-close-small {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #FFFFFF1A;
  border: 4px solid #FFFFFF1A;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  color: var(--white-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  @media (max-width: 991.98px) {
    .fancybox-container:has(.video-modal-popup) .fancybox-close-small {
      top: 12px;
      right: 12px;
      width: 44px;
      height: 44px; } }
  @media (any-hover: hover) {
    .fancybox-container:has(.video-modal-popup) .fancybox-close-small:hover {
      background: var(--color-blue);
      border-color: var(--color-blue-4);
      color: var(--white-color); } }

body.fancybox-active {
  overflow: hidden; }

.fancybox-inner {
  z-index: 0; }

.fancybox-bg,
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.6) !important;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  width: 100vw;
  height: 100vh; }

.fancybox-is-open .fancybox-bg {
  opacity: 1; }

.stats-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (max-width: 991.98px) {
    .stats-group {
      gap: 8px; } }
  .stats-group .stat-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase; }
    .stats-group .stat-item.votes-count .icon {
      display: none; }
    .stats-group .stat-item.votes-count::before {
      content: '';
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 8.99997H5V21H2C1.44772 21 1 20.5523 1 20V9.99997C1 9.44769 1.44772 8.99997 2 8.99997ZM7.29289 7.70708L13.6934 1.30661C13.8693 1.13066 14.1479 1.11087 14.3469 1.26016L15.1995 1.8996C15.6842 2.26312 15.9026 2.88253 15.7531 3.46966L14.5998 7.99997H21C22.1046 7.99997 23 8.8954 23 9.99997V12.1043C23 12.3656 22.9488 12.6243 22.8494 12.8658L19.755 20.3807C19.6007 20.7554 19.2355 21 18.8303 21H8C7.44772 21 7 20.5523 7 20V8.41419C7 8.14897 7.10536 7.89462 7.29289 7.70708Z" fill="black"/></svg>') center no-repeat;
      background-size: contain; }
    .stats-group .stat-item:not(:last-child) {
      padding-right: 12px;
      border-right: 2px solid var(--gray-light2); }
      @media (max-width: 991.98px) {
        .stats-group .stat-item:not(:last-child) {
          padding-right: 8px; } }
    .stats-group .stat-item .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.page-contacts .page-contacts-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 32px; }
  .page-contacts .page-contacts-row:not(:last-child) {
    margin-bottom: 84px; }
  @media (max-width: 991.98px) {
    .page-contacts .page-contacts-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 40px; } }

.page-contacts .page-contacts-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 991.98px) {
    .page-contacts .page-contacts-col {
      width: 100%; } }

.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .contacts-block:not(:last-child) {
    margin-bottom: 24px; }
  .contacts-block .contacts-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid black; }
    @media (max-width: 991.98px) {
      .contacts-block .contacts-info {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .contacts-block .contacts-info:not(:last-child) {
      margin-bottom: 16px; }
    .contacts-block .contacts-info.phones .info-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
  .contacts-block .info-icon {
    margin-top: 4px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: black;
    color: var(--white); }
    .contacts-block .info-icon .ic {
      width: 20px;
      height: 20px; }
  .contacts-block .info-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .contacts-block .info-title {
    color: grey;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    text-transform: uppercase; }
    .contacts-block .info-title:not(:last-child) {
      margin-bottom: 2px; }
  .contacts-block .info-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px 12px;
    color: var(--theme-color-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2; }
    .contacts-block .info-content span {
      max-width: 292px; }
    .contacts-block .info-content a {
      color: var(--theme-color-main);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (max-width: 991.98px) {
        .contacts-block .info-content a {
          font-size: 18px; } }
      .contacts-block .info-content a .sup,
      .contacts-block .info-content a .quote,
      .contacts-block .info-content a .nums {
        font-weight: 400; }
      @media (any-hover: hover) {
        .contacts-block .info-content a:hover, .contacts-block .info-content a:focus {
          text-decoration: none;
          color: var(--theme-color-second); } }

.messengers .messengers-title:not(:last-child) {
  margin-bottom: 16px; }

.messengers .messengers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px; }

.messengers .messengers-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }
  .messengers .messengers-item .messengers-item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.checkout-grid-one-step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 6fr;
  grid-template-columns: 4fr 6fr;
  gap: 30px;
  padding-bottom: 30px; }
  .checkout-grid-one-step .right-side {
    margin-top: 58px; }

.page-checkout .tab-pane {
  padding: 20px 0; }

.page-checkout .form-section {
  margin-bottom: 30px; }
  .page-checkout .form-section .form-section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px; }
    .page-checkout .form-section .form-section-title .number {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--theme-color-second);
      color: var(--white-color);
      font-size: 16px;
      font-weight: bold; }

.order-products-table .products-table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px; }

.order-products-table .products-table-title {
  font-weight: bold;
  font-size: 20px; }

.delivery-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 20px 0; }
  .delivery-type-list .delivery-type-content {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid grey; }
    .delivery-type-list .delivery-type-content .form-group:last-child {
      margin-bottom: 0; }
  .delivery-type-list .custom-radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
    .delivery-type-list .custom-radio .checkmark {
      margin-top: 10px; }
    .delivery-type-list .custom-radio .radio-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }

.delivery-field-examples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 5px; }
  .delivery-field-examples .examples-label {
    text-transform: lowercase;
    font-size: 0.875em;
    -ms-flex-item-align: end;
        align-self: flex-end; }
  .delivery-field-examples .examples-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
    .delivery-field-examples .examples-list a {
      text-decoration: underline; }
      @media (pointer: fine) {
        .delivery-field-examples .examples-list a:hover {
          text-decoration: none; } }
      .delivery-field-examples .examples-list a:focus {
        text-decoration: none; }

.order-card {
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px #cfcfcf;
          box-shadow: 2px 2px 10px #cfcfcf;
  background: #ffffff; }
  .order-card .custom-checkbox-agreement {
    font-size: 14px;
    line-height: 1.3; }

[js-order-tooltip] {
  position: relative; }

.payment-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 20px 0; }
  .payment-type-list .custom-radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.payment-picker .payment-details {
  border: 1px solid darkorange;
  border-radius: 10px;
  padding: 10px;
  background: #ffc1070f; }
  .payment-picker .payment-details > :last-child {
    margin-bottom: 0; }

.custom-radio {
  cursor: pointer;
  margin: 0; }
  .custom-radio input[type="radio"] {
    display: none; }
  .custom-radio .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid grey;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    border-radius: 50%; }
    .custom-radio .checkmark:after {
      content: "";
      position: absolute;
      inset: 3px;
      background: white;
      border-radius: 50%;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
  .custom-radio input[type="radio"]:checked ~ .checkmark {
    border-color: green;
    border-width: 2px; }
    .custom-radio input[type="radio"]:checked ~ .checkmark:after {
      background: green; }

.order-totals-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .order-totals-block .total-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
    padding: 10px 0; }
    .order-totals-block .total-item:not(:last-child) {
      border-bottom: 1px solid #cfcfcf; }
    .order-totals-block .total-item .total-item-title {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 40%;
              flex: 0 0 40%; }
    .order-totals-block .total-item.total-item-in-total {
      font-size: 1.4em; }
    .order-totals-block .total-item .price-text {
      font-size: 1rem; }

.checkout-grid-by-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6fr 3fr;
  grid-template-columns: 6fr 3fr;
  gap: 30px;
  padding-bottom: 30px; }
  .checkout-grid-by-steps .left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px; }

.step-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px; }
  .step-card-head .step-card-title {
    margin-right: auto;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px; }

.step-card .step-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px; }

.step-card .form-fio-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; }

.step-card .form-contacts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; }
  .step-card .form-contacts-grid .form-group-email {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4; }

.step-completed-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px; }
  .step-completed-info .info-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-top: 10px; }
    .step-completed-info .info-details .text {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%; }

.cart-products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px; }
  .cart-products-list .cart-product,
  .cart-products-list .cart-product-set {
    position: relative; }
    .cart-products-list .cart-product .cart-product-qty,
    .cart-products-list .cart-product-set .cart-product-qty {
      position: absolute;
      z-index: 2;
      top: -4px;
      right: -4px;
      height: 21px;
      min-width: 21px;
      padding: 2px 3px;
      border-radius: 999px;
      border: 2px solid;
      font-size: 13px;
      line-height: 1;
      text-align: center;
      border-color: var(--theme-color-main);
      background: var(--white-color);
      color: var(--theme-color-main); }
      .cart-products-list .cart-product .cart-product-qty:empty,
      .cart-products-list .cart-product-set .cart-product-qty:empty {
        display: none; }
  .cart-products-list .cart-product-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cart-products-list .cart-product-set .plus-icon {
      z-index: 2;
      position: relative;
      margin: 0 -10px; }
      .cart-products-list .cart-product-set .plus-icon svg {
        width: 30px;
        height: 30px;
        color: var(--theme-color-second); }
  .cart-products-list .cart-product-img {
    border: 1px solid;
    border-radius: 12px;
    display: block;
    width: 80px;
    height: 80px;
    padding: 5px; }
    .cart-products-list .cart-product-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -o-object-position: center;
         object-position: center;
      border-radius: 10px; }

.btn-next-step {
  margin-top: 20px; }

.order-comment {
  margin-bottom: 10px; }
  .order-comment .btn-show-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .order-comment .btn-show-comment svg.ic {
      font-size: 18px;
      margin-left: 2px; }
  .order-comment .order-comment-field {
    display: none;
    gap: 30px; }
    .order-comment .order-comment-field .field-wrap {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%; }
  .order-comment.open {
    margin-bottom: 20px; }
    .order-comment.open .btn-show-comment {
      display: none; }
    .order-comment.open .order-comment-field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }

.checkout-success-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-min-content 1fr;
  -ms-grid-rows: min-content 1fr;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  -ms-grid-columns: 4fr 6fr;
  grid-template-columns: 4fr 6fr;
  gap: 30px; }
  .checkout-success-grid .left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px; }
  .checkout-success-grid .left-side {
    -ms-grid-column: 1;
    grid-column: 1; }
  .checkout-success-grid .right-side {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2; }

.checkout-success-grid .btn-action-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .checkout-success-grid .btn-action-wrap .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

.ajax-payment-details {
  position: relative; }
  .ajax-payment-details .payment-buttons {
    margin-top: 30px; }

.order-info-card .info-flex-row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; }
  .order-info-card .info-flex-row picture, .order-info-card .info-flex-row img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }

.order-info-card .order-number svg.ic {
  color: var(--theme-color-main);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }

@media (pointer: fine) {
  .order-info-card .order-number:hover svg.ic {
    color: var(--theme-color-second); } }

.order-info-title {
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 15px; }

table.order-info-table {
  width: 100%; }
  table.order-info-table th {
    width: 180px; }
  table.order-info-table th, table.order-info-table td {
    padding: 5px 0; }
  table.order-info-table td {
    padding-left: 5px; }

body.cart-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.cart-opened .cart-modal-inner {
    pointer-events: initial; }
    body.cart-opened .cart-modal-inner .overlay {
      opacity: 1;
      visibility: visible; }
  body.cart-opened #cartModal {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    pointer-events: initial;
    visibility: visible;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }

.cart-modal-inner {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none; }
  .cart-modal-inner .overlay {
    position: fixed;
    z-index: 1;
    inset: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7); }

#cartModal {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  visibility: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: white;
  -webkit-transition: 0.5s cubic-bezier(0.21, -0.38, 0.65, 0.09);
  transition: 0.5s cubic-bezier(0.21, -0.38, 0.65, 0.09);
  overflow: auto; }

/*
.cart-modal-inner {
    display: none;

    .overlay {
        display: none;
    }
}
.fancybox-container.form-popup .fancybox-content#cartModal {
    max-width: 900px; // <<--- cart width
}
*/
#cartModal {
  --px: 20px;
  overflow: hidden; }
  #cartModal .cart-top {
    padding: 24px var(--px) 0;
    border-bottom: 1px solid #f1f1f1; }
  #cartModal .cart-title {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase; }
  #cartModal .cart-items-heading {
    border: none;
    margin-top: 15px; }
  #cartModal .cart-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-height: 100%; }
  #cartModal .cart-items {
    padding: 0 calc(var(--px) - 5px) 30px var(--px);
    margin-right: 5px;
    overflow-y: auto; }
    @media (min-width: 992px) {
      #cartModal .cart-items, #cartModal .cart-items * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      #cartModal .cart-items::-webkit-scrollbar,
      #cartModal .cart-items *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      #cartModal .cart-items::-webkit-scrollbar-button,
      #cartModal .cart-items *::-webkit-scrollbar-button {
        display: none; }
      #cartModal .cart-items::-webkit-scrollbar-track,
      #cartModal .cart-items *::-webkit-scrollbar-track {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
      #cartModal .cart-items::-webkit-scrollbar-track-piece,
      #cartModal .cart-items *::-webkit-scrollbar-track-piece {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
      #cartModal .cart-items::-webkit-scrollbar-thumb,
      #cartModal .cart-items *::-webkit-scrollbar-thumb {
        background: #939BA1;
        border-radius: 99px; }
      #cartModal .cart-items::-webkit-scrollbar-corner,
      #cartModal .cart-items *::-webkit-scrollbar-corner {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }
  #cartModal .cart-bottom {
    margin-top: auto;
    position: relative; }
    #cartModal .cart-bottom .wrap {
      position: relative;
      z-index: 20; }
  #cartModal .message-limit {
    font-weight: bold;
    color: var(--white-color);
    background: orange;
    margin-bottom: 20px; }
  #cartModal .bottom-row {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -ms-grid-columns: 1fr  1fr 1fr;
    grid-template-columns: 1fr  1fr 1fr;
    gap: 24px;
    padding: 20px var(--px);
    background: var(--white);
    border-top: 1px solid #f1f1f1; }
    @media (max-width: 991.98px) {
      #cartModal .bottom-row {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        padding: 15px var(--px);
        gap: 15px; } }
  #cartModal .total-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px; }
    #cartModal .total-block .total-title {
      font-size: 20px;
      line-height: 1;
      -ms-flex-item-align: end;
          align-self: flex-end; }
    #cartModal .total-block .price-wrap {
      line-height: 1; }
  #cartModal .btn-continue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    text-transform: none;
    min-height: unset;
    background-color: transparent;
    outline: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: auto; }
    #cartModal .btn-continue svg.ic {
      color: var(--theme-color-second);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      font-size: 10px; }
    @media (any-hover: hover) {
      #cartModal .btn-continue:hover {
        color: var(--theme-color-second); }
        #cartModal .btn-continue:hover svg.ic {
          -webkit-animation: moveArrow 0.8s forwards;
                  animation: moveArrow 0.8s forwards; } }
    #cartModal .btn-continue:focus {
      color: var(--theme-color-second); }
      #cartModal .btn-continue:focus svg.ic {
        -webkit-animation: moveArrow 0.8s forwards;
                animation: moveArrow 0.8s forwards; }
    @media (max-width: 991.98px) {
      #cartModal .btn-continue {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -ms-flex-item-align: start;
            align-self: flex-start; } }
  @media (max-width: 991.98px) {
    #cartModal {
      --px: 16px; }
      #cartModal .cart-top {
        padding: 28px var(--px); }
      #cartModal .cart-title {
        font-size: 18px; } }

.modal-close {
  position: absolute;
  z-index: 99999;
  top: 8px !important;
  right: 8px !important;
  width: 32px;
  height: 32px;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0;
  border: 4px solid #2626261A;
  background: #2626261A;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .modal-close::before, .modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 0.5em;
    background-color: var(--gray-dark);
    display: none; }
  .modal-close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg); }
  .modal-close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg); }
  .modal-close .ic,
  .modal-close .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: var(--gray-dark); }
  @media (any-hover: hover) {
    .modal-close:hover, .modal-close:focus {
      background: var(--theme-color-main);
      border-color: var(--theme-color-main);
      color: var(--white); }
      .modal-close:hover::before, .modal-close:hover::after, .modal-close:focus::before, .modal-close:focus::after {
        background-color: var(--white); }
      .modal-close:hover .ic,
      .modal-close:hover .icon, .modal-close:focus .ic,
      .modal-close:focus .icon {
        color: var(--white); } }
  @media (max-width: 991.98px) {
    .modal-close {
      top: 24px; } }

.cart-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden; }

.cart-items-heading,
.cart-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 1fr 172px 120px 32px;
  grid-template-columns: 90px 1fr 172px 120px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 16px; }
  @media (max-width: 991.98px) {
    .cart-items-heading,
    .cart-item {
      -ms-grid-columns: 80px 1fr 172px 1fr;
      grid-template-columns: 80px 1fr 172px 1fr; } }
  @media (max-width: 575.98px) {
    .cart-items-heading,
    .cart-item {
      -ms-grid-columns: 80px 1fr 1fr;
      grid-template-columns: 80px 1fr 1fr; } }

.cart-item-set {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 172px 120px 32px;
  grid-template-columns: 1fr 172px 120px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
  .cart-item-set .cart-item-set-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6; }
  .cart-item-set .set-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 90px 1fr;
    grid-template-columns: 90px 1fr;
    gap: 15px; }

.products-table.products-table-no-edit .cart-items-heading,
.products-table.products-table-no-edit .cart-item {
  -ms-grid-columns: 90px 1fr 120px 120px 120px;
  grid-template-columns: 90px 1fr 120px 120px 120px; }

.products-table.products-table-no-edit .cart-item-set {
  -ms-grid-columns: 1fr 120px 120px 120px;
  grid-template-columns: 1fr 120px 120px 120px; }
  .products-table.products-table-no-edit .cart-item-set .cart-item-set-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5; }

.cart-items-heading {
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f1f1; }
  .cart-items-heading .cart-heading-qty {
    text-align: center; }
  @media (max-width: 991.98px) {
    .cart-items-heading {
      display: none; } }

.cart-items-heading .cart-heading-qty,
.cart-item .cart-item-qty {
  padding-right: 20px; }

.cart-item {
  position: relative;
  padding: 5px 0; }
  .cart-item:not(:last-child) {
    border-bottom: 1px solid #f1f1f1; }
  @media (max-width: 991.98px) {
    .cart-item {
      padding-bottom: 20px;
      min-height: auto; }
      .cart-item:not(:last-child) {
        margin-bottom: 20px; } }
  .cart-item .cart-item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .cart-item .cart-item-img picture,
    .cart-item .cart-item-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .cart-item .cart-item-info {
    padding-right: 20px; }
    @media (max-width: 991.98px) {
      .cart-item .cart-item-info {
        -ms-grid-column-span: 3;
        grid-column: span 3;
        padding-right: 32px; } }
    @media (max-width: 575.98px) {
      .cart-item .cart-item-info {
        -ms-grid-column-span: 2;
        grid-column: span 2; } }
  .cart-item .product-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    color: var(--color-text); }
    .cart-item .product-title .text {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      word-break: break-word; }
    @media (any-hover: hover) {
      .cart-item .product-title:hover, .cart-item .product-title:focus {
        color: var(--theme-color-second);
        text-decoration: none; } }
  .cart-item .product-sku {
    color: #777777;
    line-height: 1;
    font-size: 13px;
    margin-top: 3px; }
  .cart-item .variant-attributes {
    font-size: 13px;
    margin-top: 8px; }
  @media (max-width: 991.98px) {
    .cart-item .cart-item-qty {
      -ms-grid-column-span: 2;
      grid-column: span 2; } }
  .cart-item .cart-item-qty .qty-text {
    height: 48px;
    min-width: 48px;
    padding: 2px 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .cart-item .cart-item-qty .qty-text {
        min-width: 80px; } }
  .cart-item .cart-item-qty:has(.qty-text) {
    text-align: center; }
  .cart-item .price-wrap {
    font-size: 16px;
    font-weight: 700; }
    .cart-item .price-wrap .old-price {
      font-size: 12px; }
  @media (max-width: 991.98px) {
    .cart-item .cart-item-price-total {
      -ms-grid-column-span: 2;
      grid-column: span 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }
  @media (max-width: 575.98px) {
    .cart-item .cart-item-price-total {
      -ms-grid-column-span: 1;
      grid-column: span 1; } }
  @media (max-width: 991.98px) {
    .cart-item .qty-picker {
      gap: 12px; } }
  .cart-item .qty-picker input {
    width: 48px; }

.cart-item-set {
  margin: 20px 0; }
  .cart-item-set + .cart-item-set {
    margin-top: 0; }
  .cart-item-set:not(:last-child) {
    border-bottom: 1px solid #cfcfcf; }
  .cart-item-set .cart-item-set-title {
    text-transform: uppercase;
    font-weight: bold;
    padding: 2px 10px;
    margin-bottom: 10px;
    text-align: center;
    background: var(--theme-color-second);
    color: var(--white-color);
    border-radius: 4px; }
  .cart-item-set .plus-icon {
    z-index: 2;
    position: relative;
    margin: -8px 0 -8px 28px; }
    .cart-item-set .plus-icon svg {
      width: 30px;
      height: 30px;
      color: var(--theme-color-second); }

.cart-item.invalid,
.cart-item-set.invalid {
  background: rgba(255, 0, 0, 0.11); }

.cart-item-remove,
.cart-item-set-remove {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--grey-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer; }
  @media (max-width: 991.98px) {
    .cart-item-remove,
    .cart-item-set-remove {
      position: absolute;
      right: 0;
      top: 0; } }
  .cart-item-remove .remove,
  .cart-item-set-remove .remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .cart-item-remove svg,
  .cart-item-set-remove svg {
    font-size: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
  .cart-item-remove .remove:focus svg.ic,
  .cart-item-set-remove .remove:focus svg.ic {
    color: red; }
  @media (pointer: fine) {
    .cart-item-remove .remove:hover svg.ic,
    .cart-item-set-remove .remove:hover svg.ic {
      color: red; } }

#cart-fast-order {
  position: absolute;
  z-index: 10;
  bottom: 100%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  #cart-fast-order.fast-order-open {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    #cart-fast-order.fast-order-open .fast-order-form-title .icon-arrow {
      -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
              transform: rotate(0); }
  #cart-fast-order .fast-order-form-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -32px; }
  #cart-fast-order .fast-order-form-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 32px;
    max-width: 264px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 12px 12px 0 0;
    background: #f7ecfc;
    cursor: pointer; }
    #cart-fast-order .fast-order-form-title .icon-arrow {
      width: 16px;
      height: 16px;
      background: var(--theme-color-second);
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg);
      -webkit-transition: -webkit-transform 0.3s ease-out;
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
      #cart-fast-order .fast-order-form-title .icon-arrow .icon {
        width: 8px;
        height: 8px; }
  #cart-fast-order .fast-order-form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    background: #f7ecfc;
    padding: 20px var(--px); }
    @media (max-width: 991.98px) {
      #cart-fast-order .fast-order-form-wrap {
        padding: 16px;
        gap: 8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  #cart-fast-order .fast-order-form-notice {
    max-width: 178px;
    color: var(--theme-color-main);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px; }
    @media (max-width: 991.98px) {
      #cart-fast-order .fast-order-form-notice {
        max-width: 100%; } }
  #cart-fast-order .form-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    z-index: 1; }
    @media (max-width: 991.98px) {
      #cart-fast-order .form-wrap {
        width: 100%; } }
    #cart-fast-order .form-wrap .form-control {
      height: 40px;
      border-radius: 8px;
      background: var(--white);
      color: var(--theme-color-main);
      border-color: var(--white);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #cart-fast-order .form-wrap .form-control.form-control-error {
        border-color: red; }
      #cart-fast-order .form-wrap .form-control::-webkit-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::-moz-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control:-ms-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::-ms-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::placeholder {
        color: grey; }
      @media (any-hover: hover) {
        #cart-fast-order .form-wrap .form-control:hover {
          border-color: var(--theme-color-second); } }
      #cart-fast-order .form-wrap .form-control:focus {
        border-color: var(--theme-color-second); }
    #cart-fast-order .form-wrap .form-error {
      display: block;
      margin: 0;
      padding: 2px 0;
      color: red;
      font-size: 12px; }
      @media (min-width: 992px) {
        #cart-fast-order .form-wrap .form-error {
          position: absolute;
          z-index: 1;
          top: 100%;
          left: 0;
          right: 0; } }
  #cart-fast-order .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 40px; }
    @media (max-width: 575.98px) {
      #cart-fast-order .btn {
        margin-top: 4px;
        width: 100%; } }

.order-promocode .order-promocode-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px; }

.order-promocode .fields-group {
  position: relative; }
  .order-promocode .fields-group input {
    padding-right: 146px; }
  .order-promocode .fields-group .btn {
    position: absolute;
    top: 50%;
    right: 3px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    min-height: 32px;
    border-radius: 0.25em;
    padding: 2px 10px;
    border-width: 1px; }

.order-promocode .promocode-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px; }
  .order-promocode .promocode-wrap .sale-text {
    color: var(--price-new); }
  .order-promocode .promocode-wrap .promocode-code {
    display: inline-block;
    color: var(--white-color);
    background: var(--theme-color-second);
    padding: 2px 10px;
    border-radius: 0.25em;
    text-align: center;
    margin-bottom: 4px; }
  .order-promocode .promocode-wrap .discount-value {
    font-size: 1.2em; }

.order-promocode .order-promocode-error {
  color: red; }

.order-promocode .order-promocode-message {
  color: green; }

.account-favorites,
.account-profile {
  padding-top: calc(72px + (104 - 72) * ((100vw - 375px) / (1412 - 375)));
  padding-bottom: calc(48px + (110 - 48) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .account-favorites,
    .account-profile {
      padding-top: 72px; } }
  @media (min-width: 1412px) {
    .account-favorites,
    .account-profile {
      padding-top: 104px; } }
  @media (max-width: 375px) {
    .account-favorites,
    .account-profile {
      padding-bottom: 48px; } }
  @media (min-width: 1412px) {
    .account-favorites,
    .account-profile {
      padding-bottom: 110px; } }

.account-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .account-grid .account-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 15px;
    position: relative;
    background-color: var(--white-color); }

.account-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375)));
  background: var(--white-color); }
  @media (max-width: 375px) {
    .account-content {
      padding: 16px; } }
  @media (min-width: 1412px) {
    .account-content {
      padding: 24px; } }
  .account-content:has(.favorites-grid) {
    background: transparent; }
  .account-content .profile-form {
    width: 100%;
    padding: 0;
    max-width: 100%; }
    .account-content .profile-form .form-note {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 8px;
      font-weight: 600;
      font-size: 16px;
      line-height: 120%;
      text-align: left; }

.account-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto; }
  .account-nav-wrap:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .account-nav-wrap:not(:last-child) {
        margin-bottom: 12px; } }
  .account-nav-wrap .account-nav {
    width: auto;
    -ms-flex-item-align: start;
        align-self: flex-start;
    background: var(--gray-light2);
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px; }
    .account-nav-wrap .account-nav .link-item {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 6px 12px;
      gap: 6px;
      min-height: 32px;
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      text-transform: uppercase;
      text-decoration: none;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      color: var(--gray-dark);
      background-color: transparent; }
      .account-nav-wrap .account-nav .link-item .icon {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 20px;
        height: 20px; }
      @media (pointer: fine) {
        .account-nav-wrap .account-nav .link-item:hover {
          background: var(--white-color);
          color: var(--gray-dark); } }
      .account-nav-wrap .account-nav .link-item.active {
        color: var(--white-color);
        background-color: var(--theme-color-main); }

.user-info:not(:last-child) {
  margin-bottom: calc(20px + (40 - 20) * ((100vw - 375px) / (1412 - 375))); }
  @media (max-width: 375px) {
    .user-info:not(:last-child) {
      margin-bottom: 20px; } }
  @media (min-width: 1412px) {
    .user-info:not(:last-child) {
      margin-bottom: 40px; } }

.user-info .user-info__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px; }
  .user-info .user-info__top:not(:last-child) {
    margin-bottom: calc(20px + (32 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .user-info .user-info__top:not(:last-child) {
        margin-bottom: 20px; } }
    @media (min-width: 1412px) {
      .user-info .user-info__top:not(:last-child) {
        margin-bottom: 32px; } }

.user-info .user-info__title:not(:last-child) {
  margin-bottom: 0; }

.user-info .user-info__logo {
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 991.98px) {
    .user-info .user-info__logo {
      display: none; } }
  .user-info .user-info__logo img {
    width: auto;
    height: 100%; }

.user-info .user-info__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px;
  border: 1px solid #2626261A;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#E3E3E3));
  background: linear-gradient(90deg, #FFFFFF 0%, #E3E3E3 100%); }
  @media (max-width: 991.98px) {
    .user-info .user-info__grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      padding: 20px 16px; } }
  @media (max-width: 767.98px) {
    .user-info .user-info__grid {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr); } }
  .user-info .user-info__grid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 4px);
    height: 4px;
    background: var(--color-blue); }
    @media (max-width: 991.98px) {
      .user-info .user-info__grid::before {
        width: 100%; } }
  @media (min-width: 992px) {
    .user-info .user-info__grid::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 26px;
      height: 10px;
      background: url('data:image/svg+xml,<svg width="26" height="10" viewBox="0 0 26 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H19L26 10H7L0 0Z" fill="%23144196"/></svg>') center no-repeat; } }

.user-info .user-info__item {
  position: relative;
  padding: 24px 0;
  width: 100%; }
  @media (min-width: 992px) {
    .user-info .user-info__item:not(:first-child)::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 26px;
      height: 10px;
      background: url('data:image/svg+xml,<svg width="26" height="10" viewBox="0 0 26 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H19L26 10H7L0 0Z" fill="%23144196"/></svg>') center no-repeat; } }
  @media (max-width: 991.98px) {
    .user-info .user-info__item {
      padding: 0 0 0 33px; }
      .user-info .user-info__item::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 21px;
        height: 8px;
        background: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 26 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H19L26 10H7L0 0Z" fill="%23144196"/></svg>') center no-repeat; } }

.user-info .user-info__heading {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-color); }
  @media (max-width: 991.98px) {
    .user-info .user-info__heading {
      font-size: 13px; } }
  .user-info .user-info__heading:not(:last-child) {
    margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .user-info .user-info__heading:not(:last-child) {
        margin-bottom: 8px; } }

.user-info .user-info__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%; }
  @media (max-width: 991.98px) {
    .user-info .user-info__text {
      font-size: 14px; } }
  .user-info .user-info__text a {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    color: var(--color-blue-4);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .user-info .user-info__text a::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--color-blue-4);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: left;
          -ms-transform-origin: left;
              transform-origin: left;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .user-info .user-info__text a:not(:last-child) {
      margin-bottom: 8px; }
    @media (max-width: 991.98px) {
      .user-info .user-info__text a {
        font-size: 14px; } }
    .user-info .user-info__text a .ic {
      width: 18px;
      height: 18px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 991.98px) {
        .user-info .user-info__text a .ic {
          width: 16px;
          height: 16px; } }
    .user-info .user-info__text a:focus {
      text-decoration: none; }
    @media (any-hover: hover) {
      .user-info .user-info__text a:hover {
        text-decoration: none; }
        .user-info .user-info__text a:hover::before {
          -webkit-transform: scaleX(1);
              -ms-transform: scaleX(1);
                  transform: scaleX(1); } }

.user-info .user-info__elem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px; }
  .user-info .user-info__elem .ic {
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.user-info .user-info__role {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, right top, from(#555555), to(#000000));
  background: linear-gradient(90deg, #555555 0%, #000000 100%); }

.user-info .user-info__heading--with-tooltip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative; }

/* ============================
   TOOLTIP STYLES
   ============================ */
.tooltip-wrapper {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.tooltip-trigger {
  width: 16px;
  height: 16px;
  color: var(--grey-color, #999999);
  cursor: pointer;
  outline: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .tooltip-trigger:focus-visible, .tooltip-trigger:hover {
    color: var(--theme-color-main); }

.tooltip-content {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
      -ms-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  z-index: 100;
  /* Дизайн з макету */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 170px;
  background: var(--gray-dark, #262626);
  color: var(--white-color, #ffffff);
  padding: 8px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: none;
  text-align: center;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease; }
  .tooltip-content::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border-width: 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent var(--theme-color-second, #262626) transparent; }

/* --- Логіка відкриття (ДЕСКТОП) --- */
@media (hover: hover) and (pointer: fine) {
  .tooltip-wrapper:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(10px);
        -ms-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
    pointer-events: auto; } }

/* --- Логіка відкриття (МОБАЙЛ / Клік) --- */
.tooltip-wrapper.is-open .tooltip-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(10px);
      -ms-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  pointer-events: auto; }

.account-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 330px;
  padding: 32px 24px;
  text-align: center; }
  @media (max-width: 991.98px) {
    .account-empty {
      padding: 20px 16px; } }
  .account-empty .account-empty__icon {
    background: #2626261A;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: calc(20px + (32 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .account-empty .account-empty__icon {
        margin-bottom: 20px; } }
    @media (min-width: 1412px) {
      .account-empty .account-empty__icon {
        margin-bottom: 32px; } }
    @media (max-width: 991.98px) {
      .account-empty .account-empty__icon {
        width: 32px;
        height: 32px; } }
    .account-empty .account-empty__icon .icon {
      width: 22px;
      height: 22px;
      color: var(--gray-light); }
      @media (max-width: 991.98px) {
        .account-empty .account-empty__icon .icon {
          width: 20px;
          height: 20px; } }
  .account-empty .account-empty__title {
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    font-weight: 700;
    font-size: 40px;
    font-size: calc(28px + (40 - 28) * ((100vw - 375px) / (1412 - 375)));
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: var(--gray-light2); }
    @media (max-width: 375px) {
      .account-empty .account-empty__title {
        font-size: 28px; } }
    @media (min-width: 1412px) {
      .account-empty .account-empty__title {
        font-size: 40px; } }
    .account-empty .account-empty__title:not(:last-child) {
      margin-bottom: calc(12px + (16 - 12) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .account-empty .account-empty__title:not(:last-child) {
          margin-bottom: 12px; } }
      @media (min-width: 1412px) {
        .account-empty .account-empty__title:not(:last-child) {
          margin-bottom: 16px; } }
  .account-empty .account-empty__text {
    font-weight: 600;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    margin-bottom: calc(20px + (32 - 20) * ((100vw - 375px) / (1412 - 375))); }
    @media (max-width: 375px) {
      .account-empty .account-empty__text {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .account-empty .account-empty__text {
        font-size: 16px; } }
    @media (max-width: 375px) {
      .account-empty .account-empty__text {
        margin-bottom: 20px; } }
    @media (min-width: 1412px) {
      .account-empty .account-empty__text {
        margin-bottom: 32px; } }

.account-order .section-title {
  margin-bottom: 20px; }

.account-order .account-content {
  position: relative; }

.account-order .order-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 1200px) {
    .account-order .order-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 992px) {
    .account-order .order-header {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .account-order .order-header .order-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

.account-order .order-return-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #696969;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (pointer: fine) {
    .account-order .order-return-back:hover {
      color: var(--theme-color-second); } }
  .account-order .order-return-back .arrow-wrap {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--theme-color-second);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .account-order .order-return-back .arrow-wrap .ic {
      width: 6px;
      color: var(--white-color); }
  .account-order .order-return-back.top {
    margin-bottom: 12px; }
  .account-order .order-return-back.bottom {
    margin-bottom: 20px; }
    @media (max-width: 576px) {
      .account-order .order-return-back.bottom {
        margin: 48px 0 0; } }

.account-order .personal-cashback {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  color: var(--white-color);
  background-color: #9B8BCF;
  padding: 12px 84px 12px 16px; }
  @media (max-width: 1200px) {
    .account-order .personal-cashback {
      margin-left: auto; } }
  @media (max-width: 768px) {
    .account-order .personal-cashback {
      display: none; } }
  .account-order .personal-cashback .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .account-order .personal-cashback .content .text {
      font-size: 12px;
      font-weight: 400;
      line-height: 16px; }
    .account-order .personal-cashback .content .price {
      font-size: 20px;
      font-weight: 700;
      line-height: 24px; }
    .account-order .personal-cashback .content .link {
      color: var(--white-color);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-decoration-line: underline;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .account-order .personal-cashback .content .link:hover {
          color: #f2c4ff; } }
  .account-order .personal-cashback .avatar {
    position: absolute;
    max-width: 62px;
    right: 8%;
    top: -9%; }

.account-order .open-order .order-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 26px;
  margin-bottom: 32px; }
  @media (max-width: 1200px) {
    .account-order .open-order .order-info {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }
  .account-order .open-order .order-info .order-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
    @media (max-width: 1200px) {
      .account-order .open-order .order-info .order-info-wrap:last-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }

.account-order .open-order .info-block-wrap:has(.comment) {
  height: 100%; }

.account-order .open-order .order-info-title {
  color: var(--theme-color-second);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 8px; }
  @media (max-width: 576px) {
    .account-order .open-order .order-info-title {
      font-size: 14px;
      line-height: 20px; } }

.account-order .open-order .info-line {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #FAFAFA;
  margin-bottom: 4px; }
  @media (max-width: 576px) {
    .account-order .open-order .info-line {
      gap: 12px; } }
  .account-order .open-order .info-line .title {
    display: inline-block;
    color: #696969; }
  .account-order .open-order .info-line .value {
    display: inline-block;
    color: var(--color-text); }
    .account-order .open-order .info-line .value .status_bullet {
      display: block;
      width: 10px;
      min-width: 10px;
      height: 10px;
      background-color: #FF9900;
      border-radius: 50%;
      margin-right: 10px; }
    .account-order .open-order .info-line .value.status_paid {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }

.account-order .open-order .comment {
  border-radius: 8px;
  background: #FAFAFA;
  padding: 10px 16px;
  height: calc(100% - 32px); }

.account-order .open-order .copy-number {
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-color-second);
  border-radius: 0px 8px 8px 0px;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (pointer: fine) {
    .account-order .open-order .copy-number:hover {
      background-color: var(--theme-color-second); } }
  .account-order .open-order .copy-number .ic {
    fill: var(--white-color);
    width: 20px;
    height: 20px; }

.account-order .open-order .buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 34px;
  gap: 17px; }
  @media (max-width: 576px) {
    .account-order .open-order .buttons-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 48px; } }
  @media (max-width: 576px) {
    .account-order .open-order .buttons-wrap .btn-default {
      width: 100%; } }
  .account-order .open-order .buttons-wrap .btn-default .btn-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 18px 8px 12px; }
    @media (max-width: 576px) {
      .account-order .open-order .buttons-wrap .btn-default .btn-text {
        padding: 8px 16px;
        font-size: 14px;
        line-height: 24px;
        gap: 8px; } }
    .account-order .open-order .buttons-wrap .btn-default .btn-text .ic {
      width: 20px;
      height: 18px; }
      @media (max-width: 576px) {
        .account-order .open-order .buttons-wrap .btn-default .btn-text .ic {
          width: 24px;
          height: 24px; } }
  .account-order .open-order .buttons-wrap .btn-cancel {
    color: #696969;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 56px;
    border: 1px solid gray;
    padding: 8px 16px;
    background-color: transparent;
    outline: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-order .open-order .buttons-wrap .btn-cancel:hover {
        background-color: var(--theme-color-second);
        color: var(--white-color);
        border: 1px solid var(--theme-color-second); } }
    @media (max-width: 576px) {
      .account-order .open-order .buttons-wrap .btn-cancel {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        padding: 7px 16px; } }

.account-order .open-order .order-list-wrap .cart-title {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 17px; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-title {
      font-size: 20px;
      line-height: 24px;
      padding-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid gray; } }

.account-order .open-order .order-list-wrap .cart-headers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid gray; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-headers {
      display: none; } }
  .account-order .open-order .order-list-wrap .cart-headers .header-title {
    color: var(--theme-color-second);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase; }
    @media (max-width: 768px) {
      .account-order .open-order .order-list-wrap .cart-headers .header-title {
        font-size: 14px;
        line-height: 18px; } }
    .account-order .open-order .order-list-wrap .cart-headers .header-title.name {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 49%;
              flex: 0 0 49%; }
      @media (max-width: 1200px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.name {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 55%;
                  flex: 0 0 55%; } }
    .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 27%;
              flex: 0 0 27%;
      margin-left: 60px; }
      @media (max-width: 1200px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
          margin-left: 0;
          -webkit-box-flex: 0;
              -ms-flex: 0 0 25%;
                  flex: 0 0 25%; } }
      @media (max-width: 768px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 28%;
                  flex: 0 0 28%; } }

.account-order .open-order .order-list-wrap .cart-item .plus,
.account-order .open-order .order-list-wrap .cart-item .minus,
.account-order .open-order .order-list-wrap .cart-item .remove {
  display: none; }

.account-order .open-order .order-list-wrap .cart-item input {
  height: 40px;
  width: 50px;
  border-radius: 12px;
  background-color: #FAFAFA;
  border: none; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item input {
      margin: 0;
      background-color: transparent; } }

@media (max-width: 992px) {
  .account-order .open-order .order-list-wrap .cart-item .product-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (max-width: 576px) {
  .account-order .open-order .order-list-wrap .cart-item .product-wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.account-order .open-order .order-list-wrap .cart-item .product-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item .product-info {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
          grid-column-start: 1;
      -ms-grid-column-span: 3;
      grid-column-end: 4; }
      .account-order .open-order .order-list-wrap .cart-item .product-info .product-name a {
        font-size: 16px;
        line-height: 18px;
        height: 38px; } }

.account-order .open-order .order-list-wrap .cart-item ._qty {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  margin-left: 60px; }
  @media (max-width: 1200px) {
    .account-order .open-order .order-list-wrap .cart-item ._qty {
      margin-left: 0; } }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item ._qty {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 1;
          grid-column-start: 1;
      -ms-grid-column-span: 1;
      grid-column-end: 2;
      margin-right: 30px; } }

@media (max-width: 576px) {
  .account-order .open-order .order-list-wrap .cart-item ._price-total {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3; } }

.account-order .open-order .order-list-wrap .bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .bottom-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.account-order .open-order .order-list-wrap .total-block {
  border-radius: 16px;
  background-color: #F9F7FF;
  padding: 16px 24px 16px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .total-block {
      padding: 0;
      background-color: transparent;
      width: 100%; } }
  .account-order .open-order .order-list-wrap .total-block .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .total {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 12px;
        background-color: #F9F7FF;
        width: 100%;
        margin-bottom: 8px; } }
  .account-order .open-order .order-list-wrap .total-block .title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-right: 8px; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .title {
        font-size: 20px;
        line-height: 24px;
        margin-right: 4px; } }
  .account-order .open-order .order-list-wrap .total-block .price-old,
  .account-order .open-order .order-list-wrap .total-block .old-price {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through; }
  .account-order .open-order .order-list-wrap .total-block .price,
  .account-order .open-order .order-list-wrap .total-block .price-discount {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .price,
      .account-order .open-order .order-list-wrap .total-block .price-discount {
        font-size: 20px;
        line-height: 24px; } }
  .account-order .open-order .order-list-wrap .total-block .price {
    color: var(--color-text); }
  .account-order .open-order .order-list-wrap .total-block .price-discount {
    color: red; }
  .account-order .open-order .order-list-wrap .total-block .cashback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }
    .account-order .open-order .order-list-wrap .total-block .cashback img {
      display: block;
      margin-right: 4px; }

.account-orders .section-title {
  margin-bottom: 13px; }

.account-orders .order-nav {
  margin: 0 0 21px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  white-space: nowrap;
  overflow-x: scroll;
  list-style: none; }
  .account-orders .order-nav::-webkit-scrollbar {
    display: none; }
  .account-orders .order-nav .order-nav-item.active a {
    color: var(--white-color);
    background-color: BLUE; }
  .account-orders .order-nav a {
    display: block;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    padding: 4px 12px;
    border-radius: 56px;
    background-color: #FAFAFA;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-orders .order-nav a:hover {
        color: var(--white-color);
        background-color: BLUE; } }

.account-orders .order-headers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 1fr;
  grid-template-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 1fr;
  padding: 0 20px 12px; }
  @media (max-width: 1200px) {
    .account-orders .order-headers {
      -ms-grid-columns: 19% 25% 48% 1fr;
      grid-template-columns: 19% 25% 48% 1fr; } }
  .account-orders .order-headers .order-title {
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    padding: 0 15px 0 0;
    margin: 0; }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.number {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.date {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.status {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.price {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.address {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.order-ttn {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }

.account-orders .order-item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 28% 1fr;
  grid-template-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 28% 1fr;
  border-radius: 16px;
  background-color: #FAFAFA;
  padding: 11px 20px;
  margin-bottom: 4px; }
  @media (max-width: 1200px) {
    .account-orders .order-item {
      -ms-grid-columns: 19% 25% 48% 1fr;
      grid-template-columns: 19% 25% 48% 1fr; } }
  .account-orders .order-item .order-item-value {
    padding-right: 15px; }
  .account-orders .order-item .order-number {
    color: #2F80ED;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-orders .order-item .order-number:hover {
        color: BLUE; } }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-number {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
  .account-orders .order-item .order-date {
    color: #696969;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-date {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
  .account-orders .order-item .status_paid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    position: relative; }
    .account-orders .order-item .status_paid .status_bullet {
      display: block;
      width: 8px;
      min-width: 8px;
      height: 8px;
      background-color: #FF9900;
      border-radius: 50%;
      margin-right: 8px; }
    @media (max-width: 1200px) {
      .account-orders .order-item .status_paid {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
  .account-orders .order-item .order-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-price {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    .account-orders .order-item .order-price .price {
      color: var(--color-text);
      font-size: 14px;
      font-weight: 700;
      line-height: 18px; }
    .account-orders .order-item .order-price .cashback {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 18px; }
      .account-orders .order-item .order-price .cashback img {
        width: 16px; }
  .account-orders .order-item .order-delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-delivery {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    .account-orders .order-item .order-delivery .delivery-way {
      display: block;
      color: var(--color-text);
      font-size: 14px;
      font-weight: 400;
      line-height: 18px; }
    .account-orders .order-item .order-delivery .delivery-type {
      display: block;
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 16px; }
  .account-orders .order-item .order-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .account-orders .order-item .order-address .address-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
  .account-orders .order-item .order-address,
  .account-orders .order-item .order-ttn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-address,
      .account-orders .order-item .order-ttn {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    .account-orders .order-item .order-address img,
    .account-orders .order-item .order-ttn img {
      display: block;
      width: 24px; }
    .account-orders .order-item .order-address .address-city,
    .account-orders .order-item .order-ttn .address-city {
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      margin: 0 8px; }
    .account-orders .order-item .order-address .address-warehouse,
    .account-orders .order-item .order-address .ttn-number,
    .account-orders .order-item .order-ttn .address-warehouse,
    .account-orders .order-item .order-ttn .ttn-number {
      display: inline-block;
      color: var(--color-text);
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      margin: 0 8px; }
    .account-orders .order-item .order-address .btn-copy,
    .account-orders .order-item .order-ttn .btn-copy {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: none;
      outline: none;
      padding: 0;
      background-color: transparent; }
      .account-orders .order-item .order-address .btn-copy .ic,
      .account-orders .order-item .order-ttn .btn-copy .ic {
        color: #696969;
        width: 15px;
        height: 17px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
      @media (pointer: fine) {
        .account-orders .order-item .order-address .btn-copy:hover .ic,
        .account-orders .order-item .order-ttn .btn-copy:hover .ic {
          color: var(--theme-color-second); } }
  .account-orders .order-item .arrow-wrap {
    width: 24px;
    height: 24px;
    background-color: #70629B;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    margin-left: auto; }
    @media (pointer: fine) {
      .account-orders .order-item .arrow-wrap:hover {
        background-color: BLUE; } }
    @media (max-width: 1200px) {
      .account-orders .order-item .arrow-wrap {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1 / 3; } }
    .account-orders .order-item .arrow-wrap .ic {
      color: var(--white-color);
      width: 9px;
      height: 12px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }

.profile-video .profile-video__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375)));
  gap: 16px; }
  @media (max-width: 375px) {
    .profile-video .profile-video__top {
      margin-bottom: 16px; } }
  @media (min-width: 1412px) {
    .profile-video .profile-video__top {
      margin-bottom: 24px; } }
  @media (max-width: 991.98px) {
    .profile-video .profile-video__top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px; } }

.profile-video .profile-video__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 570px; }
  @media (max-width: 991.98px) {
    .profile-video .profile-video__content {
      gap: 12px; } }

.profile-video .profile-video__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (max-width: 991.98px) {
    .profile-video .profile-video__title {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px; } }
  .profile-video .profile-video__title .page-title {
    line-height: 1; }
    .profile-video .profile-video__title .page-title:not(:last-child) {
      margin-bottom: 0; }

.profile-video .profile-video__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .profile-video .profile-video__status.published {
    background: var(--green-color);
    color: var(--green-dark); }
  .profile-video .profile-video__status.cancel {
    background: var(--red-color);
    color: var(--white-color); }
  .profile-video .profile-video__status.moderation {
    background: var(--orange-color);
    color: var(--white-color); }

.profile-video .profile-video__note {
  font-weight: 600;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
  line-height: 120%; }
  @media (max-width: 375px) {
    .profile-video .profile-video__note {
      font-size: 14px; } }
  @media (min-width: 1412px) {
    .profile-video .profile-video__note {
      font-size: 16px; } }

.profile-video .profile-video__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 991.98px) {
    .profile-video .profile-video__actions {
      gap: 8px; } }

.profile-video .profile-video__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
  line-height: 120%;
  text-transform: uppercase; }
  @media (max-width: 375px) {
    .profile-video .profile-video__item {
      font-size: 13px; } }
  @media (min-width: 1412px) {
    .profile-video .profile-video__item {
      font-size: 14px; } }
  .profile-video .profile-video__item:not(:last-child) {
    padding-right: 12px;
    border-right: 1px solid var(--gray-light2); }
    @media (max-width: 991.98px) {
      .profile-video .profile-video__item:not(:last-child) {
        padding-right: 8px; } }
  .profile-video .profile-video__item .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 18px;
    height: 18px; }

.profile-video .profile-video__delete {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start; }

.profile-video .profile-video__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; }
  @media (max-width: 991.98px) {
    .profile-video .profile-video__row {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      row-gap: 16px; } }
  .profile-video .profile-video__row:not(:last-child) {
    margin-bottom: 24px; }

.profile-video .profile-video__error-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--red-color);
  text-align: center; }
  .profile-video .profile-video__error-text::before {
    content: '';
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.9603 11.4583C9.47807 11.4583 9.8978 11.878 9.8978 12.3958C9.89772 12.9135 9.47802 13.3333 8.9603 13.3333C8.44269 13.3331 8.02288 12.9134 8.0228 12.3958C8.0228 11.8781 8.44264 11.4584 8.9603 11.4583Z" fill="%23FF1815"/><path d="M9.79364 10.2083H8.12697V5.62493H9.79364V10.2083Z" fill="%23FF1815"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.11297 1.0595C7.92569 -0.353182 9.9957 -0.35315 10.8084 1.0595L17.6411 12.9247L17.6428 12.9264C18.4571 14.3488 17.3833 16.0413 15.7938 16.0416H2.12762C0.537924 16.0413 -0.535418 14.3489 0.279475 12.9264L0.280289 12.9247L7.11297 1.0595ZM9.36395 1.89039C9.19206 1.59194 8.72933 1.59191 8.55747 1.89039L1.72479 13.754C1.58206 14.0031 1.74592 14.3747 2.12762 14.3749H15.7938C16.1744 14.3746 16.338 14.0055 16.1974 13.7564L9.36476 1.8912L9.36395 1.89039Z" fill="%23FF1815"/><path d="M8.9603 11.4583C9.47807 11.4583 9.8978 11.878 9.8978 12.3958C9.89772 12.9135 9.47802 13.3333 8.9603 13.3333C8.44269 13.3331 8.02288 12.9134 8.0228 12.3958C8.0228 11.8781 8.44264 11.4584 8.9603 11.4583Z" fill="%23FF1815"/><path d="M9.79364 10.2083H8.12697V5.62493H9.79364V10.2083Z" fill="%23FF1815"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.11297 1.0595C7.92569 -0.353182 9.9957 -0.35315 10.8084 1.0595L17.6411 12.9247L17.6428 12.9264C18.4571 14.3488 17.3833 16.0413 15.7938 16.0416H2.12762C0.537924 16.0413 -0.535418 14.3489 0.279475 12.9264L0.280289 12.9247L7.11297 1.0595ZM9.36395 1.89039C9.19206 1.59194 8.72933 1.59191 8.55747 1.89039L1.72479 13.754C1.58206 14.0031 1.74592 14.3747 2.12762 14.3749H15.7938C16.1744 14.3746 16.338 14.0055 16.1974 13.7564L9.36476 1.8912L9.36395 1.89039Z" fill="%23FF1815"/></svg>') center no-repeat; }

.profile-video .profile-video__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%; }
  .profile-video .profile-video__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000033; }
  .profile-video .profile-video__img iframe, .profile-video .profile-video__img img {
    width: 100%;
    aspect-ratio: 586 / 352;
    border: none;
    -o-object-fit: cover;
       object-fit: cover; }
  .profile-video .profile-video__img.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed; }

.profile-video .profile-video__info {
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#E3E3E3));
  background: linear-gradient(90deg, #FFFFFF 0%, #E3E3E3 100%);
  border: 1px solid #2626261A; }

.video-form {
  max-width: 100%;
  padding: 0; }
  .video-form .video-form__note {
    font-weight: 600;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%; }
    @media (max-width: 375px) {
      .video-form .video-form__note {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__note {
        font-size: 16px; } }
    .video-form .video-form__note:not(:last-child) {
      margin-bottom: calc(12px + (16 - 12) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .video-form .video-form__note:not(:last-child) {
          margin-bottom: 12px; } }
      @media (min-width: 1412px) {
        .video-form .video-form__note:not(:last-child) {
          margin-bottom: 16px; } }
    .video-form .video-form__note p {
      margin-bottom: 0; }
      .video-form .video-form__note p:not(:last-child) {
        margin-bottom: calc(12px + (16 - 12) * ((100vw - 375px) / (1412 - 375))); }
        @media (max-width: 375px) {
          .video-form .video-form__note p:not(:last-child) {
            margin-bottom: 12px; } }
        @media (min-width: 1412px) {
          .video-form .video-form__note p:not(:last-child) {
            margin-bottom: 16px; } }
  .video-form .video-form__text {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--grey-color); }
    @media (max-width: 375px) {
      .video-form .video-form__text {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__text {
        font-size: 16px; } }
    .video-form .video-form__text:not(:last-child) {
      margin-bottom: calc(16px + (6 - 16) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .video-form .video-form__text:not(:last-child) {
          margin-bottom: 16px; } }
      @media (min-width: 1412px) {
        .video-form .video-form__text:not(:last-child) {
          margin-bottom: 6px; } }
  .video-form .video-form__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; }
    @media (max-width: 991.98px) {
      .video-form .video-form__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 16px; } }
    .video-form .video-form__grid:not(:last-child) {
      margin-bottom: calc(16px + (26 - 16) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .video-form .video-form__grid:not(:last-child) {
          margin-bottom: 16px; } }
      @media (min-width: 1412px) {
        .video-form .video-form__grid:not(:last-child) {
          margin-bottom: 26px; } }
  .video-form .video-form__item {
    padding: calc(16px + (24 - 16) * ((100vw - 375px) / (1412 - 375)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 2px solid #F6F6F6; }
    @media (max-width: 375px) {
      .video-form .video-form__item {
        padding: 16px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__item {
        padding: 24px; } }
  .video-form .video-form__item-top {
    position: relative;
    padding-left: 78px; }
    @media (max-width: 991.98px) {
      .video-form .video-form__item-top {
        padding-left: 0; } }
    .video-form .video-form__item-top:not(:last-child) {
      margin-bottom: calc(12px + (24 - 12) * ((100vw - 375px) / (1412 - 375))); }
      @media (max-width: 375px) {
        .video-form .video-form__item-top:not(:last-child) {
          margin-bottom: 12px; } }
      @media (min-width: 1412px) {
        .video-form .video-form__item-top:not(:last-child) {
          margin-bottom: 24px; } }
  .video-form .video-form__item-number {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 62px;
    height: 24px;
    background: var(--color-blue);
    color: var(--white-color);
    font-weight: 700;
    font-style: Italic;
    font-size: calc(12px + (14 - 12) * ((100vw - 375px) / (1412 - 375)));
    line-height: 130%;
    font-family: "Science Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "CTRS" 0;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%); }
    @media (max-width: 375px) {
      .video-form .video-form__item-number {
        font-size: 12px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__item-number {
        font-size: 14px; } }
    @media (max-width: 991.98px) {
      .video-form .video-form__item-number {
        width: 56px;
        height: 22px; } }
  .video-form .video-form__item-title {
    font-weight: 600;
    font-size: calc(16px + (18 - 16) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%; }
    @media (max-width: 375px) {
      .video-form .video-form__item-title {
        font-size: 16px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__item-title {
        font-size: 18px; } }
    @media (max-width: 991.98px) {
      .video-form .video-form__item-title {
        padding-left: 68px; } }
    .video-form .video-form__item-title:not(:last-child) {
      margin-bottom: 8px; }
      @media (max-width: 991.98px) {
        .video-form .video-form__item-title:not(:last-child) {
          margin-bottom: 12px; } }
  .video-form .video-form__item-text {
    font-weight: 400;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--grey-color); }
    @media (max-width: 375px) {
      .video-form .video-form__item-text {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__item-text {
        font-size: 14px; } }
  .video-form .video-form__info {
    margin-top: auto;
    padding: 8px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--orange-color);
    background: #FFF6ED;
    border: 1px solid #FFE8D2; }
    @media (max-width: 375px) {
      .video-form .video-form__info {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__info {
        font-size: 14px; } }
    @media (max-width: 991.98px) {
      .video-form .video-form__info {
        padding: 8px; } }
    .video-form .video-form__info .icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 16px;
      height: 16px; }
      @media (max-width: 991.98px) {
        .video-form .video-form__info .icon {
          width: 14px;
          height: 14px; } }
  .video-form .video-form__link-download {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    color: var(--color-blue-4);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 375px) {
      .video-form .video-form__link-download {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__link-download {
        font-size: 16px; } }
    @media (any-hover: hover) {
      .video-form .video-form__link-download:hover {
        color: var(--color-blue);
        text-decoration: none; } }
    .video-form .video-form__link-download .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 991.98px) {
        .video-form .video-form__link-download .icon {
          width: 16px;
          height: 16px; } }
    .video-form .video-form__link-download:not(:last-child) {
      margin-bottom: 16px; }
  .video-form .video-form__bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; }
    @media (max-width: 991.98px) {
      .video-form .video-form__bottom {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 16px; } }
    .video-form .video-form__bottom .btn {
      margin-left: auto;
      width: auto;
      -ms-flex-item-align: start;
          -ms-grid-row-align: start;
          align-self: start; }
      @media (max-width: 767.98px) {
        .video-form .video-form__bottom .btn {
          width: 100%;
          margin-left: 0; } }
  .video-form .video-form__page {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1412 - 375)));
    line-height: 140%;
    color: var(--grey-color); }
    @media (max-width: 375px) {
      .video-form .video-form__page {
        font-size: 14px; } }
    @media (min-width: 1412px) {
      .video-form .video-form__page {
        font-size: 16px; } }
    .video-form .video-form__page a {
      color: var(--color-blue);
      text-decoration: underline;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .video-form .video-form__page a:hover {
          text-decoration: none;
          color: var(--color-blue-4); } }

.history-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border: 2px solid #F6F6F6; }
  @media (max-width: 991.98px) {
    .history-box {
      padding: 16px; } }
  .history-box .history-box__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    .history-box .history-box__top:not(:last-child) {
      margin-bottom: 24px; }
  .history-box .history-box__data {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase; }
    .history-box .history-box__data .icon {
      width: 18px;
      height: 18px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .history-box .history-box__title {
    font-weight: 600;
    font-size: calc(18px + (20 - 18) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase; }
    @media (max-width: 375px) {
      .history-box .history-box__title {
        font-size: 18px; } }
    @media (min-width: 1412px) {
      .history-box .history-box__title {
        font-size: 20px; } }
    .history-box .history-box__title:not(:last-child) {
      margin-bottom: 8px; }
  .history-box .history-box__text:not(:last-child) {
    margin-bottom: 8px; }
  .history-box .history-box__city {
    font-weight: 500;
    font-size: calc(13px + (14 - 13) * ((100vw - 375px) / (1412 - 375)));
    line-height: 120%;
    text-transform: uppercase;
    color: var(--gray-light); }
    @media (max-width: 375px) {
      .history-box .history-box__city {
        font-size: 13px; } }
    @media (min-width: 1412px) {
      .history-box .history-box__city {
        font-size: 14px; } }
    .history-box .history-box__city:not(:last-child) {
      margin-bottom: 16px; }
  .history-box .history-box__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: auto;
    gap: 16px; }
    @media (max-width: 991.98px) {
      .history-box .history-box__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .history-box .history-box__vice {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: var(--gray-light); }
  .history-box .history-box__btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 767.98px) {
      .history-box .history-box__btn {
        width: 100%; } }
  .history-box .stats-group {
    margin-left: auto; }

.user-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 20px 0; }
  .user-address .address-item {
    position: relative;
    z-index: 1;
    padding: 15px;
    background: white;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20px 1fr;
    grid-template-columns: 20px 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 15px; }
    .user-address .address-item .custom-radio {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      grid-row: 1/4;
      -ms-grid-row-align: center;
          align-self: center; }
    .user-address .address-item .title {
      font-weight: bold;
      font-size: 18px; }
    .user-address .address-item .address-title-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 15px;
      padding-right: 90px; }
    .user-address .address-item .actions {
      position: absolute;
      top: 20px;
      right: 20px; }
    .user-address .address-item .btn-action {
      padding: 3px !important;
      min-height: 30px;
      min-width: 30px;
      color: var(--theme-color-second);
      border-radius: 4px; }
      @media (pointer: fine) {
        .user-address .address-item .btn-action:hover {
          background: var(--theme-color-main);
          color: var(--white-color); } }
      .user-address .address-item .btn-action:focus {
        background: var(--theme-color-main);
        color: var(--white-color);
        -webkit-box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%);
                box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%); }

.main-category {
  font-size: 1.5rem; }

.sub-category {
  font-size: 1rem; }

.sub-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem; }

.sub-list .col-md-4 {
  padding: 0.5rem; }

.seo-pages-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem; }

.seo-pages-list .col-md-6,
.seo-pages-list .col-xl-4 {
  padding: 0.5rem; }

.person-info-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 30px; }
  .person-info-wrap .person-social-list {
    margin-top: 20px; }
