@charset "UTF-8";
/** THEME COLOURS */
:root {
  --theme-color-main: #2d7dd2;
  --theme-color-second: #13c4a3;
  --blue-main: #2d7dd2;
  --accent-color: #13c4a3;
  --black-color: #171614;
  --secondary-color: #656565;
  --grey-color: #a0a0a0;
  --bg: #fafafa;
  --white-color: #ffffff;
  --main-50: #ebfaff;
  --main-100: #d2f2ff;
  --main-200: #C4E8F9;
  --sale-color: #e93d31;
  --sticker-green: #56dac2;
  --stroke-color: #f0f0f0;
  --top-color: #49a8e8;
  --color-text: #656565;
  --price-color: #171614;
  --price-old: #a0a0a0;
  --price-new: #e93d31;
  --color-link: var(--color-text);
  --color-link-hovered: var(--blue-main); }

/** MEDIA BREAKPOINTS */
html {
  font-size: 16px;
  background: var(--color-text);
  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: var(--main-100); }
    html::-webkit-scrollbar-track-piece,
    html *::-webkit-scrollbar-track-piece {
      background: var(--main-100); }
    html::-webkit-scrollbar-thumb,
    html *::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 99px; }
    html::-webkit-scrollbar-corner,
    html *::-webkit-scrollbar-corner {
      background: var(--main-100); } }
  html::-webkit-scrollbar {
    width: 5px;
    height: 5px; }

body {
  background: #ffffff;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Ubuntu", sans-serif; }
  @media (max-width: 991.98px) {
    body {
      font-size: 14px;
      line-height: 20px; } }
  body * {
    text-underline-offset: 3px;
    text-decoration-thickness: 1px; }

input {
  caret-color: var(--black-color); }

body.catalog-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.catalog-opened .header-menu {
    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 {
    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 {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden; }

.section-top:not(:last-child) {
  margin-bottom: 56px; }
  @media (max-width: 991.98px) {
    .section-top:not(:last-child) {
      margin-bottom: 32px; } }

.section-top:has(+ .utp-block):not(:last-child) {
  margin-bottom: 0; }
  @media (max-width: 991.98px) {
    .section-top:has(+ .utp-block):not(:last-child) {
      margin-bottom: 0; } }

.main-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; }
  .main-img:not(:last-child) {
    margin-bottom: 56px; }
    @media (max-width: 991.98px) {
      .main-img:not(:last-child) {
        margin-bottom: 32px; } }
  .main-img picture,
  .main-img img {
    border-radius: 12px; }

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;
    overflow: clip; }

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

#page-content {
  position: relative;
  z-index: 25;
  padding-top: 156px;
  padding-bottom: 80px; }
  @media (max-width: 991.98px) {
    #page-content {
      padding-top: 64px;
      padding-bottom: 48px; } }
  #page-content:after {
    content: "";
    clear: both; }

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

section.section-block {
  position: relative;
  z-index: 3; }

.section-block {
  position: relative;
  z-index: 3;
  padding-top: 56px;
  padding-bottom: 56px; }
  @media (max-width: 991.98px) {
    .section-block {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .section-block:has(.section-row) {
    background: var(--bg); }

.section-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color); }
  @media (min-width: 992px) {
    .section-row {
      overflow: hidden; }
      .section-row .section-col {
        position: relative; }
        .section-row .section-col::before {
          content: "";
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          height: 1px;
          background: var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .section-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.section-col {
  padding: 40px 32px;
  width: 50%; }
  @media (min-width: 992px) {
    .section-col:nth-child(2n + 1) {
      border-right: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .section-col {
      width: 100%;
      padding: 20px 16px; }
      .section-col:not(:last-child) {
        border-bottom: 1px solid var(--stroke-color); } }
  .section-col .section-title:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .section-col .section-title:not(:last-child) {
        margin-bottom: 12px; } }
  @media (max-width: 991.98px) {
    .section-col .section-title {
      font-size: 22px;
      line-height: 28px; } }

.section-seo .page-description {
  max-height: 236px;
  overflow-y: auto;
  overflow-x: unset;
  padding-right: 24px;
  margin-right: -24px; }
  @media (min-width: 992px) {
    .section-seo .page-description, .section-seo .page-description * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .section-seo .page-description::-webkit-scrollbar,
    .section-seo .page-description *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .section-seo .page-description::-webkit-scrollbar-button,
    .section-seo .page-description *::-webkit-scrollbar-button {
      display: none; }
    .section-seo .page-description::-webkit-scrollbar-track,
    .section-seo .page-description *::-webkit-scrollbar-track {
      background: var(--main-100); }
    .section-seo .page-description::-webkit-scrollbar-track-piece,
    .section-seo .page-description *::-webkit-scrollbar-track-piece {
      background: var(--main-100); }
    .section-seo .page-description::-webkit-scrollbar-thumb,
    .section-seo .page-description *::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 99px; }
    .section-seo .page-description::-webkit-scrollbar-corner,
    .section-seo .page-description *::-webkit-scrollbar-corner {
      background: var(--main-100); } }

.container .container {
  padding: 0 !important;
  max-width: 100% !important; }

.grey-bg {
  background: var(--bg) !important; }

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

.section-seo {
  padding-top: 24px;
  padding-bottom: 56px; }
  @media (max-width: 991.98px) {
    .section-seo {
      padding-bottom: 32px; } }

.date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; }

[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;
  color: var(--black-color);
  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: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .status-mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #000000; }
    @media (max-width: 991.98px) {
      .status-mark:before {
        top: 6px; } }
  .status-mark-green:before {
    background: #13c4a3; }
  .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: #e93d31; }
  .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-inner {
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .swiper-inner {
      margin: 0 -16px; } }

.swiper {
  border: 1px solid var(--stroke-color);
  border-bottom: none; }
  @media (min-width: 992px) {
    .swiper {
      padding: 24px !important;
      border-radius: 12px 12px 0 0; } }
  @media (max-width: 991.98px) {
    .swiper {
      padding: 20px 16px !important; } }

.swiper-nav {
  position: relative;
  width: 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;
  gap: 20px;
  padding: 16px 10px;
  background: var(--white-color); }
  .swiper-nav:has(.swiper-button-lock) {
    display: none; }
  @media (min-width: 992px) {
    .swiper-nav {
      border-radius: 0 0 12px 12px;
      border: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .swiper-nav {
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .swiper-nav .swiper-button-next,
  .swiper-nav .swiper-button-prev {
    position: relative;
    margin-top: 0 !important; }
  .swiper-nav .swiper-pagination {
    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: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    position: static;
    -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
            transform: translateX(0) !important;
    --swiper-pagination-bottom: 0; }
  @media (max-width: 991.98px) {
    .swiper-nav .swiper-button-next,
    .swiper-nav .swiper-button-prev {
      display: none; }
    .swiper-nav .swiper-pagination {
      --swiper-pagination-bottom: 0; } }

.swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 6px; }
  .swiper-pagination.swiper-pagination-bullets-dynamic {
    --swiper-pagination-bottom: 0; }
    .swiper-pagination.swiper-pagination-bullets-dynamic:has(.swiper-pagination-bullet:nth-child(6)) {
      max-width: 120px;
      padding-left: 8px;
      -webkit-transform: translateX(16px) !important;
          -ms-transform: translateX(16px) !important;
              transform: translateX(16px) !important; }
    .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      -webkit-transform: scale(1) !important;
          -ms-transform: scale(1) !important;
              transform: scale(1) !important;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s ease-in-out !important;
      transition: all 0.3s ease-in-out !important; }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
        opacity: 1 !important;
        visibility: visible;
        background: var(--stroke-color); }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--blue-main); }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next, .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-next, .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev, .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
        opacity: 0 !important; }
  .swiper-pagination .swiper-pagination-bullet {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 8px;
    height: 8px;
    -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
            transform: scale(1) !important;
    opacity: 1 !important;
    background: var(--stroke-color); }
    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: var(--blue-main); }
    @media (max-width: 991.98px) {
      .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px; } }
  @media (max-width: 991.98px) {
    .swiper-pagination {
      --swiper-pagination-bullet-horizontal-gap: 4px; } }

.swiper-watch-progress {
  position: relative;
  overflow: visible !important; }
  .swiper-watch-progress .swiper-slide {
    opacity: 1;
    height: auto !important; }
    .swiper-watch-progress .swiper-slide:not(.swiper-slide-visible) {
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 14px;
  margin-top: -20px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px !important;
  height: 40px !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: var(--white);
  border-radius: 100px;
  border: none;
  font-weight: 700;
  -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::after, .swiper-button-next:focus::after,
    .swiper-button-prev:hover::after,
    .swiper-button-prev:focus::after {
      color: var(--white); }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: var(--theme-color-main);
    font-weight: 700; }

.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; }

.advantages-section {
  padding-top: 24px;
  padding-bottom: 56px;
  background: var(--bg); }
  @media (max-width: 991.98px) {
    .advantages-section {
      padding-top: 16px;
      padding-bottom: 32px; } }

.advantages:not(:last-child) {
  margin-bottom: 24px; }

.advantages:last-child {
  margin-top: 24px; }

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

.advantages .advantages-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .advantages .advantages-grid {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .advantages .advantages-grid .advantages-item {
    width: 20%;
    padding: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center; }
    @media (min-width: 992px) {
      .advantages .advantages-grid .advantages-item:not(:last-child) {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .advantages .advantages-grid .advantages-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        width: 100%;
        padding: 20px 16px;
        font-size: 14px;
        line-height: 20px;
        gap: 12px;
        text-align: left; }
        .advantages .advantages-grid .advantages-item:not(:last-child) {
          border-bottom: 1px solid var(--stroke-color); } }
    .advantages .advantages-grid .advantages-item .advantages-item-img {
      width: 56px;
      height: 56px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 991.98px) {
        .advantages .advantages-grid .advantages-item .advantages-item-img {
          width: 48px;
          height: 48px; } }
      .advantages .advantages-grid .advantages-item .advantages-item-img picture,
      .advantages .advantages-grid .advantages-item .advantages-item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }

.advantages .advantages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .advantages .advantages-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .advantages .advantages-list .advantages-item {
    width: 33.333%;
    padding: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    @media (min-width: 992px) {
      .advantages .advantages-list .advantages-item:not(:last-child) {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .advantages .advantages-list .advantages-item {
        width: 100%;
        padding: 20px 16px;
        font-size: 14px;
        line-height: 20px;
        gap: 12px; }
        .advantages .advantages-list .advantages-item:not(:last-child) {
          border-bottom: 1px solid var(--stroke-color); } }
    .advantages .advantages-list .advantages-item .advantages-item-img {
      width: 40px;
      height: 40px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 991.98px) {
        .advantages .advantages-list .advantages-item .advantages-item-img {
          width: 32px;
          height: 32px; } }
      .advantages .advantages-list .advantages-item .advantages-item-img picture,
      .advantages .advantages-list .advantages-item .advantages-item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    .advantages .advantages-list .advantages-item .advantages-item-title {
      font-size: 16px;
      line-height: 1.5;
      color: var(--black-color);
      text-transform: uppercase; }
      .advantages .advantages-list .advantages-item .advantages-item-title:not(:last-child) {
        margin-bottom: 4px; }
    .advantages .advantages-list .advantages-item .advantages-item-text {
      color: var(--secondary-color); }

.utp-block {
  overflow: hidden;
  padding: 16px 0 32px; }
  @media (max-width: 991.98px) {
    .utp-block {
      padding: 8px 0 32px; } }
  .utp-block .utp-block-wrap {
    overflow: hidden; }
    @media (max-width: 991.98px) {
      .utp-block .utp-block-wrap {
        margin: 0 -16px; } }

.utp-list {
  overflow: visible; }
  @media (max-width: 991.98px) {
    .utp-list {
      padding: 0 16px; } }
  .utp-list:not(.swiper-initialized) {
    overflow: hidden; }
    .utp-list:not(.swiper-initialized) .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px; }
      @media (max-width: 991.98px) {
        .utp-list:not(.swiper-initialized) .swiper-wrapper {
          gap: 8px; } }
    .utp-list:not(.swiper-initialized) .swiper-slide {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: calc(20% - 16px); }
      @media (max-width: 1199.98px) {
        .utp-list:not(.swiper-initialized) .swiper-slide {
          width: calc(25% - 16px); } }
      @media (max-width: 991.98px) {
        .utp-list:not(.swiper-initialized) .swiper-slide {
          width: calc(33.333% - 8px); } }
      @media (max-width: 767.98px) {
        .utp-list:not(.swiper-initialized) .swiper-slide {
          width: calc(50% - 8px); } }
      @media (max-width: 575.98px) {
        .utp-list:not(.swiper-initialized) .swiper-slide {
          width: calc(64% - 8px); } }

.utp-item {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 16px;
  border-radius: 12px;
  background: var(--main-50);
  cursor: pointer; }
  @media (max-width: 991.98px) {
    .utp-item {
      padding: 12px;
      min-height: 126px; } }
  @media (any-hover: hover) {
    .utp-item:hover::before {
      width: 200%;
      height: 220%;
      -webkit-transform: translate(20%, 20%);
          -ms-transform: translate(20%, 20%);
              transform: translate(20%, 20%); } }
  .utp-item::before {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background: var(--main-100);
    -webkit-transform: translate(27%, 43%);
        -ms-transform: translate(27%, 43%);
            transform: translate(27%, 43%);
    border: 16px solid var(--main-50);
    -webkit-box-shadow: 0 0 0 1px var(--main-100);
            box-shadow: 0 0 0 1px var(--main-100);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    @media (max-width: 991.98px) {
      .utp-item::before {
        width: 180px;
        height: 180px;
        border: 12px solid var(--main-50);
        -webkit-transform: translate(32%, 39%);
            -ms-transform: translate(32%, 39%);
                transform: translate(32%, 39%); } }
  .utp-item .utp-item-img {
    position: absolute;
    z-index: 5;
    bottom: 0;
    right: 0;
    height: 100%;
    max-width: 64%;
    padding-top: 40px; }
    .utp-item .utp-item-img picture,
    .utp-item .utp-item-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -o-object-position: bottom;
         object-position: bottom; }
  .utp-item .utp-item-title {
    position: relative;
    z-index: 10;
    max-width: 60%;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .utp-item .utp-item-title {
        font-size: 14px;
        line-height: 20px; } }

[js-show-more-wrap] {
  position: relative; }
  [js-show-more-wrap]:not(.no-active) {
    max-height: 280px;
    overflow: hidden;
    padding-bottom: 40px !important; }
    @media (max-width: 991.98px) {
      [js-show-more-wrap]:not(.no-active) {
        padding-bottom: 26px !important; } }
  [js-show-more-wrap]::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 42px;
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      [js-show-more-wrap]::before {
        height: 26px; } }
  [js-show-more-wrap].no-active [js-btn-show-more] {
    display: none; }
  [js-show-more-wrap] [js-btn-show-more] {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    color: var(--blue-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border: none;
    padding: 0;
    gap: 8px;
    text-transform: none;
    min-height: auto;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      [js-show-more-wrap] [js-btn-show-more]:hover {
        color: var(--accent-color); } }
    @media (max-width: 991.98px) {
      [js-show-more-wrap] [js-btn-show-more] {
        font-size: 14px;
        line-height: 20px; } }
    [js-show-more-wrap] [js-btn-show-more] .icon {
      width: 10px;
      height: 10px;
      margin-bottom: 5px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -ms-flex-item-align: end;
          -ms-grid-row-align: end;
          align-self: end; }
    [js-show-more-wrap] [js-btn-show-more] .hide {
      display: none; }
  [js-show-more-wrap].active {
    max-height: 100%; }
    [js-show-more-wrap].active [js-btn-show-more] .show {
      display: none; }
    [js-show-more-wrap].active [js-btn-show-more] .hide {
      display: block; }
    [js-show-more-wrap].active [js-btn-show-more] .icon {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }

html {
  scroll-padding-top: 20px; }

body.catalog-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.catalog-opened #page-header {
    padding-right: var(--scrollbar-width); }
    body.catalog-opened #page-header::before {
      opacity: 1; }
    body.catalog-opened #page-header .header-menu {
      z-index: 1000; }
      @media (max-width: 991.98px) {
        body.catalog-opened #page-header .header-menu {
          z-index: 0;
          pointer-events: none !important;
          -webkit-transform: translateX(-100%) !important;
              -ms-transform: translateX(-100%) !important;
                  transform: translateX(-100%) !important; } }
    @media (max-width: 991.98px) {
      body.catalog-opened #page-header .header-bottom {
        opacity: 0;
        pointer-events: none; } }
  body.catalog-opened .catalog-drop {
    opacity: 1;
    pointer-events: initial;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }

body.menu-opened {
  overflow: hidden; }
  body.menu-opened #mobile-nav {
    z-index: 1; }
  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 {
    pointer-events: initial;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible; }

#page-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #page-header::before {
    content: "";
    position: fixed;
    z-index: 5;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(45, 125, 210, 0.4);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  #page-header.checkout-header {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      #page-header.checkout-header {
        padding-top: 12px;
        padding-bottom: 12px; } }
    #page-header.checkout-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; }
    @media (max-width: 991.98px) {
      #page-header.checkout-header .cellphones-dropdown-wrap {
        display: block; } }
    #page-header.checkout-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
      color: var(--blue-main); }
      @media (max-width: 991.98px) {
        #page-header.checkout-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
          margin-right: 4px; } }
    @media (max-width: 991.98px) {
      #page-header.checkout-header .cellphones-dropdown-wrap .cellphone-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    @media (max-width: 991.98px) {
      #page-header.checkout-header .cellphones-dropdown-wrap .phone {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content; }
        #page-header.checkout-header .cellphones-dropdown-wrap .phone::after {
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_2281_1583)"><path d="M23.347 17.6136L19.9977 14.2643C18.8015 13.0681 16.768 13.5467 16.2896 15.1016C15.9307 16.1782 14.7346 16.7763 13.658 16.537C11.2657 15.9389 8.03602 12.8289 7.43794 10.317C7.07908 9.24035 7.79679 8.04419 8.87334 7.68538C10.4284 7.20691 10.9068 5.17343 9.71066 3.97726L6.36138 0.627988C5.40445 -0.209329 3.96905 -0.209329 3.13173 0.627988L0.859009 2.90071C-1.41371 5.29305 1.09824 11.6327 6.72023 17.2547C12.3422 22.8767 18.6819 25.5083 21.0743 23.116L23.347 20.8432C24.1843 19.8863 24.1843 18.4509 23.347 17.6136Z" fill="%23ffffff"/></g><defs><clipPath id="clip0_2281_1583"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>') center no-repeat; } }
  #page-header.header-scroll .header-top {
    margin-top: -48px; }
  #page-header .header-top {
    min-height: 48px;
    width: 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: var(--white-color);
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 991.98px) {
      #page-header .header-top {
        display: none; } }
    #page-header .header-top > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 24px; }
  #page-header .header-bottom {
    width: 100%;
    background: var(--theme-color-main); }
    #page-header .header-bottom > .container {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 20px;
      padding-bottom: 20px;
      gap: 24px; }
      @media (max-width: 991.98px) {
        #page-header .header-bottom > .container {
          padding-top: 12px;
          padding-bottom: 12px;
          gap: 12px; } }
  #page-header .logo-wrap {
    position: relative;
    z-index: 102;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 196px; }
    #page-header .logo-wrap img {
      max-width: 100%; }
    @media (max-width: 991.98px) {
      #page-header .logo-wrap {
        margin-right: auto;
        max-width: 130px; } }
  #page-header .head-qty {
    position: absolute;
    z-index: 2;
    top: -6px;
    right: -6px;
    height: 24px;
    min-width: 24px;
    padding: 2px 3px;
    border-radius: 999px;
    border: 2px solid;
    font-size: 14px;
    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: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white-color); }
    #page-header .header-btn .ic {
      width: 24px;
      height: 24px; }
    #page-header .header-btn:focus {
      background: var(--accent-color);
      color: var(--white-color); }
    @media (pointer: fine) {
      #page-header .header-btn:hover {
        background: var(--accent-color);
        color: var(--white-color); } }
    #page-header .header-btn .head-qty {
      border-color: var(--accent-color);
      background: var(--accent-color);
      color: var(--white-color); }
    @media (max-width: 991.98px) {
      #page-header .header-btn {
        width: 40px;
        height: 40px;
        min-width: 40px; }
        #page-header .header-btn .ic {
          width: 20px;
          height: 20px; } }
  @media (min-width: 992px) {
    #page-header .btn-profile .text {
      display: none; } }
  @media (max-width: 991.98px) {
    #page-header .btn-profile {
      width: 100%;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      height: auto;
      padding: 18px 16px;
      gap: 8px;
      color: var(--black-color); }
      #page-header .btn-profile .ic,
      #page-header .btn-profile .icon {
        color: var(--blue-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: 24px; }
    @media (max-width: 991.98px) {
      #page-header .header-actions {
        gap: 12px; }
        #page-header .header-actions .btn-profile {
          display: none; } }
  #page-header .catalog-btn {
    padding: 8px 32px;
    min-height: 48px;
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
    font-size: 16px; }
    @media (max-width: 991.98px) {
      #page-header .catalog-btn {
        width: 100%;
        padding: 18px 16px;
        background: var(--white-color);
        border-radius: 0;
        color: var(--black-color);
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        border: none; }
        #page-header .catalog-btn .icon {
          color: var(--accent-color); }
        #page-header .catalog-btn::after {
          content: "";
          display: block;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          width: 8px;
          height: 14px;
          margin-left: auto;
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M1 1L7 7L1 13" stroke="%23A0A0A0" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>'); } }
  #page-header .header-search {
    position: relative;
    width: 100%; }
    @media (min-width: 992px) {
      #page-header .header-search {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto; } }
    @media (max-width: 991.98px) {
      #page-header .header-search {
        margin-left: auto;
        width: auto; } }
    @media (max-width: 991.98px) {
      #page-header .header-search > .search-form {
        display: none; } }
  #page-header .header-search-btn {
    position: relative;
    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;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 100px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color); }
    @media (min-width: 991.98px) {
      #page-header .header-search-btn {
        display: none; } }
    #page-header .header-search-btn .icon {
      position: absolute;
      z-index: 5;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    #page-header .header-search-btn.btn-search-active {
      background: var(--accent-color); }
    @media (any-hover: hover) {
      #page-header .header-search-btn:hover {
        background: var(--accent-color);
        color: var(--white-color); } }
  @media (max-width: 991.98px) {
    #page-header .header-languages.desktop,
    #page-header .header-pages.desktop,
    #page-header .header-catalog.desktop {
      display: none; } }
  @media (min-width: 992px) {
    #page-header .header-languages.mobile,
    #page-header .header-pages.mobile,
    #page-header .header-catalog.mobile {
      display: none; } }

.header-menu {
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  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;
  background: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  visibility: hidden; }
  @media (min-width: 992px) {
    .header-menu {
      display: none; } }
  .header-menu .header-menu-top {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 64px;
    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;
    padding: 12px 16px;
    background: var(--blue-main); }
  .header-menu .close-menu {
    position: relative;
    z-index: 102;
    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-negative: 0;
        flex-shrink: 0;
    border-radius: 100px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .header-menu .close-menu::after, .header-menu .close-menu::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 20px;
      height: 2px;
      background: var(--white-color); }
    .header-menu .close-menu::before {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
          -ms-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
    .header-menu .close-menu::after {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          -ms-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
  .header-menu .header-menu-wrap {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 100%;
    padding-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    .header-menu .header-menu-wrap::-webkit-scrollbar {
      display: none; }
  .header-menu .header-menu-row {
    padding: 20px 16px;
    border-bottom: 1px solid var(--stroke-color); }
    .header-menu .header-menu-row.js-catalog-mobile, .header-menu .header-menu-row.js-profile-mobile {
      padding: 0; }
    .header-menu .header-menu-row.js-header-contacts-mobile {
      margin-top: auto; }
    .header-menu .header-menu-row:empty {
      display: none; }
  .header-menu .cellphones-dropdown {
    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;
    gap: 12px; }
    .header-menu .cellphones-dropdown .title {
      color: var(--black-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-transform: uppercase; }
    .header-menu .cellphones-dropdown .info-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 4px 8px; }
      .header-menu .cellphones-dropdown .info-title .text {
        width: 100%;
        color: var(--secondary-color);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px; }
    .header-menu .cellphones-dropdown .phone {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0;
      color: var(--theme-color-main);
      font-size: 16px;
      font-weight: 500;
      line-height: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (any-hover: hover) {
        .header-menu .cellphones-dropdown .phone:hover {
          color: var(--accent-color); } }
      .header-menu .cellphones-dropdown .phone .sup, .header-menu .cellphones-dropdown .phone .quote, .header-menu .cellphones-dropdown .phone .nums {
        font-weight: 500; }
      @media (max-width: 991.98px) {
        .header-menu .cellphones-dropdown .phone {
          font-size: 14px; } }
  .header-menu .course-select.jq-selectbox .jq-selectbox__select {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: "Ubuntu", sans-serif; }
  .header-menu .course-select.jq-selectbox .jq-selectbox__dropdown {
    top: auto !important;
    bottom: calc(100% + 10px) !important;
    font-family: "Ubuntu", sans-serif; }

.hamburger {
  position: relative;
  z-index: 102;
  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-negative: 0;
      flex-shrink: 0;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  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.trigger-active {
    background: var(--theme-color-second);
    border-color: var(--theme-color-second); }
    .menu-opened .hamburger .hamburger-line, .hamburger.trigger-active .hamburger-line {
      background: var(--white);
      height: 2px; }
      .menu-opened .hamburger .hamburger-line:nth-child(3n + 1), .hamburger.trigger-active .hamburger-line:nth-child(3n + 1) {
        -webkit-transform: translateY(6px) rotate(-45deg);
            -ms-transform: translateY(6px) rotate(-45deg);
                transform: translateY(6px) rotate(-45deg); }
      .menu-opened .hamburger .hamburger-line:nth-child(3n + 2), .hamburger.trigger-active .hamburger-line:nth-child(3n + 2) {
        opacity: 0;
        left: 100%; }
      .menu-opened .hamburger .hamburger-line:nth-child(3n + 3), .hamburger.trigger-active .hamburger-line:nth-child(3n + 3) {
        -webkit-transform: translateY(-6px) rotate(45deg);
            -ms-transform: translateY(-6px) rotate(45deg);
                transform: translateY(-6px) rotate(45deg); }
  .hamburger .hamburger-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 18px;
    height: 18px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .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(3n + 1) {
      top: 2px; }
    .hamburger .hamburger-line:nth-child(3n + 2) {
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .hamburger .hamburger-line:nth-child(3n + 3) {
      bottom: 2px; }

.catalog-drop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 432px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 992px) {
    .catalog-drop {
      -webkit-transform: translateX(-100px);
          -ms-transform: translateX(-100px);
              transform: translateX(-100px);
      -webkit-box-shadow: 0 0 16px 6px rgba(0, 0, 0, 0.1);
              box-shadow: 0 0 16px 6px rgba(0, 0, 0, 0.1); } }
  @media (max-width: 991.98px) {
    .catalog-drop {
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%);
      padding: 0;
      width: 100%;
      height: 100dvh;
      top: 0;
      left: 0;
      overflow: hidden; } }
  .catalog-drop ul, .catalog-drop li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .catalog-drop .modal-close {
    top: 12px !important;
    right: 16px !important; }
  .catalog-drop .catalog-drop-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: 8px;
    padding: 20px 16px;
    min-height: 64px;
    background: var(--white);
    color: var(--black-color);
    border-bottom: 1px solid var(--stroke-color); }
    @media (max-width: 991.98px) {
      .catalog-drop .catalog-drop-top {
        padding: 12px 16px;
        color: var(--white-color);
        background: var(--blue-main);
        border-bottom: none; } }
  .catalog-drop .catalog-drop-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
  .catalog-drop .nav-catalog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    .catalog-drop .nav-catalog-list::-webkit-scrollbar {
      display: none; }
  .catalog-drop .catalog-drop-item {
    width: 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: 767.98px) {
      .catalog-drop .catalog-drop-item {
        width: 100%;
        padding-right: 0; } }

@media (min-width: 992px) and (min-width: 992px) {
  .catalog-drop .catalog-drop-item.sub-in:hover > .sub-list-wrap, .catalog-drop .catalog-drop-item.sub-in:focus > .sub-list-wrap {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
    @media (max-width: 991.98px) {
      .catalog-drop .catalog-drop-item.sub-in.active > .sub-list-wrap {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        left: 0; } }
    .catalog-drop .catalog-drop-item.accordion-open .catalog-drop-link > .icon {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  @media (min-width: 992px) {
    .catalog-drop .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); } }
  @media (max-width: 991.98px) {
    .catalog-drop .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(0deg) !important;
          -ms-transform: rotate(0deg) !important;
              transform: rotate(0deg) !important; } }
  .catalog-drop .sub-item.sub-in.accordion-open > a > .icon {
    -webkit-transform: rotate(-180deg) !important;
        -ms-transform: rotate(-180deg) !important;
            transform: rotate(-180deg) !important; }
  .catalog-drop .catalog-drop-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 16px 20px;
    border-bottom: 1px solid var(--stroke-color); }
    @media (max-width: 991.98px) {
      .catalog-drop .catalog-drop-link {
        padding: 16px;
        font-size: 14px; } }
    .catalog-drop .catalog-drop-link .icon-wrapper {
      width: 24px;
      height: 24px;
      color: var(--blue-main);
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .catalog-drop .catalog-drop-link .icon-wrapper svg {
        width: 100%;
        height: 100%; }
        .catalog-drop .catalog-drop-link .icon-wrapper svg [style*=fill],
        .catalog-drop .catalog-drop-link .icon-wrapper svg [fill]:not([fill="none"]) {
          fill: var(--theme-color-main) !important;
          -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; }
        .catalog-drop .catalog-drop-link .icon-wrapper svg [style*=stroke],
        .catalog-drop .catalog-drop-link .icon-wrapper svg [stroke]:not([stroke="none"]) {
          stroke: var(--theme-color-main) !important;
          -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; }
      .catalog-drop .catalog-drop-link .icon-wrapper img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    .catalog-drop .catalog-drop-link .icon-arrow {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: auto;
      margin-right: -8px;
      width: 24px;
      height: 24px;
      padding: 5px;
      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: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); }
      @media (min-width: 1024px) {
        .catalog-drop .catalog-drop-link .icon-arrow {
          pointer-events: none; } }
      .catalog-drop .catalog-drop-link .icon-arrow .icon {
        width: 14px;
        height: 14px; }
    .catalog-drop .catalog-drop-link:hover, .catalog-drop .catalog-drop-link:focus {
      text-decoration: none;
      color: var(--theme-color-main); }
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [style*=fill],
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [fill]:not([fill="none"]), .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [style*=fill],
      .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [fill]:not([fill="none"]) {
        fill: var(--theme-color-main) !important; }
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [style*=stroke],
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [stroke]:not([stroke="none"]), .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [style*=stroke],
      .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [stroke]:not([stroke="none"]) {
        stroke: var(--theme-color-main) !important; }
      .catalog-drop .catalog-drop-link:hover .icon-arrow, .catalog-drop .catalog-drop-link:focus .icon-arrow {
        color: var(--blue-main); }
  .catalog-drop .sub-list-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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    border: none;
    border-bottom: 1px solid var(--stroke-color);
    border-radius: 0;
    padding: 20px 16px;
    text-transform: none; }
    .catalog-drop .sub-list-btn::before {
      content: "";
      display: block;
      width: 7px;
      height: 12px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="12" viewBox="0 0 7 12" fill="none"><path d="M6 11L0.999999 6L6 1" stroke="%2313C4A3" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }
    @media (min-width: 992px) {
      .catalog-drop .sub-list-btn {
        display: none; } }
  @media (min-width: 992px) {
    .catalog-drop .sub-list-wrap.lv-1 {
      position: fixed;
      top: 0;
      left: 100%;
      height: 100%;
      max-width: 816px;
      width: calc(100vw - 432px);
      padding: 32px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-column-gap: 24px;
         -moz-column-gap: 24px;
              column-gap: 24px;
      background: var(--white);
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-10px);
          -ms-transform: translateX(-10px);
              transform: translateX(-10px);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .catalog-drop .sub-list-wrap.lv-1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100vh;
        background-color: var(--stroke-color); }
      .catalog-drop .sub-list-wrap.lv-1::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -1px;
        width: calc(100% + 1px);
        height: 100vh;
        background: var(--white-color); } }
  @media (max-width: 991.98px) {
    .catalog-drop .sub-list-wrap.lv-1 {
      position: fixed;
      z-index: 10000;
      top: 64px;
      width: 100%;
      height: calc(100% - 64px);
      left: 100%;
      background: var(--white-color);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; } }
  @media (min-width: 992px) {
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-column-gap: 24px;
         -moz-column-gap: 24px;
              column-gap: 24px;
      max-height: calc(100% - 260px);
      overflow-y: auto;
      overflow-x: hidden; } }
  @media (max-width: 991.98px) {
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      max-height: calc(100% - 64px); }
      .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item {
        padding: 16px;
        border-bottom: 1px solid var(--stroke-color); } }
  .catalog-drop .sub-list-wrap.lv-1 .accordion-open > a .icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  .catalog-drop .sub-list-wrap.lv-1 .sub-list {
    width: 100%; }
  @media (min-width: 992px) {
    .catalog-drop .sub-list-wrap.lv-1 .sub-list.lv-1 > .sub-item {
      width: calc(50% - 12px);
      -ms-flex-item-align: start;
          -ms-grid-row-align: start;
          align-self: start; } }
  .catalog-drop .sub-list-wrap.lv-1 a {
    padding: 0;
    border: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-drop .sub-list-wrap.lv-1 a:hover {
        color: var(--blue-main); } }
    .catalog-drop .sub-list-wrap.lv-1 a:focus {
      color: var(--blue-main); }
    .catalog-drop .sub-list-wrap.lv-1 a .icon-arrow {
      display: none; }
  .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--black-color);
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a .icon {
      display: none; }
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a::before {
      content: "";
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-item-align: start;
          align-self: flex-start;
      margin-top: 8px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-color);
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a:hover {
        color: var(--blue-main); }
        .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a:hover::before {
          background: var(--blue-main); } }
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a:focus {
      color: var(--blue-main); }
      .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item > a:focus::before {
        background: var(--blue-main); }
  @media (min-width: 992px) {
    .catalog-drop .sub-list-wrap.lv-1 > .sub-list > .sub-item:not(:last-child) {
      margin-bottom: 24px; } }
  .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 {
    padding-top: 12px;
    padding-left: 20px; }
    .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-list-btn {
      display: none; }
    .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item a {
      color: var(--secondary-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item a .icon {
        display: none; }
      @media (any-hover: hover) {
        .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item a:hover {
          color: var(--blue-main); } }
      .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item a:focus {
        color: var(--blue-main); }
      .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item a:not(:last-child) {
        margin-bottom: 8px; }
    .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-2 .sub-item:not(:last-child) {
      margin-bottom: 8px; }
  .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 {
    color: var(--secondary-color); }
    .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 .sub-item a {
      color: var(--secondary-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 .sub-item a .icon {
        display: none; }
      @media (any-hover: hover) {
        .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 .sub-item a:hover {
          color: var(--blue-main); } }
      .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 .sub-item a:focus {
        color: var(--blue-main); }
    .catalog-drop .sub-list-wrap.lv-1 .sub-list-wrap.lv-3 .sub-item:not(:last-child) {
      margin-bottom: 8px; }
  .catalog-drop .link-catalog-all {
    margin-top: auto;
    margin-bottom: 8px;
    padding: 16px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    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(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-drop .link-catalog-all:hover {
        color: var(--accent-color); } }
    .catalog-drop .link-catalog-all::before {
      content: "";
      display: block;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-color); }
  .catalog-drop .wrap-brands-menu {
    margin-top: auto; }
    @media (max-width: 991.98px) {
      .catalog-drop .wrap-brands-menu {
        display: none; } }
    .catalog-drop .wrap-brands-menu .section-block {
      padding: 32px 0 0; }
    .catalog-drop .wrap-brands-menu .container {
      padding: 0; }

.course-select .base-currency {
  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; }

@media (max-width: 991.98px) {
  .course-select.jq-selectbox {
    width: 100%; } }

.course-select.jq-selectbox.opened .jq-selectbox__select {
  color: var(--blue-main); }

.course-select.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg); }

.course-select.jq-selectbox.opened .jq-selectbox__trigger-arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M9 1L5 5L1 1" stroke="%232D7DD2" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }

.course-select.jq-selectbox .jq-selectbox__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  min-height: 24px;
  min-width: 104px;
  padding: 0 14px 0 0;
  background: var(--white);
  border: none;
  color: var(--black-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Ubuntu", sans-serif; }
  @media (any-hover: hover) {
    .course-select.jq-selectbox .jq-selectbox__select:hover {
      color: var(--blue-main); } }
  .course-select.jq-selectbox .jq-selectbox__select:focus {
    color: var(--blue-main); }
  @media (max-width: 991.98px) {
    .course-select.jq-selectbox .jq-selectbox__select {
      font-size: 14px;
      line-height: 20px; } }
  .course-select.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%;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 991.98px) {
      .course-select.jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
        font-size: 14px;
        line-height: 20px; } }

.course-select.jq-selectbox .jq-selectbox__trigger {
  width: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent; }

.course-select.jq-selectbox .jq-selectbox__trigger-arrow {
  margin-top: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M9 1L5 5L1 1" stroke="%23171614" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease; }

.course-select.jq-selectbox .jq-selectbox__dropdown {
  left: auto !important;
  right: 0 !important;
  min-width: 182px;
  top: calc(100% + 10px) !important;
  padding: 24px;
  border-radius: 8px;
  border: none;
  background: var(--white-color);
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.06), -6px -6px 10px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.06), -6px -6px 10px 0px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  font-family: "Ubuntu", sans-serif; }
  .course-select.jq-selectbox .jq-selectbox__dropdown ul, .course-select.jq-selectbox .jq-selectbox__dropdown li {
    list-style: none; }
  .course-select.jq-selectbox .jq-selectbox__dropdown li {
    padding: 0;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none; }
    .course-select.jq-selectbox .jq-selectbox__dropdown li:not(:last-child) {
      margin-bottom: 12px; }
    .course-select.jq-selectbox .jq-selectbox__dropdown li span {
      color: var(--grey-color);
      margin-right: 8px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    .course-select.jq-selectbox .jq-selectbox__dropdown li:focus, .course-select.jq-selectbox .jq-selectbox__dropdown li.sel {
      color: var(--blue-main); }
      .course-select.jq-selectbox .jq-selectbox__dropdown li:focus span, .course-select.jq-selectbox .jq-selectbox__dropdown li.sel span {
        color: var(--blue-main); }
    @media (any-hover: hover) {
      .course-select.jq-selectbox .jq-selectbox__dropdown li:not(.sel):hover {
        color: var(--blue-main); }
        .course-select.jq-selectbox .jq-selectbox__dropdown li:not(.sel):hover span {
          color: var(--blue-main); } }

.header-pages-nav {
  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;
  margin: 0 auto;
  gap: 4px 20px; }
  @media (max-width: 1199.98px) {
    .header-pages-nav {
      gap: 4px 16px; } }
  @media (max-width: 991.98px) {
    .header-pages-nav {
      -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;
      row-gap: 16px; } }
  .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; }
  .header-pages-nav .nav-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    text-align: center;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .header-pages-nav .nav-link:hover {
        color: var(--blue-main); } }
    .header-pages-nav .nav-link:focus {
      color: var(--blue-main); }
    .header-pages-nav .nav-link.special-offers {
      gap: 4px;
      color: var(--sale-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .header-pages-nav .nav-link.special-offers:hover .icon-wrapper, .header-pages-nav .nav-link.special-offers:focus .icon-wrapper {
          -webkit-animation: fireAnim 2s forwards linear;
                  animation: fireAnim 2s forwards linear;
          -webkit-transform-origin: 50% 80%;
              -ms-transform-origin: 50% 80%;
                  transform-origin: 50% 80%; } }
      .header-pages-nav .nav-link.special-offers .icon-wrapper {
        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-transform-origin: bottom center;
            -ms-transform-origin: bottom center;
                transform-origin: bottom center; }
    @media (pointer: fine) {
      .header-pages-nav .nav-link:hover.special-offers {
        background: white;
        color: #dc4b47; } }

@-webkit-keyframes fireAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg); }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg); }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg); }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg); }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes fireAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg); }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg); }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg); }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg); }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

#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: 4px;
    color: var(--black-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:has(.cellphones-dropdown.show) {
      color: var(--blue-main); }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:has(.cellphones-dropdown.show) .phone {
        color: var(--blue-main); }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:has(.cellphones-dropdown.show) .cellphone-main .ic {
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg); }
    @media (any-hover: hover) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:hover {
        color: var(--blue-main); }
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:hover .phone {
          color: var(--blue-main); }
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner:hover .cellphone-main .ic {
          -webkit-transform: rotate(-180deg);
              -ms-transform: rotate(-180deg);
                  transform: rotate(-180deg); } }
    @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: 16px;
    height: 16px;
    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; }
    @media (min-width: 1200px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
        pointer-events: none; } }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon.active {
      color: var(--blue-main); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
      width: 16px;
      height: 16px; }
  #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 .ic, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphone-main .ic {
    -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; }
    @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: 4px;
      width: 10px;
      height: 10px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #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); }
    #page-header .cellphones-dropdown-wrap .phone .sup,
    #page-header .cellphones-dropdown-wrap .phone .quote,
    #page-header .cellphones-dropdown-wrap .phone .nums {
      font-weight: 400; }
  #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: 293px;
    gap: 12px;
    padding: 24px;
    margin-top: 10px;
    border-radius: 8px;
    -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.06), -6px -6px 10px 0px rgba(0, 0, 0, 0.06);
            box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.06), -6px -6px 10px 0px rgba(0, 0, 0, 0.06);
    background: var(--white);
    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 .title {
      color: var(--black-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-transform: uppercase; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown .info-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .info-title .text {
        color: var(--secondary-color);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px; }
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown .info-title .text:not(:last-child) {
          margin-bottom: 4px; }
    #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;
      padding: 0;
      color: var(--theme-color-main);
      font-size: 16px;
      font-weight: 500;
      line-height: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (any-hover: hover) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:hover {
          color: var(--accent-color); } }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:not(:last-child) {
        margin-bottom: 8px; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone .sup,
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone .quote,
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone .nums {
        font-weight: 500; }

#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 {
  margin-left: auto; }
  #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: 4px; }
    @media (max-width: 991.98px) {
      #page-header .nav-languages-inline-wrap .nav-languages {
        gap: 8px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  #page-header .nav-languages-inline-wrap .nav-languages-item {
    text-transform: uppercase;
    text-decoration: none;
    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: 2px 6px;
    border-radius: 8px;
    color: var(--blue-main);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      #page-header .nav-languages-inline-wrap .nav-languages-item {
        width: calc(50% - 4px);
        min-height: 24px; } }
  @media (any-hover: hover) {
    #page-header .nav-languages-inline-wrap .nav-languages-link:hover {
      color: var(--accent-color); } }
  #page-header .nav-languages-inline-wrap .nav-languages-active {
    color: var(--secondary-color);
    cursor: default;
    background: var(--main-50); }

#page-footer {
  background: var(--blue-main);
  color: var(--white-color); }
  #page-footer.checkout-footer {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid var(--stroke-color);
    background: var(--white-color);
    color: var(--secondary-color); }
    #page-footer.checkout-footer .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-footer.checkout-footer .copyright {
      color: var(--secondary-color); }
    #page-footer.checkout-footer .fenix-copyright {
      color: var(--secondary-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      #page-footer.checkout-footer .fenix-copyright:hover {
        color: var(--blue-main); }
      @media (any-hover: hover) {
        #page-footer.checkout-footer .fenix-copyright:hover {
          color: var(--blue-main); } }
      #page-footer.checkout-footer .fenix-copyright svg path {
        fill: var(--secondary-color); }
  #page-footer .footer-top {
    padding-top: 56px;
    padding-bottom: 56px; }
    @media (max-width: 991.98px) {
      #page-footer .footer-top {
        padding-top: 32px;
        padding-bottom: 32px; } }
  #page-footer .footer-logo-mobile {
    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;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    #page-footer .footer-logo-mobile img {
      max-width: 240px; }
    @media (min-width: 992px) {
      #page-footer .footer-logo-mobile {
        display: none; } }
  @media (max-width: 991.98px) {
    #page-footer .footer-logo-desktop {
      display: none; } }
  #page-footer .footer-logo-desktop:not(:last-child) {
    margin-bottom: 20px; }
  #page-footer .footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 72px; }
    @media (max-width: 991.98px) {
      #page-footer .footer-row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 28px; } }
  #page-footer .footer-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-footer .footer-col {
        width: calc(50% - 12px);
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; } }
    @media (max-width: 767.98px) {
      #page-footer .footer-col {
        width: 100%; } }
    #page-footer .footer-col:nth-child(3n + 1) {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
    #page-footer .footer-col:nth-child(3n + 2) {
      width: 320px; }
      @media (max-width: 991.98px) {
        #page-footer .footer-col:nth-child(3n + 2) {
          width: 100%; } }
    #page-footer .footer-col:nth-child(3n + 3) {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 320px; }
      @media (max-width: 991.98px) {
        #page-footer .footer-col:nth-child(3n + 3) {
          width: 100%; } }
    #page-footer .footer-col .btn-default:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        #page-footer .footer-col .btn-default:not(:last-child) {
          margin-bottom: 16px; } }
  #page-footer .footer-nav-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase; }
    #page-footer .footer-nav-title .icon {
      margin-left: auto;
      width: 14px;
      height: 14px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (min-width: 992px) {
        #page-footer .footer-nav-title .icon {
          display: none; } }
    #page-footer .footer-nav-title:not(:last-child) {
      margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      #page-footer .footer-nav-title {
        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;
        width: 100%;
        font-size: 24px;
        line-height: 28px; }
        #page-footer .footer-nav-title[js-accordion-title]:not(:last-child) {
          margin-bottom: 0; } }
  #page-footer .footer-bottom {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
    @media (max-width: 991.98px) {
      #page-footer .footer-bottom {
        padding-top: 16px;
        padding-bottom: 16px; } }
    #page-footer .footer-bottom > .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;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 12px 4px; }
      @media (max-width: 991.98px) {
        #page-footer .footer-bottom > .container {
          -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; } }
  #page-footer .socials-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767.98px) {
      #page-footer .socials-wrap {
        width: 100%; } }
    #page-footer .socials-wrap:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        #page-footer .socials-wrap:not(:last-child) {
          margin-bottom: 16px; } }
    #page-footer .socials-wrap nav {
      width: 100%;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 16px; }
    #page-footer .socials-wrap a {
      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;
      padding: 10px 24px;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
      #page-footer .socials-wrap a img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 24px;
        height: 24px;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
      @media (any-hover: hover) {
        #page-footer .socials-wrap a:hover {
          background: var(--accent-color); } }
      #page-footer .socials-wrap a:focus {
        background: var(--accent-color); }
  #page-footer .payments-list {
    -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;
    gap: 12px; }
    @media (min-width: 992px) {
      #page-footer .payments-list {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); } }
    @media (max-width: 991.98px) {
      #page-footer .payments-list {
        width: 100%; } }
    #page-footer .payments-list img {
      height: 24px; }
      #page-footer .payments-list img:first-child {
        height: 18px; }
  #page-footer .copyright {
    color: var(--main-100);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      #page-footer .copyright {
        font-size: 12px;
        line-height: 16px; } }
  #page-footer .fenix-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    color: var(--main-100);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease; }
    @media (max-width: 991.98px) {
      #page-footer .fenix-copyright {
        font-size: 12px;
        line-height: 16px; } }
    #page-footer .fenix-copyright a {
      color: var(--main-100);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        #page-footer .fenix-copyright a:hover {
          color: var(--accent-color); } }
      #page-footer .fenix-copyright a:focus {
        color: var(--accent-color); }
    #page-footer .fenix-copyright svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: 0.5s ease;
      transition: 0.5s ease; }
      #page-footer .fenix-copyright svg path {
        fill: var(--white-color); }
    #page-footer .fenix-copyright:focus {
      text-shadow: 0 0 0; }
      #page-footer .fenix-copyright:focus svg {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); }
    @media (pointer: fine) {
      #page-footer .fenix-copyright:hover {
        text-shadow: 0 0 0; }
        #page-footer .fenix-copyright:hover svg {
          -webkit-transform: scale(1.1);
              -ms-transform: scale(1.1);
                  transform: scale(1.1); } }

.footer-nav-wrap.accordion-open .footer-nav-title .icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg); }

.footer-nav.footer-nav-categories .nav-item:first-child .nav-link {
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

.footer-nav.footer-nav-categories .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 8px;
  padding: 16px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (max-width: 991.98px) {
    .footer-nav.footer-nav-categories .nav-link {
      padding: 12px 0;
      font-size: 16px;
      line-height: 1.5; } }
  .footer-nav.footer-nav-categories .nav-link::before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  @media (any-hover: hover) {
    .footer-nav.footer-nav-categories .nav-link:hover {
      color: var(--accent-color);
      margin-left: -16px; }
      .footer-nav.footer-nav-categories .nav-link:hover::before {
        opacity: 0; } }
  .footer-nav.footer-nav-categories .nav-link:focus {
    color: var(--accent-color); }

.footer-nav.footer-nav-pages {
  padding: 8px 0; }
  @media (min-width: 992px) {
    .footer-nav.footer-nav-pages {
      border-top: 1px solid rgba(255, 255, 255, 0.1); } }
  @media (max-width: 991.98px) {
    .footer-nav.footer-nav-pages {
      display: none;
      padding: 12px 0 0; } }
  .footer-nav.footer-nav-pages .nav-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: 8px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (min-width: 992px) {
      .footer-nav.footer-nav-pages .nav-link::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        -webkit-transform: translateY(-50%) translateX(-16px);
            -ms-transform: translateY(-50%) translateX(-16px);
                transform: translateY(-50%) translateX(-16px);
        background: var(--accent-color);
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; } }
    @media (max-width: 991.98px) {
      .footer-nav.footer-nav-pages .nav-link {
        padding: 6px 0;
        font-size: 14px; } }
    @media (any-hover: hover) {
      .footer-nav.footer-nav-pages .nav-link:hover {
        padding-left: 16px;
        color: var(--accent-color); }
        .footer-nav.footer-nav-pages .nav-link:hover::before {
          opacity: 1;
          -webkit-transform: translateY(-50%) translateX(0);
              -ms-transform: translateY(-50%) translateX(0);
                  transform: translateY(-50%) translateX(0); } }
    .footer-nav.footer-nav-pages .nav-link:focus {
      color: var(--accent-color); }

.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .footer-contacts:not(:last-child) {
    margin-bottom: 20px; }
  .footer-contacts .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: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .footer-contacts .contacts-info:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .footer-contacts .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; }
  .footer-contacts .info-icon {
    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: var(--accent-color);
    color: var(--white-color); }
    .footer-contacts .info-icon .ic {
      width: 20px;
      height: 20px; }
  .footer-contacts .info-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .footer-contacts .info-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; }
  .footer-contacts .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 8px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    .footer-contacts .info-content span {
      max-width: 292px; }
    .footer-contacts .info-content a {
      color: var(--white-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .footer-contacts .info-content a .sup,
      .footer-contacts .info-content a .quote,
      .footer-contacts .info-content a .nums {
        font-weight: 400; }
      @media (any-hover: hover) {
        .footer-contacts .info-content a:hover {
          text-decoration: none;
          color: var(--theme-color-second); } }
      .footer-contacts .info-content a:focus {
        text-decoration: none;
        color: var(--theme-color-second); }

.form-style-box {
  width: 100%;
  background: var(--main-50);
  padding: 32px; }
  @media (max-width: 1199.98px) {
    .form-style-box {
      padding: 24px; } }
  @media (max-width: 991.98px) {
    .form-style-box {
      padding: 20px 16px; } }

.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(--black-color) !important;
  -webkit-text-fill-color: var(--black-color);
  -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 {
  color: var(--black-color);
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .form-style .form-title {
      font-size: 20px;
      line-height: 1.2; } }
  .form-style .form-title:not(:last-child) {
    margin-bottom: 8px; }

.form-style .form-note {
  color: var(--secondary-color);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; }
  .form-style .form-note:not(:last-child) {
    margin-bottom: 20px; }

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

.form-style .form-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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .form-style .form-wrap:not(:last-child) {
    margin-bottom: 16px; }
  @media (min-width: 992px) {
    .form-style .form-wrap .form-group:nth-child(1),
    .form-style .form-wrap .form-group:nth-child(2) {
      width: calc(50% - 8px); } }

.form-style .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 0; }

.form-style .form-group:not(:last-child),
.form-style .form-row-group:not(:last-child) {
  margin-bottom: 16px; }

.form-style .form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px; }

.form-style .required {
  color: red;
  font-weight: normal;
  margin-left: 2px; }

.form-style .form-control:not(.jq-selectbox) {
  min-height: 48px;
  padding: 4px 15px;
  background: var(--white-color);
  border: 1px solid var(--main-200);
  border-radius: 12px;
  color: var(--black-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  .form-style .form-control:not(.jq-selectbox):focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: var(--accent-color); }
  .form-style .form-control:not(.jq-selectbox).form-control-error {
    border-color: red; }
  .form-style .form-control:not(.jq-selectbox)::-webkit-input-placeholder {
    color: var(--grey-color); }
  .form-style .form-control:not(.jq-selectbox)::-moz-placeholder {
    color: var(--grey-color); }
  .form-style .form-control:not(.jq-selectbox):-ms-input-placeholder {
    color: var(--grey-color); }
  .form-style .form-control:not(.jq-selectbox)::-ms-input-placeholder {
    color: var(--grey-color); }
  .form-style .form-control:not(.jq-selectbox)::placeholder {
    color: var(--grey-color); }

.form-style textarea.form-control {
  height: 88px;
  resize: none;
  padding-top: 12px !important;
  padding-bottom: 16px !important; }
  @media (max-width: 991.98px) {
    .form-style textarea.form-control::-webkit-input-placeholder {
      font-size: 14px;
      line-height: 20px; }
    .form-style textarea.form-control::-moz-placeholder {
      font-size: 14px;
      line-height: 20px; }
    .form-style textarea.form-control:-ms-input-placeholder {
      font-size: 14px;
      line-height: 20px; }
    .form-style textarea.form-control::-ms-input-placeholder {
      font-size: 14px;
      line-height: 20px; }
    .form-style textarea.form-control::placeholder {
      font-size: 14px;
      line-height: 20px; } }

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

.form-style .btn-submit {
  width: 100%; }

.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; }
  .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);
    border: 1px solid var(--main-200);
    border-radius: 12px;
    font-family: "Ubuntu", sans-serif;
    color: var(--black-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .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%; }
  .form-style .jq-selectbox.form-control .jq-selectbox__dropdown {
    top: calc(100% + 2px) !important;
    border: 1px solid var(--main-200);
    border-radius: 12px;
    overflow: hidden;
    padding: 6px;
    -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);
    font-family: "Ubuntu", sans-serif; }
    .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul, .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li {
      list-style: none; }
    .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li {
      border-radius: 4px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: var(--secondary-color); }
      .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li:focus, .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li.sel {
        color: var(--blue-main); }
      @media (any-hover: hover) {
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li:not(.sel):hover {
          color: var(--blue-main); } }
      .form-style .jq-selectbox.form-control .jq-selectbox__dropdown li:not(.sel):focus {
        color: var(--blue-main); }

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

.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; }

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

.fancybox-container.form-popup .fancybox-content {
  padding: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px; }
  @media (max-width: 991.98px) {
    .fancybox-container.form-popup .fancybox-content {
      padding: 24px;
      border-radius: 12px; } }

.fancybox-container.form-popup .form-style-box {
  padding: 0;
  background: var(--white-color); }

.fancybox-container.form-popup .fancybox-slide {
  padding: 20px; }

.fancybox-close-small {
  opacity: 1 !important; }
  .fancybox-close-small svg {
    display: none; }
  .fancybox-close-small::before, .fancybox-close-small::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 0.5em;
    background-color: var(--grey-color); }
  .fancybox-close-small::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg); }
  .fancybox-close-small::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg); }
  @media (any-hover: hover) {
    .fancybox-close-small:hover::after, .fancybox-close-small:hover::before, .fancybox-close-small:focus::after, .fancybox-close-small:focus::before {
      background: var(--accent-color); } }

.fancybox-slide {
  padding: 16px; }
  .fancybox-slide .modal-close::before, .fancybox-slide .modal-close::after {
    background-color: var(--grey-color); }

.fancybox-bg {
  background: rgba(45, 125, 210, 0.4); }

.auth-form-container {
  max-width: 400px;
  margin: 100px auto; }

.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: 10px;
    right: 10px;
    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: green; }

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; }

@media (max-width: 991.98px) {
  body:not(.search-modal-opened) #search-modal {
    -webkit-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%); } }

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

.page-search {
  background: var(--bg); }

@media (min-width: 992px) {
  .category-search-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 12px 0 0 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); } }

@media (max-width: 991.98px) {
  .category-search-aside:not(:last-child) {
    margin-bottom: 16px; } }

#search-modal {
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 10000;
  top: calc(100% + 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  background: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (min-width: 992px) {
    #search-modal .search-modal-header,
    #search-modal .search-form {
      display: none; } }
  @media (max-width: 991.98px) {
    #search-modal {
      position: fixed;
      z-index: 9999999999;
      top: 50%;
      width: 100%;
      min-width: 100%;
      height: 100dvh;
      padding: 0;
      border-radius: 0;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      #search-modal .search-form {
        display: block !important; } }
  #search-modal .search-results {
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @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: var(--main-100); }
      #search-modal .search-results::-webkit-scrollbar-track-piece,
      #search-modal .search-results *::-webkit-scrollbar-track-piece {
        background: var(--main-100); }
      #search-modal .search-results::-webkit-scrollbar-thumb,
      #search-modal .search-results *::-webkit-scrollbar-thumb {
        background: var(--theme-color-main);
        border-radius: 99px; }
      #search-modal .search-results::-webkit-scrollbar-corner,
      #search-modal .search-results *::-webkit-scrollbar-corner {
        background: var(--main-100); } }
    @media (max-width: 991.98px) {
      #search-modal .search-results {
        padding: 20px 16px; } }
  #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-wrap {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--stroke, #F0F0F0);
    background: var(--white); }
  #search-modal .result-empty,
  #search-modal .result-start-search {
    min-height: 100%; }
  #search-modal .result-message {
    font-size: 20px;
    line-height: 1.2;
    color: var(--black-color); }
    #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;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--main-50);
      color: var(--blue-main); }
      #search-modal .result-message > .icon .ic {
        width: 40px;
        height: 40px; }
    #search-modal .result-message .text-blue {
      color: var(--blue-main);
      font-weight: 400; }
    #search-modal .result-message .term-target {
      font-weight: bold; }
    #search-modal .result-message .description {
      text-align: center;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2;
      text-transform: uppercase; }
      #search-modal .result-message .description span {
        margin-top: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: auto;
        margin-right: auto;
        max-width: 420px;
        color: var(--secondary-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        text-transform: none; }
  #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; }
  #search-modal .product-search-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--black-color); }
    @media (max-width: 991.98px) {
      #search-modal .product-search-card {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    #search-modal .product-search-card:not(:last-child) {
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--stroke-color); }
    #search-modal .product-search-card .img {
      width: 72px;
      height: 72px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 991.98px) {
        #search-modal .product-search-card .img {
          width: 80px;
          height: 80px; } }
      #search-modal .product-search-card .img img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    #search-modal .product-search-card .wrap {
      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; }
      @media (max-width: 991.98px) {
        #search-modal .product-search-card .wrap {
          width: calc(100% - 92px); } }
    #search-modal .product-search-card .title {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5; }
      @media (max-width: 991.98px) {
        #search-modal .product-search-card .title {
          font-size: 14px;
          line-height: 20px; } }
      #search-modal .product-search-card .title span {
        overflow: hidden;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
        text-overflow: ellipsis; }
      #search-modal .product-search-card .title mark {
        background: transparent;
        color: var(--blue-main); }
    #search-modal .product-search-card .sku {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: var(--grey-color); }
      @media (max-width: 991.98px) {
        #search-modal .product-search-card .sku {
          font-size: 12px;
          line-height: 16px; } }
      #search-modal .product-search-card .sku b {
        font-weight: 400;
        color: var(--black-color); }
    #search-modal .product-search-card .price-wrap {
      margin-left: auto;
      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 .more-load {
    width: 100%;
    margin-top: 16px; }
    #search-modal .more-load .btn {
      width: 100%; }
  #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;
    min-height: 64px;
    padding: 12px 16px;
    color: var(--white-color);
    background: var(--blue-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      #search-modal .search-modal-header {
        display: none; } }
  #search-modal .close-modal {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5 5.00002L15.6452 15.6452" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 15.6452L15.6452 5.00001" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-color: rgba(255, 255, 255, 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 .result-start-search .result-message {
    text-align: center;
    text-transform: uppercase; }
    #search-modal .result-start-search .result-message span {
      margin-top: 12px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: auto;
      margin-right: auto;
      max-width: 420px;
      color: var(--secondary-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-transform: none; }
  #search-modal .result-empty .result-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    row-gap: 12px;
    font-size: 20px;
    line-height: 1.2;
    color: var(--black-color); }

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

.search-form {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 12px; }
  @media (max-width: 991.98px) {
    .search-form {
      border-radius: 0;
      margin: 20px 16px 0;
      width: auto; } }
  .search-form input {
    border: 1px solid var(--white-color);
    border-radius: 12px;
    height: 48px;
    width: 100%;
    padding-left: 20px;
    padding-right: 60px;
    outline: none;
    caret-color: var(--black-color); }
    .search-form input:focus {
      border-color: var(--accent-color); }
    @media (max-width: 991.98px) {
      .search-form input {
        padding-left: 16px;
        padding-right: 40px;
        border-color: var(--blue-main);
        height: 44px; } }
    .search-form input::-webkit-input-placeholder {
      color: var(--grey-color); }
    .search-form input::-moz-placeholder {
      color: var(--grey-color); }
    .search-form input:-ms-input-placeholder {
      color: var(--grey-color); }
    .search-form input::-ms-input-placeholder {
      color: var(--grey-color); }
    .search-form input::placeholder {
      color: var(--grey-color); }
  .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: 60px;
    height: 100%;
    border: none;
    outline: none;
    background: none; }
    @media (max-width: 991.98px) {
      .search-form .btn-search {
        height: 42px;
        width: 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); }

.search-not-found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 16px;
  min-height: 360px;
  padding: 56px 32px;
  border-radius: 16px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .search-not-found {
      min-height: 308px;
      padding: 40px 20px; } }
  .search-not-found .not-found-icon {
    width: 96px;
    height: 96px;
    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%;
    background: var(--main-50);
    color: var(--blue-main); }
    .search-not-found .not-found-icon .icon {
      width: 48px;
      height: 48px; }
    @media (max-width: 991.98px) {
      .search-not-found .not-found-icon {
        width: 64px;
        height: 64px; }
        .search-not-found .not-found-icon .icon {
          width: 28px;
          height: 28px; } }
  .search-not-found .search-title {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase; }
    .search-not-found .search-title:not(:last-child) {
      margin-bottom: 0; }
    @media (max-width: 991.98px) {
      .search-not-found .search-title {
        font-size: 20px;
        line-height: 24px; } }
  .search-not-found .text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .search-not-found .text {
        font-size: 14px;
        line-height: 20px; } }

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

#page-breadcrumbs {
  --gap: 12px;
  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; }
  @media (max-width: 991.98px) {
    #page-breadcrumbs {
      gap: 8px; } }
  #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;
    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;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color); }
    @media (max-width: 991.98px) {
      #page-breadcrumbs .breadcrumbs-nav-item {
        font-size: 12px;
        line-height: 16px; } }
    #page-breadcrumbs .breadcrumbs-nav-item:not(:last-child):after {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      background-color: var(--accent-color); }
  #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(--accent-color); }
    @media (pointer: fine) {
      #page-breadcrumbs a.breadcrumbs-nav-item:hover span {
        color: var(--accent-color); } }
  #page-breadcrumbs .breadcrumbs-nav-item-last {
    cursor: default;
    color: var(--grey-color); }

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

.i-default {
  display: block; }

.i-active {
  display: none; }

.favorites-toggle.choosed .i-default {
  display: none; }

.favorites-toggle.choosed .i-active {
  display: block; }

.products-carousel-tabs-nav.swiper {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important; }
  @media (max-width: 992px) {
    .products-carousel-tabs-nav.swiper {
      padding: 0 16px !important; } }

.btn,
.btn:focus,
.btn:hover,
button {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none; }

button[disabled] {
  pointer-events: none;
  opacity: 0.8;
  color: var(--grey-color);
  background: var(--bg); }

a:target,
a:active,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  -webkit-filter: none;
          filter: none;
  cursor: pointer; }

.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;
  background-color: transparent;
  border: 1px solid;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn .btn-text {
    vertical-align: middle; }

.btn {
  min-height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  border-radius: 12px; }
  @media (max-width: 991.98px) {
    .btn {
      font-size: 14px; } }
  .btn.btn-small {
    gap: 6px;
    padding: 6px 20px;
    min-height: 36px;
    font-size: 14px; }
  .btn.btn-big {
    min-height: 56px;
    font-size: 18px; }

.btn-default {
  background: var(--accent-color);
  color: var(--white-color);
  border: 1px solid var(--accent-color); }
  .btn-default::before {
    content: "";
    -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: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-color);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease; }
  @media (pointer: fine) {
    .btn-default:hover {
      background: var(--main-50);
      color: var(--black-color);
      border-color: var(--main-50); }
      .btn-default:hover::before {
        background: var(--accent-color); } }
  .btn-default:focus {
    background: var(--main-50);
    color: var(--black-color);
    border-color: var(--main-50); }
    .btn-default:focus::before {
      background: var(--accent-color); }
  @media (max-width: 767.98px) {
    .btn-default:hover {
      background: var(--main-50);
      color: var(--black-color);
      border-color: var(--main-50); }
      .btn-default:hover::before {
        background: var(--accent-color); } }

.btn-default-transparent {
  background: var(--main-50);
  color: var(--black-color);
  border: 1px solid var(--main-50); }
  .btn-default-transparent:hover {
    color: var(--black-color); }
  .btn-default-transparent::before {
    content: "";
    -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: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease; }
    @media (max-width: 991.98px) {
      .btn-default-transparent::before {
        width: 6px;
        height: 6px; } }
  @media (pointer: fine) {
    .btn-default-transparent:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
      color: var(--white-color); }
      .btn-default-transparent:hover::before {
        background: var(--white-color); } }
  .btn-default-transparent:focus {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color); }
    .btn-default-transparent:focus::before {
      background: var(--white-color); }
  @media (max-width: 575.98px) {
    .btn-default-transparent {
      width: 100%; } }

.btn-blue {
  background: var(--blue-main);
  color: var(--white-color);
  border: 1px solid var(--blue-main); }
  .btn-blue:hover {
    color: var(--white-color); }
  @media (pointer: fine) {
    .btn-blue:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
      color: var(--white-color); }
      .btn-blue:hover::before {
        background: var(--white-color); } }
  .btn-blue:focus {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color); }
    .btn-blue:focus::before {
      background: var(--white-color); }

.btn-grey-border {
  background: var(--white-color);
  color: var(--black-color);
  border: 1px solid var(--stroke-color); }
  .btn-grey-border:hover {
    color: var(--black-color); }
  @media (pointer: fine) {
    .btn-grey-border:hover {
      background: var(--blue-main);
      border-color: var(--blue-main);
      color: var(--white-color); }
      .btn-grey-border:hover::before {
        background: var(--white-color); } }
  .btn-grey-border:focus {
    background: var(--blue-main);
    border-color: var(--blue-main);
    color: var(--white-color); }
    .btn-grey-border:focus::before {
      background: var(--white-color); }

.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); }
  .btn-link:hover {
    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: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px; }
  #messageDialog .popup-content {
    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; }
  #messageDialog .popup-icon {
    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: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--main-50); }
    #messageDialog .popup-icon:not(:last-child) {
      margin-bottom: 20px; }
    #messageDialog .popup-icon::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 40 40" fill="none"><path d="M31.1673 12C30.5007 11.3333 29.5007 11.3333 28.834 12L16.334 24.5L11.1673 19.3333C10.5007 18.6667 9.50065 18.6667 8.83398 19.3333C8.16732 20 8.16732 21 8.83398 21.6667L15.1673 28C15.5007 28.3333 15.834 28.5 16.334 28.5C16.834 28.5 17.1673 28.3333 17.5007 28L31.1673 14.3333C31.834 13.6667 31.834 12.6667 31.1673 12Z" fill="%232D7DD2"/></svg>'); }
    @media (max-width: 991.98px) {
      #messageDialog .popup-icon {
        width: 64px;
        height: 64px; }
        #messageDialog .popup-icon::before {
          width: 32px;
          height: 32px; } }
  #messageDialog .popup-title {
    color: var(--black-color);
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      #messageDialog .popup-title {
        font-size: 20px;
        line-height: 1.2; } }
    #messageDialog .popup-title:not(:last-child) {
      margin-bottom: 8px; }
  #messageDialog .popup-message {
    text-align: center;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }

.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 16px;
  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: 20px; }
  .pagination:not(:first-child) {
    margin-top: 20px; }
  .pagination:not(:last-child) {
    margin-bottom: 20px; }
  .pagination .load-more {
    width: 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; }
  .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: 4px; }
    @media (max-width: 991.98px) {
      .pagination ul {
        gap: 2px; } }
  .pagination li {
    border-radius: 50%; }
    .pagination li a {
      width: 48px;
      height: 48px;
      -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: 50%;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--black-color);
      background: var(--white-color);
      border: none;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (any-hover: hover) {
        .pagination li a:hover {
          text-decoration: none;
          background: var(--blue-main);
          color: var(--white-color); }
          .pagination li a:hover .ic {
            color: var(--white-color); } }
      .pagination li a:focus {
        text-decoration: none;
        background: var(--blue-main);
        color: var(--white-color); }
        .pagination li a:focus .ic {
          color: var(--white-color); }
      @media (max-width: 991.98px) {
        .pagination li a {
          width: 40px;
          height: 40px;
          font-size: 14px; } }
    .pagination li.prev a,
    .pagination li.next a {
      background: transparent; }
      .pagination li.prev a .ic,
      .pagination li.next a .ic {
        color: var(--blue-main); }
      @media (any-hover: hover) {
        .pagination li.prev a:hover,
        .pagination li.next a:hover {
          text-decoration: none;
          background: var(--blue-main);
          color: var(--white-color); }
          .pagination li.prev a:hover .ic,
          .pagination li.next a:hover .ic {
            color: var(--white-color); } }
      .pagination li.prev a:focus,
      .pagination li.next a:focus {
        text-decoration: none;
        background: var(--blue-main);
        color: var(--white-color); }
        .pagination li.prev a:focus .ic,
        .pagination li.next a:focus .ic {
          color: var(--white-color); }
    .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(--blue-main);
      color: var(--white-color); }

@-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; } }

html::-webkit-scrollbar {
  width: 8px; }

@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: var(--main-100); }
  .thin-scrollbar::-webkit-scrollbar-track-piece,
  .thin-scrollbar *::-webkit-scrollbar-track-piece {
    background: var(--main-100); }
  .thin-scrollbar::-webkit-scrollbar-thumb,
  .thin-scrollbar *::-webkit-scrollbar-thumb {
    background: var(--theme-color-main);
    border-radius: 99px; }
  .thin-scrollbar::-webkit-scrollbar-corner,
  .thin-scrollbar *::-webkit-scrollbar-corner {
    background: var(--main-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 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase; }
  @media (max-width: 1199.98px) {
    .section-title {
      font-size: 32px; } }
  @media (max-width: 991.98px) {
    .section-title {
      font-size: 26px;
      line-height: 32px; } }
  @media (max-width: 575.98px) {
    .section-title br {
      content: "A";
      position: relative;
      display: inline-block;
      width: 0.3em; } }
  .section-title:not(:last-child) {
    margin-bottom: 28px; }
    @media (max-width: 991.98px) {
      .section-title:not(:last-child) {
        margin-bottom: 16px; } }
  .section-title .text-decorated {
    color: var(--blue-main); }

.page-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  text-transform: uppercase; }
  @media (max-width: 1199.98px) {
    .page-title {
      line-height: 1.2;
      font-size: 32px; } }
  @media (max-width: 991.98px) {
    .page-title {
      font-size: 26px;
      line-height: 32px; } }
  @media (max-width: 575.98px) {
    .page-title br {
      content: "A";
      position: relative;
      display: inline-block;
      width: 0.3em; } }
  .page-title:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .page-title:not(:last-child) {
        margin-bottom: 16px; } }
  .page-title .text-decorated {
    color: var(--blue-main); }

.section-text {
  color: var(--secondary-color); }

.decor-title {
  position: relative;
  padding-left: 32px; }
  @media (max-width: 991.98px) {
    .decor-title {
      padding-left: 22px; } }
  .decor-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--accent-color); }
    @media (max-width: 991.98px) {
      .decor-title::before {
        width: 10px;
        height: 10px; } }

.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: var(--main-100); }
    .text-scroll::-webkit-scrollbar-track-piece,
    .text-scroll *::-webkit-scrollbar-track-piece {
      background: var(--main-100); }
    .text-scroll::-webkit-scrollbar-thumb,
    .text-scroll *::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 99px; }
    .text-scroll::-webkit-scrollbar-corner,
    .text-scroll *::-webkit-scrollbar-corner {
      background: var(--main-100); } }

.text-formatted {
  --br: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Ubuntu", sans-serif; }
  .text-formatted:after {
    content: "";
    display: block;
    clear: both; }
  @media (max-width: 991.98px) {
    .text-formatted {
      font-size: 14px;
      line-height: 20px; } }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
    margin-top: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
    .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):not(:last-child) {
      margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
        margin-top: 20px; }
        .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):not(:last-child) {
          margin-bottom: 12px; } }
    .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: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .text-formatted h1, .text-formatted .h1 {
        font-size: 24px; } }
  .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
    font-size: 28px; }
    @media (max-width: 991.98px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 20px; } }
  .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
    font-size: 24px; }
    @media (max-width: 991.98px) {
      .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
        font-size: 18px; } }
  .text-formatted h4, .text-formatted .h4 {
    font-size: 20px; }
    @media (max-width: 991.98px) {
      .text-formatted h4, .text-formatted .h4 {
        font-size: 16px; } }
  .text-formatted h5, .text-formatted .h5 {
    font-size: 18px; }
    @media (max-width: 991.98px) {
      .text-formatted h5, .text-formatted .h5 {
        font-size: 16px; } }
  .text-formatted a,
  .text-formatted [js-href] {
    position: relative;
    line-height: normal;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: underline;
    color: var(--blue-main); }
    @media (pointer: fine) {
      .text-formatted a:hover,
      .text-formatted [js-href]:hover {
        text-decoration: none;
        color: var(--accent-color); } }
  .text-formatted ul:not(:last-child), .text-formatted ol:not(:last-child), .text-formatted blockquote:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .text-formatted ul:not(:last-child), .text-formatted ol:not(:last-child), .text-formatted blockquote:not(:last-child) {
        margin-bottom: 20px; } }
  .text-formatted p {
    position: relative; }
    .text-formatted p:not(:last-child) {
      margin-bottom: 8px; }
    .text-formatted p:empty {
      display: none; }
  .text-formatted hr {
    border: none;
    border-bottom: 2px solid var(--stroke-color);
    opacity: 1;
    margin: 1.5em 0; }
  .text-formatted blockquote {
    display: block;
    clear: both;
    border-left: 5px solid;
    padding: 5px 0 5px 1em;
    font-size: 1.5em;
    margin: 1.5em 0; }
    .text-formatted blockquote > *:last-child {
      margin-bottom: 0; }
  .text-formatted img {
    max-width: 100%;
    height: auto !important;
    margin: 3.1em auto 2.9em;
    border-radius: var(--br);
    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: #555555;
      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; }
      .text-formatted ul:not(.list) li:not(:last-child),
      .text-formatted ol:not(.list) li:not(:last-child) {
        margin-bottom: 8px; }
    .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, ".") ".";
        display: inline-block;
        min-width: 0.75em;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        font-size: 1em;
        margin-right: 0.4em; }
    .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: 14px; }
    .text-formatted ul:not(.list) > li:before {
      position: absolute;
      left: 0;
      content: "●";
      display: inline-block;
      min-width: 6px;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease;
      margin-right: 8px;
      font-size: 14px;
      line-height: 24px;
      color: var(--accent-color); }
      @media (max-width: 991.98px) {
        .text-formatted ul:not(.list) > li:before {
          line-height: 20px; } }
  .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 table {
    margin: 0; }
  .text-formatted table {
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    margin: 1.2em 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .text-formatted table {
        font-size: 14px;
        line-height: 20px; } }
    .text-formatted table thead tr {
      background: var(--stroke-color);
      color: var(--white-color); }
    .text-formatted table tbody:first-child tr:nth-child(odd),
    .text-formatted table thead + tbody tr:nth-child(even) {
      background: var(--bg); }
    .text-formatted table th,
    .text-formatted table td {
      padding: 12px 16px;
      text-align: left;
      border: none; }
      @media (max-width: 767.98px) {
        .text-formatted table th,
        .text-formatted table td {
          padding: 0; } }
    @media (min-width: 768px) {
      .text-formatted table td {
        width: 50%; } }
    @media (max-width: 767.98px) {
      .text-formatted table td {
        width: 100%; } }
    .text-formatted table td:first-child {
      color: var(--secondary-color); }
    .text-formatted table thead td,
    .text-formatted table th {
      text-align: center;
      font-weight: bold; }
    @media (max-width: 767.98px) {
      .text-formatted table tbody tr {
        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;
        padding: 8px 12px; }
        .text-formatted table tbody tr:nth-child(odd) {
          background: var(--bg); } }
    .text-formatted table tfoot td {
      font-weight: bold; }
    .text-formatted table [js-href],
    .text-formatted table a {
      color: var(--blue-main);
      text-decoration: none;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .text-formatted table [js-href]:hover,
        .text-formatted table a:hover {
          color: var(--accent-color); } }
  .text-formatted > *:last-child {
    margin-bottom: 0; }

.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; } }

.page-brands-list {
  position: relative;
  background: var(--bg); }
  .page-brands-list .brands-list {
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color);
    overflow: hidden; }
    .page-brands-list .brands-list .brand-group-letter {
      font-size: 40px;
      line-height: 40px;
      padding-bottom: 20px;
      margin-bottom: 24px;
      border-bottom: 1px solid lightgray; }
      @media (max-width: 576px) {
        .page-brands-list .brands-list .brand-group-letter {
          margin-bottom: 16px;
          padding-bottom: 16px;
          font-size: 32px;
          line-height: 32px; } }

.section-top-brands {
  margin: 40px 0; }
  .section-top-brands .btn-more {
    margin-top: 20px; }

.brands-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white-color);
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid var(--stroke-color); }
  @media (max-width: 991.98px) {
    .brands-search {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 16px; } }
  .brands-search .brands-alphabet-filter-widget,
  .brands-search .fast-search-brands {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    padding: 24px; }
    @media (min-width: 992px) {
      .brands-search .brands-alphabet-filter-widget:not(:last-child),
      .brands-search .fast-search-brands:not(:last-child) {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .brands-search .brands-alphabet-filter-widget,
      .brands-search .fast-search-brands {
        padding: 20px 16px;
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto; }
        .brands-search .brands-alphabet-filter-widget:not(:last-child),
        .brands-search .fast-search-brands:not(:last-child) {
          border-bottom: 1px solid var(--stroke-color); } }
  .brands-search .fast-search-title,
  .brands-search .brand-alphabet-filter-title {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .brands-search .fast-search-title,
      .brands-search .brand-alphabet-filter-title {
        font-size: 20px;
        line-height: 1.2; } }
    .brands-search .fast-search-title:not(:last-child),
    .brands-search .brand-alphabet-filter-title:not(:last-child) {
      margin-bottom: 16px; }
  .brands-search .popular-brands-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 991.98px) {
      .brands-search .popular-brands-wrap {
        margin: 0 -16px; } }
  .brands-search .popular-brands {
    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: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      .brands-search .popular-brands {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        overflow: auto;
        gap: 10px;
        font-size: 12px;
        line-height: 16px;
        padding: 0 16px;
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */ }
        .brands-search .popular-brands::-webkit-scrollbar {
          display: none; } }
    .brands-search .popular-brands .popular-title {
      color: var(--grey-color); }
    .brands-search .popular-brands .popular-item {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      color: var(--blue-main);
      cursor: pointer; }
      @media (any-hover: hover) {
        .brands-search .popular-brands .popular-item:hover {
          text-decoration-line: underline; } }
  .brands-search .form-style .form-group input {
    padding: 4px 40px 4px 15px; }
  .brands-search .form-style .form-group .icon {
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--blue-main); }
  .brands-search .numbers,
  .brands-search .cyrillic,
  .brands-search .latin {
    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;
    margin-bottom: 8px; }
    .brands-search .numbers:last-child,
    .brands-search .cyrillic:last-child,
    .brands-search .latin:last-child {
      margin-bottom: 0; }
    .brands-search .numbers .number-item,
    .brands-search .numbers .alphabet-item,
    .brands-search .cyrillic .number-item,
    .brands-search .cyrillic .alphabet-item,
    .brands-search .latin .number-item,
    .brands-search .latin .alphabet-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;
      width: 46px;
      height: 46px;
      border-radius: 100px;
      border: 1px solid var(--stroke-color);
      background-color: var(--white-color);
      color: var(--black-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      -webkit-transition: .3s ease;
      transition: .3s ease;
      cursor: pointer; }
      .brands-search .numbers .number-item:hover,
      .brands-search .numbers .alphabet-item:hover,
      .brands-search .cyrillic .number-item:hover,
      .brands-search .cyrillic .alphabet-item:hover,
      .brands-search .latin .number-item:hover,
      .brands-search .latin .alphabet-item:hover {
        border-color: var(--theme-color-main); }
      .brands-search .numbers .number-item.active,
      .brands-search .numbers .alphabet-item.active,
      .brands-search .cyrillic .number-item.active,
      .brands-search .cyrillic .alphabet-item.active,
      .brands-search .latin .number-item.active,
      .brands-search .latin .alphabet-item.active {
        background-color: var(--theme-color-main);
        border-color: var(--theme-color-main);
        color: var(--white-color); }

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

.brand-card {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: var(--white-color);
  -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
          box-shadow: 0 0 0 1px var(--stroke-color); }
  @media (max-width: 991.98px) {
    .brand-card {
      width: 33.333%; } }
  @media (max-width: 767.98px) {
    .brand-card {
      width: 50%; } }
  .brand-card .brand-image {
    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;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 20px 48px; }
    @media (max-width: 991.98px) {
      .brand-card .brand-image {
        padding: 12px 24px; } }
  .brand-card .brand-title {
    position: relative;
    z-index: 2;
    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: 0px 10px 20px 10px;
    width: 100%;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (max-width: 991.98px) {
      .brand-card .brand-title {
        display: none; } }
  @media (pointer: fine) {
    .brand-card:hover {
      text-decoration: none; }
      .brand-card:hover .brand-title {
        color: var(--theme-color-main); } }
  .brand-card:focus {
    text-decoration: none; }
    .brand-card:focus .brand-title {
      color: var(--theme-color-main); }

.page-brand {
  background: var(--bg); }

.section-wrap:not(:last-child) {
  margin-bottom: 76px; }
  @media (max-width: 991.98px) {
    .section-wrap:not(:last-child) {
      margin-bottom: 48px; } }

.section-wrap .section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white-color); }
  .section-wrap .section-top:not(:last-child) {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .section-wrap .section-top {
      border-radius: 12px 12px 0 0;
      border: 1px solid var(--stroke-color); } }
  @media (max-width: 767.98px) {
    .section-wrap .section-top {
      margin: 0 -16px;
      padding: 16px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }

.section-wrap .section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--white-color);
  border-top: none;
  overflow: hidden; }
  @media (min-width: 768px) {
    .section-wrap .section-list {
      border-radius: 0 0 12px 12px;
      border: 1px solid var(--stroke-color);
      border-top: none; } }
  @media (max-width: 767.98px) {
    .section-wrap .section-list {
      margin: 0 -16px; } }
  .section-wrap .section-list .product-block {
    width: 25%;
    -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
            box-shadow: 0 0 0 1px var(--stroke-color); }
    @media (max-width: 991.98px) {
      .section-wrap .section-list .product-block {
        width: 33.333%; } }
    @media (max-width: 767.98px) {
      .section-wrap .section-list .product-block {
        width: 50%;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-left: 1px solid var(--stroke-color);
        border-bottom: 1px solid var(--stroke-color); } }

.brand-about {
  background: var(--white-color); }
  .brand-about:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .brand-about:not(:last-child) {
        margin-bottom: 16px; } }
  @media (min-width: 992px) {
    .brand-about {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 326px 1fr;
      grid-template-columns: 326px 1fr;
      border: 1px solid var(--stroke-color);
      border-radius: 12px; } }
  @media (max-width: 991.98px) {
    .brand-about {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 0 -16px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .brand-about .brand-about-img {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 992px) {
      .brand-about .brand-about-img {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .brand-about .brand-about-img {
        padding: 20px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-bottom: 1px solid var(--stroke-color); } }
  .brand-about .brand-about-content {
    padding: 32px; }
    @media (max-width: 991.98px) {
      .brand-about .brand-about-content {
        padding: 20px 16px; } }
    .brand-about .brand-about-content.top-text .text-formatted {
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      line-clamp: 5;
      text-overflow: ellipsis; }
    .brand-about .brand-about-content .brand-about-link {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-top: 10px;
      text-decoration: underline; }
    .brand-about .brand-about-content .btn-default-transparent {
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: var(--black-color);
      text-decoration: none; }
      @media (any-hover: hover) {
        .brand-about .brand-about-content .btn-default-transparent:hover {
          color: var(--white-color); } }
    .brand-about .brand-about-content a:not(.btn-default-transparent) {
      color: var(--blue-main);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .brand-about .brand-about-content a:not(.btn-default-transparent):hover {
          color: var(--accent-color); } }

#brand-about {
  scroll-margin-top: 100px; }
  @media (max-width: 991.98px) {
    #brand-about {
      scroll-margin-top: 80px; } }

.brand-docs .brand-docs-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color);
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .brand-docs .brand-docs-list {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767.98px) {
    .brand-docs .brand-docs-list {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px) {
    .brand-docs .brand-docs-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: 0 -16px;
      border-radius: 0;
      border: none;
      border-top: 1px solid var(--stroke-color); } }

.doc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
  -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
          box-shadow: 0 0 0 1px var(--stroke-color); }
  @media (max-width: 991.98px) {
    .doc-item {
      padding: 20px 16px; } }
  @media (max-width: 575.98px) {
    .doc-item {
      -webkit-box-shadow: none;
              box-shadow: none;
      border-bottom: 1px solid var(--stroke-color); } }
  .doc-item .doc-item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    .doc-item .doc-item-top:not(:last-child) {
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--stroke-color); }
  .doc-item .doc-item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    height: 40px; }
    @media (max-width: 991.98px) {
      .doc-item .doc-item-img {
        width: 32px;
        height: 32px; } }
    .doc-item .doc-item-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .doc-item .doc-item-title {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .doc-item .doc-item-title {
        font-size: 14px;
        line-height: 20px; } }
  .doc-item .doc-item-versions {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 4px 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--black-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 8px;
    background: var(--main-50); }
    .doc-item .doc-item-versions:not(:last-child) {
      margin-bottom: 8px; }
  .doc-item .doc-item-text {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .doc-item .doc-item-text:not(:last-child) {
      margin-bottom: 16px; }
  .doc-item .doc-item-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .doc-item .doc-item-buttons:not(:last-child) {
      margin-bottom: 16px; }

.doc-item-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  color: var(--blue-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) {
    .doc-item-btn:hover {
      color: var(--accent-color); } }
  .doc-item-btn .icon {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.review-read-more-block {
  padding: 0;
  border-radius: 16px;
  max-width: 1104px; }
  @media (max-width: 991.98px) {
    .review-read-more-block {
      border-radius: 12px; } }
  .review-read-more-block .read-more-block-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 991.98px) {
      .review-read-more-block .read-more-block-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .review-read-more-block .doc-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 100%;
    width: 333px;
    padding: 24px;
    -webkit-box-shadow: none;
            box-shadow: none; }
    @media (min-width: 992px) {
      .review-read-more-block .doc-item {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .review-read-more-block .doc-item {
        width: 100%;
        padding: 20px 16px;
        border-bottom: 1px solid var(--stroke-color); } }
    .review-read-more-block .doc-item .doc-item-title {
      font-size: 16px; }
    .review-read-more-block .doc-item .doc-item-text {
      font-size: 16px; }
      @media (max-width: 991.98px) {
        .review-read-more-block .doc-item .doc-item-text {
          font-size: 14px; }
          .review-read-more-block .doc-item .doc-item-text:not(:last-child) {
            margin-bottom: 12px; } }
  .review-read-more-block .text-formatted {
    padding: 24px; }
    @media (max-width: 991.98px) {
      .review-read-more-block .text-formatted {
        padding: 20px 16px; } }
  .review-read-more-block .btn-blue {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: auto; }
    @media (max-width: 991.98px) {
      .review-read-more-block .btn-blue {
        width: 100%; } }
    .review-read-more-block .btn-blue::before {
      content: "";
      -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: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--white-color);
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }

section.main-slider-section {
  padding-top: 0;
  padding-bottom: 0; }

.main-slider-section .main-slider {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .main-slider-section .main-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;
    overflow: hidden; }
  .main-slider-section .main-slider:not(.swiper-initialized) .swiper-slide {
    min-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .main-slider-section .main-slider:not(.swiper-initialized) .main-slider-nav {
    display: none; }
  @media (max-width: 991.98px) {
    .main-slider-section .main-slider {
      padding-bottom: 38px; } }

.main-slider-section .main-slider-list {
  min-height: 100%;
  height: auto !important; }

.main-slider-section .main-slider-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto !important;
  background: var(--blue-main);
  border-radius: 12px; }

.main-slider-section .main-slider-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .main-slider-section .main-slider-link:hover, .main-slider-section .main-slider-link:focus {
    text-decoration: none; }

.main-slider-section .main-slider-img {
  width: 100%; }
  .main-slider-section .main-slider-img picture,
  .main-slider-section .main-slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px; }

.main-slider-section .main-slider-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 56px;
  max-width: 50%;
  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: 5;
  color: var(--white-сolor);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  display: none; }
  @media (max-width: 991.98px) {
    .main-slider-section .main-slider-content {
      padding: 20px;
      max-width: 100%;
      width: 100%;
      font-size: 12px;
      line-height: 16px; } }
  .main-slider-section .main-slider-content p {
    margin: 0; }
    .main-slider-section .main-slider-content p:not(:last-child) {
      margin-bottom: 8px; }
  .main-slider-section .main-slider-content ul, .main-slider-section .main-slider-content li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .main-slider-section .main-slider-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 12px;
    color: var(--white-color);
    line-height: 1; }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-content ul {
        gap: 8px;
        max-width: 60%; } }
    .main-slider-section .main-slider-content ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 6px; }
      .main-slider-section .main-slider-content ul li::before {
        content: "";
        display: block;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: 8px;
        -ms-flex-item-align: start;
            align-self: flex-start;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-color); }
        @media (max-width: 991.98px) {
          .main-slider-section .main-slider-content ul li::before {
            width: 6px;
            height: 6px;
            margin-top: 6px; } }

.main-slider-section .main-slider-title {
  color: var(--white);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase; }
  .main-slider-section .main-slider-title:not(:last-child) {
    margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .main-slider-section .main-slider-title {
      font-size: 26px;
      line-height: 32px; }
      .main-slider-section .main-slider-title:not(:last-child) {
        margin-bottom: 10px; } }

.main-slider-section .more-btn {
  position: absolute;
  left: 56px;
  bottom: 56px; }
  @media (max-width: 991.98px) {
    .main-slider-section .more-btn {
      left: 20px;
      bottom: 20px; } }

.main-slider-section .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
  @media (max-width: 991.98px) {
    .main-slider-section .btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; } }

.main-slider-section .main-slider-nav {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  height: 40px;
  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;
  padding: 0 8px;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 100%;
  pointer-events: none; }
  @media (max-width: 991.98px) {
    .main-slider-section .main-slider-nav {
      display: none; } }
  .main-slider-section .main-slider-nav .swiper-button-next,
  .main-slider-section .main-slider-nav .swiper-button-prev {
    position: static !important;
    margin-top: -94px !important;
    pointer-events: initial;
    border-radius: 12px; }
    .main-slider-section .main-slider-nav .swiper-button-next::after,
    .main-slider-section .main-slider-nav .swiper-button-prev::after {
      color: var(--accent-color); }
    @media (any-hover: hover) {
      .main-slider-section .main-slider-nav .swiper-button-next:hover, .main-slider-section .main-slider-nav .swiper-button-next:focus,
      .main-slider-section .main-slider-nav .swiper-button-prev:hover,
      .main-slider-section .main-slider-nav .swiper-button-prev:focus {
        background: var(--accent-color); }
        .main-slider-section .main-slider-nav .swiper-button-next:hover::after, .main-slider-section .main-slider-nav .swiper-button-next:focus::after,
        .main-slider-section .main-slider-nav .swiper-button-prev:hover::after,
        .main-slider-section .main-slider-nav .swiper-button-prev:focus::after {
          color: var(--white-color); } }

@media (min-width: 992px) {
  .main-slider-section .swiper-pagination {
    display: none; } }

.main-slider-section .swiper-pagination .swiper-pagination-bullet {
  background: var(--stroke-color); }
  .main-slider-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--blue-main); }

.page-error {
  background: var(--bg); }

.section-error .section-error-wrap {
  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: 64px 24px;
  border-radius: 16px;
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .section-error .section-error-wrap {
      padding: 40px 20px; } }

.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;
  -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;
  row-gap: 16px; }

.section-error .section-error-title {
  text-align: center;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .section-error .section-error-title {
      font-size: 80px; } }

.section-error .section-error-subtitle {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .section-error .section-error-subtitle {
      font-size: 20px; } }

.section-error .section-error-text {
  max-width: 560px;
  color: var(--secondary-color);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; }
  @media (max-width: 991.98px) {
    .section-error .section-error-text {
      font-size: 14px;
      line-height: 20px; } }

#page-content:has(.section-form) {
  padding-bottom: 0; }

.section-form {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .section-form {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .section-form .section-form-row {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .section-form .section-form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .section-form .section-form-col:first-child {
    padding: 40px; }
    @media (max-width: 1199.98px) {
      .section-form .section-form-col:first-child {
        padding: 24px; } }
    @media (max-width: 991.98px) {
      .section-form .section-form-col:first-child {
        padding: 20px 16px; } }
  @media (min-width: 992px) {
    .section-form .section-form-col {
      width: 50%; }
      .section-form .section-form-col:not(:last-child) {
        border-right: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .section-form .section-form-col {
      width: 100%; }
      .section-form .section-form-col:not(:last-child) {
        border-bottom: 1px solid var(--stroke-color); } }
  .section-form .section-form-title:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .section-form .section-form-title:not(:last-child) {
        margin-bottom: 12px; } }
  .section-form .section-form-text {
    color: var(--secondary-color); }
  @media (any-hover: hover) {
    .section-form .btn-submit:hover {
      background: var(--blue-main);
      color: var(--white-color); }
      .section-form .btn-submit:hover::before {
        background: var(--white-color); } }
  .section-form .btn-submit:focus {
    background: var(--blue-main);
    color: var(--white-color); }
    .section-form .btn-submit:focus::before {
      background: var(--white-color); }

@media (min-width: 992px) {
  .brand-main-section .section-title {
    padding-right: 180px; } }

.brand-main-section .brand-main-wrap {
  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; }

.brand-main-section .brand-main-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke-color);
  background: var(--white-color); }

.brand-main-section .brand-main-img {
  position: relative;
  width: 16.666%;
  padding: 12px;
  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: 1199.98px) {
    .brand-main-section .brand-main-img {
      width: 25%; } }
  @media (max-width: 767.98px) {
    .brand-main-section .brand-main-img {
      width: 50%; } }
  .brand-main-section .brand-main-img::before, .brand-main-section .brand-main-img::after {
    content: "";
    position: absolute;
    background: var(--stroke-color); }
  .brand-main-section .brand-main-img::before {
    top: 0;
    left: 100%;
    width: 1px;
    height: 100%; }
  .brand-main-section .brand-main-img::after {
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px; }

@media (min-width: 992px) {
  .brand-main-section .btn {
    position: absolute;
    top: 0;
    right: 0; } }

@media (max-width: 991.98px) {
  .brand-main-section .btn {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 575.98px) {
  .brand-main-section .btn {
    width: 100%; } }

.certificate-section .certificate-top:not(:last-child) {
  margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .certificate-section .certificate-top:not(:last-child) {
      margin-bottom: 16px; } }

.certificate-section .certificate-top .section-title:not(:last-child) {
  margin-bottom: 0; }

@media (min-width: 992px) {
  .certificate-section .certificate-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; } }

@media (max-width: 991.98px) {
  .certificate-section .certificate-top {
    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; } }

.default-slider:not(.swiper-initialized) {
  overflow: hidden; }
  .default-slider:not(.swiper-initialized) .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (max-width: 991.98px) {
      .default-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 12px; } }
  .default-slider:not(.swiper-initialized) .swiper-slide {
    width: calc(25% - 16px);
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .default-slider:not(.swiper-initialized) .swiper-slide {
        width: calc(33.333% - 12px); } }
    @media (max-width: 575.98px) {
      .default-slider:not(.swiper-initialized) .swiper-slide {
        width: calc(50% - 12px); } }

@media (max-width: 991.98px) {
  .section-gallery .section-gallery-inner {
    margin: 0 -16px; } }

.section-gallery .section-gallery-sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid var(--stroke-color);
  border-bottom: none; }
  @media (min-width: 992px) {
    .section-gallery .section-gallery-sliders {
      padding: 24px;
      border-radius: 12px 12px 0 0; } }
  @media (max-width: 991.98px) {
    .section-gallery .section-gallery-sliders {
      padding: 16px; } }

.section-gallery .page-gallery {
  margin-left: 0;
  width: calc(100% - 432px);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  padding-right: 16px; }
  @media (max-width: 1199.98px) {
    .section-gallery .page-gallery {
      width: calc(100% - 380px); } }
  @media (max-width: 991.98px) {
    .section-gallery .page-gallery {
      width: 100%;
      padding-right: 0; } }
  .section-gallery .page-gallery .swiper-slide picture,
  .section-gallery .page-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 12px; }

.section-gallery .gallery-thumbs {
  overflow: hidden;
  height: 550px;
  width: 432px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (max-width: 1199.98px) {
    .section-gallery .gallery-thumbs {
      width: 380px; } }
  @media (max-width: 991.98px) {
    .section-gallery .gallery-thumbs {
      display: none; } }
  .section-gallery .gallery-thumbs .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .section-gallery .gallery-thumbs .swiper-slide picture,
    .section-gallery .gallery-thumbs .swiper-slide img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      border-radius: 12px; }
    .section-gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
      border-color: var(--blue-main);
      -webkit-box-shadow: inset 0 0 0 1px var(--blue-main);
              box-shadow: inset 0 0 0 1px var(--blue-main); }

.categories-popular {
  background: var(--white-color); }

.popular-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; }
  @media (max-width: 991.98px) {
    .popular-list {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 8px; } }

.popular-cart {
  position: relative;
  overflow: hidden;
  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: 32px;
  min-height: 320px;
  border-radius: 12px;
  background: var(--main-50); }
  @media (max-width: 1199.98px) {
    .popular-cart {
      padding: 16px;
      row-gap: 4px; } }
  @media (max-width: 991.98px) {
    .popular-cart {
      min-height: 160px; } }
  .popular-cart::before {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 325px;
    height: 325px;
    border-radius: 50%;
    background: var(--main-100);
    -webkit-transform: translate(25%, 25%);
        -ms-transform: translate(25%, 25%);
            transform: translate(25%, 25%);
    border: 20px solid var(--main-50);
    -webkit-box-shadow: 0 0 0 1px var(--main-100);
            box-shadow: 0 0 0 1px var(--main-100);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    @media (max-width: 991.98px) {
      .popular-cart::before {
        width: 156px;
        height: 156px;
        border: 12px solid var(--main-50);
        -webkit-transform: translate(24%, 22%);
            -ms-transform: translate(24%, 22%);
                transform: translate(24%, 22%); } }
  .popular-cart:nth-child(6n + 1), .popular-cart:nth-child(6n + 6) {
    -ms-grid-column-span: 2;
    grid-column: span 2; }
    .popular-cart:nth-child(6n + 1)::before, .popular-cart:nth-child(6n + 6)::before {
      -webkit-transition: all 0.6s ease-in-out;
      transition: all 0.6s ease-in-out; }
    .popular-cart:nth-child(6n + 1) .popular-cart-text, .popular-cart:nth-child(6n + 6) .popular-cart-text {
      max-width: 215px; }
    .popular-cart:nth-child(6n + 1)::before, .popular-cart:nth-child(6n + 6)::before {
      width: 496px;
      height: 496px;
      -webkit-transform: translate(32%, 46%);
          -ms-transform: translate(32%, 46%);
              transform: translate(32%, 46%); }
    @media (max-width: 991.98px) {
      .popular-cart:nth-child(6n + 1), .popular-cart:nth-child(6n + 6) {
        min-height: 220px; }
        .popular-cart:nth-child(6n + 1)::before, .popular-cart:nth-child(6n + 6)::before {
          width: 323px;
          height: 323px;
          border: 16px solid var(--main-50);
          -webkit-transform: translate(25%, 42%);
              -ms-transform: translate(25%, 42%);
                  transform: translate(25%, 42%); }
        .popular-cart:nth-child(6n + 1) .popular-cart-text, .popular-cart:nth-child(6n + 6) .popular-cart-text {
          max-width: 146px; } }
  @media (any-hover: hover) {
    .popular-cart:hover:nth-child(6n + 1)::before, .popular-cart:hover:nth-child(6n + 6)::before {
      width: 970px;
      height: 970px; }
    .popular-cart:hover::before {
      width: 520px;
      height: 520px;
      -webkit-transform: translate(20%, 20%);
          -ms-transform: translate(20%, 20%);
              transform: translate(20%, 20%); }
    .popular-cart:hover .btn {
      opacity: 1;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); } }
  .popular-cart .popular-cart-title {
    position: relative;
    z-index: 10;
    color: var(--black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 1199.98px) {
      .popular-cart .popular-cart-title {
        font-size: 20px;
        line-height: 1.2; } }
  .popular-cart .popular-cart-text {
    position: relative;
    z-index: 10;
    max-width: 164px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 1199.98px) {
      .popular-cart .popular-cart-text {
        font-size: 12px;
        line-height: 16px; } }
  .popular-cart .popular-cart-img {
    position: absolute;
    z-index: 5;
    bottom: -10px;
    right: 0;
    max-width: 60%; }
  .popular-cart .btn {
    position: absolute;
    z-index: 100;
    bottom: 32px;
    left: 32px;
    gap: 6px;
    min-height: 36px;
    padding: 4px 16px;
    font-size: 14px;
    border-radius: 8px;
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    @media (max-width: 991.98px) {
      .popular-cart .btn {
        display: none; } }

.section-main {
  padding-top: 32px;
  padding-bottom: 32px; }
  @media (max-width: 991.98px) {
    .section-main {
      padding-top: 16px; } }
  .section-main .section-main-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .section-main .section-main-wrap:not(:last-child) {
      margin-bottom: 16px; }
  .section-main .left-menu {
    position: relative;
    z-index: 1000;
    width: 33.8%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 16px; }
    @media (max-width: 991.98px) {
      .section-main .left-menu {
        display: none; } }
  .section-main .main-slider-section {
    width: 66.2%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
    @media (max-width: 991.98px) {
      .section-main .main-slider-section {
        width: 100%; } }

.catalog-drop-main {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  overflow: hidden;
  height: 100%; }
  .catalog-drop-main .nav-catalog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .catalog-drop-main ul, .catalog-drop-main li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .catalog-drop-main .sub-list-btn {
    display: none; }
  .catalog-drop-main .catalog-drop-item {
    width: 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: 767.98px) {
      .catalog-drop-main .catalog-drop-item {
        width: 100%;
        padding-right: 0; } }

@media (min-width: 992px) and (min-width: 992px) {
  .catalog-drop-main .catalog-drop-item.sub-in:hover > .sub-list-wrap, .catalog-drop-main .catalog-drop-item.sub-in:focus > .sub-list-wrap {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
    @media (max-width: 991.98px) {
      .catalog-drop-main .catalog-drop-item.sub-in.active > .sub-list-wrap {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        left: 0; } }
    .catalog-drop-main .catalog-drop-item.accordion-open .catalog-drop-link > .icon {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  @media (min-width: 992px) {
    .catalog-drop-main .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); } }
  @media (max-width: 991.98px) {
    .catalog-drop-main .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(0deg) !important;
          -ms-transform: rotate(0deg) !important;
              transform: rotate(0deg) !important; } }
  .catalog-drop-main .sub-item.sub-in.accordion-open > a > .icon {
    -webkit-transform: rotate(-180deg) !important;
        -ms-transform: rotate(-180deg) !important;
            transform: rotate(-180deg) !important; }
  .catalog-drop-main .catalog-drop-item:last-child .catalog-drop-link::before {
    display: none; }
  .catalog-drop-main .catalog-drop-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: 8px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 13px 20px;
    border-bottom: none; }
    .catalog-drop-main .catalog-drop-link::before {
      content: "";
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--stroke-color); }
    @media (max-width: 991.98px) {
      .catalog-drop-main .catalog-drop-link {
        padding: 16px;
        font-size: 14px; } }
    .catalog-drop-main .catalog-drop-link::after {
      content: "";
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: auto;
      display: block;
      width: 8px;
      height: 14px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M1 1L7 7L1 13" stroke="%23A0A0A0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }
    .catalog-drop-main .catalog-drop-link .icon-arrow {
      display: none; }
    .catalog-drop-main .catalog-drop-link .icon-wrapper {
      width: 24px;
      height: 24px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .catalog-drop-main .catalog-drop-link .icon-wrapper img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    .catalog-drop-main .catalog-drop-link:hover, .catalog-drop-main .catalog-drop-link:focus {
      text-decoration: none;
      color: var(--theme-color-main); }
      .catalog-drop-main .catalog-drop-link:hover::after, .catalog-drop-main .catalog-drop-link:focus::after {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M1 1L7 7L1 13" stroke="%232d7dd2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }
  @media (min-width: 992px) {
    .catalog-drop-main .sub-list-wrap.lv-1 {
      position: absolute;
      top: 0;
      left: 100%;
      max-width: 816px;
      width: calc(100vw - 432px);
      padding: 32px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-column-gap: 24px;
         -moz-column-gap: 24px;
              column-gap: 24px;
      background: var(--white);
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(-10px);
          -ms-transform: translateX(-10px);
              transform: translateX(-10px);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      display: none; }
      .catalog-drop-main .sub-list-wrap.lv-1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100vh;
        background-color: var(--stroke-color); }
      .catalog-drop-main .sub-list-wrap.lv-1::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -1px;
        width: calc(100% + 1px);
        height: 100vh;
        background: var(--white-color); } }

.promo-products {
  background: var(--white-color);
  padding-top: 56px;
  padding-bottom: 56px; }
  @media (max-width: 991.98px) {
    .promo-products {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .promo-products .promo-products-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 991.98px) {
      .promo-products .promo-products-tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
                box-shadow: 0 0 0 1px var(--stroke-color);
        margin: 0 -16px; } }
  .promo-products .promo-products-top {
    width: 34%;
    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;
    padding: 32px;
    border-radius: 12px 0 0 12px;
    border: 1px solid var(--stroke-color);
    background: var(--main-50);
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    @media (min-width: 992px) {
      .promo-products .promo-products-top::after {
        content: "";
        margin-top: auto;
        display: block;
        width: 100%;
        height: 95px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('data:image/svg+xml,<svg width="385" height="95" viewBox="0 0 385 95" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.026 54.3331H33.7341L25.38 32.3763L17.026 54.3331ZM36.6784 61.8924H14.0817L8.67193 75.9741H0L22.3573 19.5669H28.2417L50.599 75.9741H42.0055L36.6784 61.8924Z" fill="%23D2F2FF"/><path d="M60.0635 59.266V19.7259H68.1781V59.3465C68.1781 65.4726 74.7809 68.4953 80.6654 68.4953C86.4756 68.4953 93.0791 65.3921 93.0791 59.266V19.7259H101.194V59.3465C101.194 70.6428 90.2132 76.5315 80.6654 76.5315C70.8829 76.5315 60.0635 70.6428 60.0635 59.266Z" fill="%23D2F2FF"/><path d="M127.841 75.9739V27.3634H110.977V19.7256H152.664V27.3634H135.878V75.9739H127.841Z" fill="%23D2F2FF"/><path d="M186.435 68.735C197.895 68.735 207.124 59.5862 207.124 48.1289C207.124 36.673 197.895 27.4437 186.435 27.4437C174.98 27.4437 165.833 36.673 165.833 48.1289C165.833 59.5862 174.98 68.735 186.435 68.735ZM186.435 19.1701C202.507 19.1701 215.396 32.0587 215.396 48.1289C215.396 64.1984 202.507 77.0085 186.435 77.0085C170.367 77.0085 157.558 64.1984 157.558 48.1289C157.558 32.0587 170.367 19.1701 186.435 19.1701Z" fill="%23D2F2FF"/><path d="M271.479 39.8551C269.175 30.7063 260.42 27.603 253.181 27.603C242.044 27.603 233.45 36.275 233.45 48.2091C233.45 60.2217 242.044 69.0533 253.181 69.0533C260.185 69.0533 267.659 65.233 271.004 56.9595H250.001V48.7651H280.63C280.229 53.5383 279.833 56.72 279.036 58.6302V58.5518C275.138 69.3712 263.526 76.9277 253.181 76.9277C237.27 76.9277 225.257 64.9151 225.257 48.2091C225.257 31.4226 237.51 19.4079 253.181 19.4079C264.083 19.4079 277.207 24.7392 280.229 39.8551H271.479Z" fill="%23D2F2FF"/><path d="M304.73 54.3331H321.437L313.084 32.3763L304.73 54.3331ZM324.382 61.8924H301.786L296.375 75.9741H287.704L310.061 19.5669H315.946L338.302 75.9741H329.71L324.382 61.8924Z" fill="%23D2F2FF"/><path d="M375.534 34.683C374.419 29.6717 369.01 27.5221 364.158 27.6033C360.416 27.6831 356.278 28.9554 354.052 31.8192C352.938 33.2525 352.541 35.0814 352.698 36.9915C353.099 42.7192 359.384 43.4355 365.351 43.9907C372.986 44.9472 382.456 46.9357 384.603 55.8472C384.842 57.0403 385 58.3924 385 59.5057C385 70.2467 374.341 76.4512 364.314 76.4512C355.721 76.4512 345.302 71.3593 344.266 61.4158L344.187 59.9041L352.301 59.7452L352.38 60.939V60.619C352.938 65.7907 359.223 68.4955 364.393 68.4955C370.36 68.4955 376.885 65.1549 376.885 59.4252C376.885 58.8692 376.806 58.2334 376.646 57.5171C375.691 53.3012 369.964 52.5842 364.393 52.0276C355.721 51.1516 345.537 49.2415 344.662 37.6273V37.7057C344.344 33.9667 345.302 30.2297 347.689 27.1265C351.426 22.272 358.108 19.7261 364.554 19.7261C373.147 19.7261 382.055 24.1814 383.487 34.3651L375.534 34.683Z" fill="%23D2F2FF"/><path d="M221.226 12.7606C221.226 16.069 218.544 18.7515 215.235 18.7515C211.927 18.7515 209.245 16.069 209.245 12.7606C209.245 9.45214 211.927 6.77038 215.235 6.77038C218.544 6.77038 221.226 9.45214 221.226 12.7606Z" fill="%23B1F5E8"/><path d="M228.701 26.9755C227.675 24.8987 226.539 22.8766 225.208 20.9636L224.34 21.5658C225.746 23.588 226.942 25.7271 228 27.9341C228.236 27.6169 228.453 27.2822 228.701 26.9755Z" fill="%23B1F5E8"/><path d="M153.359 15.9233C159.434 9.59145 167.188 5.10949 175.93 3.04321C185.519 0.782267 195.363 1.6022 204.407 5.42388L204.82 4.4492C195.57 0.544901 185.49 -0.30584 175.691 2.01532C166.407 4.20763 158.2 9.0509 151.887 15.9233H153.359Z" fill="%23B1F5E8"/><path d="M227.803 68.2616C227.161 69.5562 226.464 70.8313 225.695 72.0762C219.228 82.5428 209.073 89.8627 197.102 92.6914C185.134 95.5132 172.771 93.517 162.306 87.0486C151.843 80.5815 144.521 70.4266 141.696 58.4532C139.504 49.1714 140.249 39.6704 143.691 30.9879H142.54C139.151 39.7635 138.456 49.3415 140.664 58.6969C143.559 70.9454 151.045 81.3328 161.753 87.9462C169.29 92.6046 177.784 95 186.428 95C190.062 95 193.72 94.5764 197.341 93.7193C209.589 90.8268 219.98 83.3375 226.595 72.6322C227.285 71.5147 227.896 70.3664 228.486 69.2096C228.245 68.9057 228.033 68.5759 227.803 68.2616Z" fill="%23B1F5E8"/></svg>'); } }
    @media (max-width: 1199.98px) {
      .promo-products .promo-products-top {
        width: 30%; } }
    @media (max-width: 991.98px) {
      .promo-products .promo-products-top {
        width: 100%;
        padding: 16px;
        row-gap: 16px;
        font-size: 14px;
        line-height: 20px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--stroke-color); } }
  .promo-products .promo-products-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px; }
    @media (max-width: 991.98px) {
      .promo-products .promo-products-nav {
        gap: 8px;
        overflow: auto;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        margin: 0 -16px;
        padding: 0 16px;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */ }
        .promo-products .promo-products-nav::-webkit-scrollbar {
          display: none; } }
  .promo-products .promo-products-nav-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    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: 8px 20px;
    cursor: pointer;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    border-right: none;
    background: var(--white-color); }
    .promo-products .promo-products-nav-item.active {
      border-color: var(--blue-main);
      background: var(--blue-main);
      color: var(--white-color); }
    @media (max-width: 991.98px) {
      .promo-products .promo-products-nav-item {
        padding: 7px 16px;
        font-size: 14px;
        line-height: 20px; } }
  .promo-products .promo-products-wrap {
    position: relative;
    width: 66%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0 12px 12px 0;
    -webkit-box-shadow: inset 0 0 0 1px var(--stroke-color);
            box-shadow: inset 0 0 0 1px var(--stroke-color);
    overflow: hidden;
    border-left: none;
    background: var(--white-color); }
    @media (max-width: 1199.98px) {
      .promo-products .promo-products-wrap {
        width: 70%; } }
    @media (max-width: 991.98px) {
      .promo-products .promo-products-wrap {
        width: 100%;
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .promo-products .promo-products-content {
    position: relative;
    width: 100%;
    z-index: 2;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    .promo-products .promo-products-content:not(.active) {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      opacity: 0;
      width: 100%;
      pointer-events: none; }

.promo-slider {
  width: 100%;
  overflow: hidden; }
  .promo-slider .swiper-wrapper {
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
        -ms-flex-direction: unset !important;
            flex-direction: unset !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .promo-slider .swiper-slide {
    height: auto; }
  .promo-slider .swiper-nav {
    border: none;
    border-radius: 0;
    background: transparent; }
    .promo-slider .swiper-nav::before {
      content: "";
      position: absolute;
      bottom: 100%;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--stroke-color); }
  .promo-slider .product-block {
    padding: 28px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    border-right: 1px solid var(--stroke-color);
    border-bottom: 1px solid var(--stroke-color); }
    @media (max-width: 1199.98px) {
      .promo-slider .product-block {
        padding: 16px; } }
    .promo-slider .product-block .product-img-wrap {
      position: relative;
      width: 164px;
      height: 164px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 1199.98px) {
        .promo-slider .product-block .product-img-wrap {
          width: 126px;
          height: 126px; } }
      .promo-slider .product-block .product-img-wrap:not(:last-child) {
        margin-bottom: 0; }
      .promo-slider .product-block .product-img-wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    .promo-slider .product-block .product-sku {
      -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;
      font-size: 12px;
      line-height: 16px; }
      .promo-slider .product-block .product-sku .stock-status {
        font-size: 12px;
        line-height: 16px; }
  .promo-slider .product-stickers.stickers-top-left {
    --margin: 0; }

.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; }
  @media (max-width: 991.98px) {
    .price-wrap {
      font-size: 18px; } }
  .price-wrap .old-price {
    display: inline-block;
    color: var(--price-old);
    font-size: 16px;
    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;
  border-radius: 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;
    color: var(--black-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--white-color);
    border: 1px solid var(--stroke-color); }
    .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(--blue-main);
        border-color: var(--blue-main);
        color: var(--white); } }
    .qty-picker .minus:focus,
    .qty-picker .plus:focus {
      background: var(--blue-main);
      border-color: var(--blue-main);
      color: var(--white); }
  .qty-picker .minus {
    border-radius: 8px 0 0 8px;
    border-right: none; }
  .qty-picker .plus {
    border-radius: 0 8px 8px 0;
    border-left: none; }
  .qty-picker input {
    width: 40px;
    height: 40px;
    padding: 1px 4px;
    text-align: center;
    outline: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border: 1px solid var(--stroke-color);
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease; }
    @media (any-hover: hover) {
      .qty-picker input:hover {
        border-color: var(--blue-main); } }
    .qty-picker input:focus {
      border-color: var(--blue-main); }
  .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-carousel:has(.swiper-button-lock) .swiper-slide.first-visible .product-block {
  border-radius: 12px 0 0 12px; }

.products-carousel:has(.swiper-button-lock) .swiper-slide.last-visible .product-block {
  border-radius: 0 12px 12px 0; }

.swiper-slide.first-visible .product-block {
  border-radius: 12px 0 0 0; }

.swiper-slide.last-visible .product-block {
  border-radius: 0 12px 0 0; }

.swiper-slide .product-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 1px;
  height: 100%;
  background: var(--stroke-color); }

.product-block {
  position: relative;
  --br: 12px;
  --bg: white;
  min-height: 100%;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (any-hover: hover) {
    .product-block:hover {
      -webkit-box-shadow: inset 0 0 0 1px var(--top-color);
              box-shadow: inset 0 0 0 1px var(--top-color); } }
  @media (max-width: 991.98px) {
    .product-block {
      padding: 16px; } }
  @media (any-hover: hover) {
    .product-block:hover {
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease; } }
  .product-block .product-img-wrap {
    display: block; }
    .product-block .product-img-wrap:not(:last-child) {
      margin-bottom: 12px; }
      @media (max-width: 991.98px) {
        .product-block .product-img-wrap:not(:last-child) {
          margin-bottom: 8px; } }
    .product-block .product-img-wrap img, .product-block .product-img-wrap picture {
      display: block; }
    .product-block .product-img-wrap img {
      width: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -o-object-position: center;
         object-position: center; }
  .product-block .product-content {
    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; }
  .product-block .product-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .product-block .product-title:not(:last-child) {
      margin-bottom: 12px; }
    .product-block .product-title span {
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      line-clamp: 4;
      text-overflow: ellipsis; }
    @media (pointer: fine) {
      .product-block .product-title:hover {
        color: var(--accent-color); } }
    .product-block .product-title:focus {
      color: var(--accent-color); }
    @media (max-width: 991.98px) {
      .product-block .product-title {
        font-size: 14px;
        line-height: 20px; }
        .product-block .product-title:not(:last-child) {
          margin-bottom: 8px; } }
  .product-block .product-sku {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4px 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--secondary-color); }
    @media (max-width: 1199.98px) {
      .product-block .product-sku {
        font-size: 10px;
        line-height: 1.4; } }
    .product-block .product-sku:not(:last-child) {
      margin-bottom: 8px; }
    .product-block .product-sku .product-sku-value,
    .product-block .product-sku b {
      font-weight: 400;
      color: var(--black-color); }
  .product-block .rating,
  .product-block .product-actions {
    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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .product-block .rating:not(:last-child),
    .product-block .product-actions:not(:last-child) {
      margin-bottom: 8px; }
  .product-block .stock-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; }
    .product-block .stock-status img {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 12px;
      height: 12px;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
      @media (max-width: 1199.98px) {
        .product-block .stock-status img {
          width: 10px;
          height: 10px; } }
    @media (max-width: 1199.98px) {
      .product-block .stock-status {
        font-size: 10px;
        line-height: 1.4; } }
  .product-block .product-bottom {
    margin-top: auto;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px; }
  .product-block .btn-buy {
    padding: 2px;
    -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: 50%;
    background-color: var(--main-50);
    color: var(--accent-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none; }
    .product-block .btn-buy .ic,
    .product-block .btn-buy .icon {
      width: 24px;
      height: 24px; }
    @media (max-width: 991.98px) {
      .product-block .btn-buy {
        width: 32px;
        height: 32px;
        min-height: 32px; }
        .product-block .btn-buy .ic,
        .product-block .btn-buy .icon {
          width: 16px;
          height: 16px; } }
    @media (any-hover: hover) {
      .product-block .btn-buy:hover {
        background: var(--accent-color);
        color: var(--white-color); } }
    .product-block .btn-buy:focus {
      background: var(--accent-color);
      color: var(--white-color); }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.product-block.out_of_stock .product-img-wrap img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1); }

.page-product {
  background: var(--bg); }
  .page-product .products-carousel-section .products-carousel-btn {
    display: none; }

.link-decor {
  color: var(--blue-main);
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  @media (pointer: fine) {
    .link-decor:hover {
      color: var(--accent-color); } }

.section-product {
  padding-bottom: 0;
  padding-top: 0; }
  .section-product:not(:last-child) {
    margin-bottom: 4px; }
  .section-product.out_of_stock .thumb-img img,
  .section-product.out_of_stock .gallery-slide img {
    -webkit-filter: grayscale(1);
            filter: grayscale(1); }
  .section-product.out_of_stock .product-action-btn {
    display: none; }
  .section-product.out_of_stock .btn-out-stock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 575.98px) {
      .section-product.out_of_stock .btn-out-stock {
        width: 100%; } }

.product-title {
  color: var(--black-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25; }
  .product-title:not(:last-child) {
    margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .product-title {
      font-size: 20px;
      line-height: 1.4; }
      .product-title:not(:last-child) {
        margin-bottom: 18px; } }

.product-page-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 544px 1fr;
  grid-template-columns: 544px 1fr;
  gap: 4px; }
  .product-page-grid:not(:last-child) {
    margin-bottom: 4px; }
  .product-page-grid.gallery-none {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
    .product-page-grid.gallery-none .left-side {
      display: none; }
  @media (max-width: 1199.98px) {
    .product-page-grid {
      -ms-grid-columns: 480px 1fr;
      grid-template-columns: 480px 1fr; } }
  @media (max-width: 991.98px) {
    .product-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;
      margin: 0 -16px; } }
  .product-page-grid .product-row {
    padding: 24px 28px;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .product-page-grid .product-row {
        padding: 20px 16px; } }
  .product-page-grid .left-side {
    background: var(--white); }
    @media (min-width: 992px) {
      .product-page-grid .left-side {
        position: sticky;
        z-index: 1;
        top: 196px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; } }
    @media (max-width: 991.98px) {
      .product-page-grid .left-side {
        max-width: 628px;
        width: 100%;
        margin: 0 auto; } }
  .product-page-grid .product-title {
    text-transform: none; }
    @media (max-width: 991.98px) {
      .product-page-grid .product-title {
        font-size: 24px;
        line-height: 1.1; } }
    .product-page-grid .product-title:not(:last-child) {
      margin-bottom: 12px; }
  .product-page-grid .top-info {
    position: relative;
    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: 16px;
    font-size: 16px;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .product-page-grid .top-info {
        font-size: 14px;
        line-height: 20px;
        row-gap: 8px; } }
    .product-page-grid .top-info:not(:last-child) {
      margin-bottom: 16px; }
    .product-page-grid .top-info .in-stock {
      margin-right: auto; }
    @media (max-width: 991.98px) {
      .product-page-grid .top-info .sku:last-child {
        width: 100%;
        text-align: right; } }
  .product-page-grid .in-stock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    @media (max-width: 991.98px) {
      .product-page-grid .in-stock {
        gap: 4px; } }
    .product-page-grid .in-stock img {
      width: 16px;
      height: 16px;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
      @media (max-width: 991.98px) {
        .product-page-grid .in-stock img {
          width: 12px;
          height: 12px; } }
    .product-page-grid .in-stock .in-stock {
      color: var(--accent-color); }
  .product-page-grid .sku {
    color: var(--grey-color); }
    .product-page-grid .sku b {
      font-weight: 400;
      color: var(--black-color); }
  .product-page-grid .product-information {
    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-page-grid .product-price {
    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) {
      .product-page-grid .product-price {
        gap: 16px; } }
    .product-page-grid .product-price:has(.btn-out-stock) .btn-out-stock {
      margin-left: auto; }
  .product-page-grid .product-actions {
    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: 12px; }
    @media (max-width: 991.98px) {
      .product-page-grid .product-actions {
        gap: 16px; } }
    @media (max-width: 767.98px) {
      .product-page-grid .product-actions button {
        min-height: 48px;
        width: 100%; } }
  .product-page-grid .qty-picker {
    margin-left: auto; }
    @media (min-width: 992px) {
      .product-page-grid .qty-picker {
        margin-right: auto; } }
  .product-page-grid .product-customer-actions {
    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: 12px;
    margin-left: auto; }
  .product-page-grid .price-wrap {
    font-size: 32px;
    line-height: 1; }
    @media (max-width: 991.98px) {
      .product-page-grid .price-wrap {
        font-size: 24px; } }
    .product-page-grid .price-wrap .price span {
      font-size: 22px;
      line-height: 24px; }
      @media (max-width: 991.98px) {
        .product-page-grid .price-wrap .price span {
          font-size: 16px; } }
    .product-page-grid .price-wrap .old-price {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 0; }
      @media (max-width: 991.98px) {
        .product-page-grid .price-wrap .old-price {
          font-size: 12px;
          line-height: 16px; } }
  .product-page-grid .btn-default::before {
    display: none; }
  .product-page-grid .btn-default .icon {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .product-page-grid .btn-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;
    min-height: 56px;
    padding: 8px 28px;
    color: var(--blue-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 12px;
    background: var(--main-50);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .product-page-grid .btn-link:hover {
        background: var(--accent-color);
        color: var(--white-color); } }
    .product-page-grid .btn-link:focus {
      background: var(--accent-color);
      color: var(--white-color); }
  .product-page-grid .product-heading {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
    .product-page-grid .product-heading:not(:last-child) {
      margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .product-page-grid .product-heading {
        font-size: 18px; } }
  .product-page-grid .product-order {
    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: 32px; }
    @media (max-width: 991.98px) {
      .product-page-grid .product-order {
        gap: 18px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .product-page-grid .product-group {
    position: relative;
    z-index: 99;
    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; }
    @media (max-width: 991.98px) {
      .product-page-grid .product-group {
        margin: 0 -16px; } }
    .product-page-grid .product-group .product-group-title {
      color: var(--black-color);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2;
      text-transform: uppercase; }
      @media (max-width: 991.98px) {
        .product-page-grid .product-group .product-group-title {
          padding: 0 16px; } }
    .product-page-grid .product-group .product-group-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 12px; }
      @media (max-width: 991.98px) {
        .product-page-grid .product-group .product-group-list {
          padding: 0 16px;
          gap: 8px;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          -ms-overflow-style: none;
          /* IE and Edge */
          scrollbar-width: none;
          /* Firefox */ }
          .product-page-grid .product-group .product-group-list::-webkit-scrollbar {
            display: none; } }
      .product-page-grid .product-group .product-group-list a {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px 20px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: var(--black-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        border-radius: 12px;
        border: 1px solid var(--stroke-color);
        background: var(--white-color);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        @media (max-width: 991.98px) {
          .product-page-grid .product-group .product-group-list a {
            padding: 6px 16px;
            font-size: 14px;
            line-height: 20px; } }
        @media (any-hover: hover) {
          .product-page-grid .product-group .product-group-list a:hover {
            background: var(--blue-main);
            border-color: var(--blue-main);
            color: var(--white-color); } }
        .product-page-grid .product-group .product-group-list a.active {
          background: var(--blue-main);
          border-color: var(--blue-main);
          color: var(--white-color); }

.product-gallery-sticker {
  position: relative;
  z-index: 1; }
  .product-gallery-sticker .product-stickers {
    z-index: 10; }

.product-gallery {
  position: relative;
  background: var(--white); }
  .product-gallery .product-gallery-slides {
    min-height: 528px;
    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;
    padding: 0 !important;
    border: none; }
    @media (max-width: 991.98px) {
      .product-gallery .product-gallery-slides {
        padding: 16px;
        min-height: 328px; } }
    .product-gallery .product-gallery-slides:not(.swiper-initialized) {
      min-height: 528px; }
      .product-gallery .product-gallery-slides:not(.swiper-initialized) .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        overflow: hidden; }
      .product-gallery .product-gallery-slides:not(.swiper-initialized) .swiper-slide {
        width: 100%; }
      .product-gallery .product-gallery-slides:not(.swiper-initialized) .swiper-button-prev,
      .product-gallery .product-gallery-slides:not(.swiper-initialized) .swiper-button-next {
        display: none; }
  .product-gallery .gallery-slide {
    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: 575.98px) {
      .product-gallery .gallery-slide picture,
      .product-gallery .gallery-slide img {
        max-width: 200px; } }
    .product-gallery .gallery-slide .video-item {
      position: relative; }
      .product-gallery .gallery-slide .video-item::after, .product-gallery .gallery-slide .video-item::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .product-gallery .gallery-slide .video-item::before {
        z-index: 2;
        width: 48px;
        height: 48px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 64 65" fill="none"><path d="M32 0.550781C14.2829 0.550781 0 14.8337 0 32.5508C0 50.2679 14.2829 64.5508 32 64.5508C49.7171 64.5508 64 50.2679 64 32.5508C64 14.8337 49.7171 0.550781 32 0.550781ZM46.2049 34.0337L24.8976 46.5215C24.6634 46.6776 24.2732 46.7557 24.039 46.7557C23.8049 46.7557 23.4146 46.6776 23.1805 46.5215C22.6341 46.1313 22.322 45.663 22.322 45.0386V20.141H22.2439C22.2439 19.5166 22.6341 18.8922 23.1024 18.6581C23.5707 18.424 24.3512 18.2679 24.8976 18.6581L46.2049 31.0679C46.7512 31.4581 47.0634 31.9264 47.0634 32.5508C47.0634 33.1752 46.6732 33.7996 46.2049 34.0337Z" fill="%232D7DD2"/></svg>') center no-repeat; }
      .product-gallery .gallery-slide .video-item::after {
        z-index: 1;
        border-radius: 50%;
        width: calc(48px - 6px);
        height: calc(48px - 6px);
        background-color: var(--white-color); }
      @media (max-width: 991.98px) {
        .product-gallery .gallery-slide .video-item {
          position: relative; }
          .product-gallery .gallery-slide .video-item::after, .product-gallery .gallery-slide .video-item::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%); }
          .product-gallery .gallery-slide .video-item::before {
            z-index: 2;
            width: 40px;
            height: 40px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 64 65" fill="none"><path d="M32 0.550781C14.2829 0.550781 0 14.8337 0 32.5508C0 50.2679 14.2829 64.5508 32 64.5508C49.7171 64.5508 64 50.2679 64 32.5508C64 14.8337 49.7171 0.550781 32 0.550781ZM46.2049 34.0337L24.8976 46.5215C24.6634 46.6776 24.2732 46.7557 24.039 46.7557C23.8049 46.7557 23.4146 46.6776 23.1805 46.5215C22.6341 46.1313 22.322 45.663 22.322 45.0386V20.141H22.2439C22.2439 19.5166 22.6341 18.8922 23.1024 18.6581C23.5707 18.424 24.3512 18.2679 24.8976 18.6581L46.2049 31.0679C46.7512 31.4581 47.0634 31.9264 47.0634 32.5508C47.0634 33.1752 46.6732 33.7996 46.2049 34.0337Z" fill="%232D7DD2"/></svg>') center no-repeat; }
          .product-gallery .gallery-slide .video-item::after {
            z-index: 1;
            border-radius: 50%;
            width: calc(40px - 6px);
            height: calc(40px - 6px);
            background-color: var(--white-color); } }
  .product-gallery .product-gallery-thumbs {
    position: relative;
    max-width: 100%;
    padding: 12px 65px;
    overflow: hidden; }
    @media (max-width: 991.98px) {
      .product-gallery .product-gallery-thumbs {
        display: none; } }
    .product-gallery .product-gallery-thumbs.gallery-thumbs-none {
      display: none; }
    .product-gallery .product-gallery-thumbs:not(.swiper-initialized) {
      display: none; }
      .product-gallery .product-gallery-thumbs:not(.swiper-initialized) .swiper-wrapper {
        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;
        overflow: hidden;
        gap: 12px; }
        @media (max-width: 991.98px) {
          .product-gallery .product-gallery-thumbs:not(.swiper-initialized) .swiper-wrapper {
            gap: 8px; } }
      .product-gallery .product-gallery-thumbs:not(.swiper-initialized) .swiper-slide {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 64px;
        height: 64px; }
      .product-gallery .product-gallery-thumbs:not(.swiper-initialized) .thumb-img {
        width: 64px;
        height: 64px; }
  .product-gallery .gallery-thumb-slide {
    max-width: 64px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--stroke-color);
    border-radius: 8px; }
    .product-gallery .gallery-thumb-slide:not(:last-child) {
      margin-right: 6px; }
    @media (any-hover: hover) {
      .product-gallery .gallery-thumb-slide:hover {
        border-color: var(--blue-main); } }
    .product-gallery .gallery-thumb-slide.swiper-slide-thumb-active {
      border-color: var(--blue-main); }
  .product-gallery .thumb-img {
    width: 100%;
    height: 64px;
    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; }
    .product-gallery .thumb-img.thumb-video {
      position: relative; }
      .product-gallery .thumb-img.thumb-video::after, .product-gallery .thumb-img.thumb-video::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .product-gallery .thumb-img.thumb-video::before {
        z-index: 2;
        width: 20px;
        height: 20px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 64 65" fill="none"><path d="M32 0.550781C14.2829 0.550781 0 14.8337 0 32.5508C0 50.2679 14.2829 64.5508 32 64.5508C49.7171 64.5508 64 50.2679 64 32.5508C64 14.8337 49.7171 0.550781 32 0.550781ZM46.2049 34.0337L24.8976 46.5215C24.6634 46.6776 24.2732 46.7557 24.039 46.7557C23.8049 46.7557 23.4146 46.6776 23.1805 46.5215C22.6341 46.1313 22.322 45.663 22.322 45.0386V20.141H22.2439C22.2439 19.5166 22.6341 18.8922 23.1024 18.6581C23.5707 18.424 24.3512 18.2679 24.8976 18.6581L46.2049 31.0679C46.7512 31.4581 47.0634 31.9264 47.0634 32.5508C47.0634 33.1752 46.6732 33.7996 46.2049 34.0337Z" fill="%232D7DD2"/></svg>') center no-repeat; }
      .product-gallery .thumb-img.thumb-video::after {
        z-index: 1;
        border-radius: 50%;
        width: calc(20px - 6px);
        height: calc(20px - 6px);
        background-color: var(--white-color); }
    .product-gallery .thumb-img picture,
    .product-gallery .thumb-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .product-gallery .product-gallery-slides:not(.swiper-initialized) .gallery-slide ~ .gallery-slide {
    display: none; }
  .product-gallery .product-gallery-thumbs:not(.swiper-initialized) .gallery-thumb-slide ~ .gallery-thumb-slide {
    display: none; }
  .product-gallery .swiper-button-next,
  .product-gallery .swiper-button-prev {
    top: 100%;
    margin-top: 0 !important;
    width: 52px !important;
    height: 88px !important;
    background: var(--white-color); }
    .product-gallery .swiper-button-next:hover::after, .product-gallery .swiper-button-next:focus::after,
    .product-gallery .swiper-button-prev:hover::after,
    .product-gallery .swiper-button-prev:focus::after {
      color: var(--accent-color); }
    @media (max-width: 991.98px) {
      .product-gallery .swiper-button-next,
      .product-gallery .swiper-button-prev {
        display: none; } }
  .product-gallery .swiper-button-next {
    right: 0; }
    .product-gallery .swiper-button-next::after {
      margin-left: 2px; }
  .product-gallery .swiper-button-prev {
    left: 0; }
    .product-gallery .swiper-button-prev::after {
      margin-left: -2px; }
  @media (min-width: 992px) {
    .product-gallery .swiper-pagination {
      display: none; } }

.section-details {
  padding-top: 0; }
  @media (max-width: 991.98px) {
    .section-details {
      padding-bottom: 0; } }
  @media (min-width: 992px) {
    .section-details .section-details-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 320px;
      grid-template-columns: 1fr 320px;
      gap: 4px; } }
  @media (max-width: 991.98px) {
    .section-details .section-details-grid {
      margin: 0 -16px; } }
  .section-details .section-details-content {
    background: var(--white-color);
    padding: 40px; }
    @media (max-width: 991.98px) {
      .section-details .section-details-content {
        padding: 20px 16px; } }
    .section-details .section-details-content .h2 {
      color: var(--black-color);
      font-size: 32px;
      font-weight: 400;
      line-height: 36px;
      text-transform: uppercase; }
      .section-details .section-details-content .h2:not(:last-child) {
        margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .section-details .section-details-content .h2 {
          font-size: 22px;
          line-height: 28px; }
          .section-details .section-details-content .h2:not(:last-child) {
            margin-bottom: 12px; } }
  .section-details .section-details-row:not(:last-child) {
    margin-bottom: 40px; }
    @media (max-width: 991.98px) {
      .section-details .section-details-row:not(:last-child) {
        margin-bottom: 32px; } }
  .section-details .section-details-row .text-formatted p {
    color: var(--secondary-color); }
  .section-details .section-details-card {
    position: sticky;
    top: 190px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: var(--white-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .section-details .section-details-card .product-block {
      border-radius: 0;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      @media (any-hover: hover) {
        .section-details .section-details-card .product-block:hover,
        .section-details .section-details-card .product-block:hover .dropdown-block {
          -webkit-box-shadow: none;
                  box-shadow: none; } }
      .section-details .section-details-card .product-block:focus,
      .section-details .section-details-card .product-block:focus .dropdown-block {
        -webkit-box-shadow: none;
                box-shadow: none; }
    @media (max-width: 991.98px) {
      .section-details .section-details-card {
        display: none; } }

#product-articles,
#product-videos,
#product-description,
#product-characteristics,
#all-product {
  scroll-margin-top: 180px; }
  @media (max-width: 991.98px) {
    #product-articles,
    #product-videos,
    #product-description,
    #product-characteristics,
    #all-product {
      scroll-margin-top: 80px; } }

@media (min-width: 992px) {
  body:has(header.header-scroll) .product-anchors {
    top: 88px; }
  body:has(header.header-scroll) .section-details-card {
    top: 190px; }
  body:has(header.header-scroll) .product-page-grid .left-side {
    top: 148px; } }

body:has(header.sticky-header) .product-anchors {
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.05); }

.product-anchors {
  position: sticky;
  z-index: 999;
  top: 136px;
  min-height: 56px;
  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: 32px;
  background: var(--white);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 991.98px) {
    .product-anchors {
      margin: 0 -16px;
      border-radius: 0;
      top: 64px;
      min-height: 52px;
      gap: 20px; } }
  .product-anchors:not(:last-child) {
    margin-bottom: 4px; }
  .product-anchors .product-anchors-slider {
    overflow: hidden;
    margin-right: -16px;
    background: var(--white); }
  .product-anchors .product-anchors-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .product-anchors .product-anchors-item {
    width: auto !important; }
    .product-anchors .product-anchors-item:last-child .product-anchors-link:after {
      display: none; }
  .product-anchors .product-anchors-link {
    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;
    padding: 16px 48px;
    min-height: 56px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-text);
    background: var(--white-color);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 991.98px) {
      .product-anchors .product-anchors-link {
        min-height: 52px;
        padding: 16px;
        font-size: 14px;
        line-height: 20px; } }
    .product-anchors .product-anchors-link::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 1px;
      height: 24px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background-color: #f0f0f0; }
    .product-anchors .product-anchors-link::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--blue-main);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: right;
          -ms-transform-origin: right;
              transform-origin: right;
      -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      will-change: transform; }
    @media (any-hover: hover) {
      .product-anchors .product-anchors-link:hover {
        text-decoration: none; }
        .product-anchors .product-anchors-link:hover::before {
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1);
          -webkit-transform-origin: left;
              -ms-transform-origin: left;
                  transform-origin: left; } }
    .product-anchors .product-anchors-link.active, .product-anchors .product-anchors-link:focus {
      text-decoration: none;
      color: var(--blue-main); }
      .product-anchors .product-anchors-link.active::before, .product-anchors .product-anchors-link:focus::before {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left; }
  .product-anchors .brand-item {
    padding: 0 16px;
    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-left: auto; }
    .product-anchors .brand-item img {
      height: 40px; }
    @media (max-width: 991.98px) {
      .product-anchors .brand-item {
        display: none; } }

.product-payment-wrap .product-payment-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: 8px; }

.product-payment-wrap .payment-item {
  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 16px;
  min-height: 32px;
  border-radius: 100px;
  border: 1px solid rgba(128, 128, 128, 0.3);
  color: var(--theme-color-main); }

@media (max-width: 991.98px) {
  .product-payment-wrap .payment-item-title {
    font-size: 14px;
    line-height: 20px; } }

.product-delivery-wrap .product-delivery-table {
  width: 100%; }
  .product-delivery-wrap .product-delivery-table thead {
    border-bottom: 1px solid var(--stroke-color); }
    @media (max-width: 767.98px) {
      .product-delivery-wrap .product-delivery-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px; } }
  .product-delivery-wrap .product-delivery-table th {
    padding-bottom: 12px;
    color: var(--grey-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase; }
  @media (min-width: 768px) {
    .product-delivery-wrap .product-delivery-table tr {
      border-bottom: 1px solid var(--stroke-color); } }
  @media (max-width: 767.98px) {
    .product-delivery-wrap .product-delivery-table tr {
      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;
      padding-top: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--stroke-color); }
      .product-delivery-wrap .product-delivery-table tr:first-child {
        border-top: 1px solid var(--stroke-color); } }
  .product-delivery-wrap .product-delivery-table td {
    padding: 16px 24px 16px 0;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .product-delivery-wrap .product-delivery-table td strong {
      font-weight: 400;
      width: 100%;
      color: var(--black-color); }
    .product-delivery-wrap .product-delivery-table td span {
      display: block; }
    @media (max-width: 767.98px) {
      .product-delivery-wrap .product-delivery-table td {
        padding: 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 42% 58%;
        grid-template-columns: 42% 58%;
        row-gap: 3px;
        font-size: 12px;
        line-height: 16px; }
        .product-delivery-wrap .product-delivery-table td:not(:last-child) {
          margin-bottom: 16px; }
        .product-delivery-wrap .product-delivery-table td:first-child {
          margin-bottom: 0; }
          .product-delivery-wrap .product-delivery-table td:first-child::before {
            display: none; }
        .product-delivery-wrap .product-delivery-table td::before {
          content: attr(data-label);
          float: left;
          -ms-grid-row-span: 2;
          grid-row: span 2;
          color: var(--grey-color);
          text-align: left;
          font-size: 12px;
          font-weight: 400;
          line-height: 16px;
          text-transform: uppercase; } }
  .product-delivery-wrap .product-delivery-table .delivery-item-image {
    width: 40px;
    height: 40px;
    -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; }
    .product-delivery-wrap .product-delivery-table .delivery-item-image img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
    @media (max-width: 767.98px) {
      .product-delivery-wrap .product-delivery-table .delivery-item-image {
        position: absolute;
        top: 16px;
        right: 0;
        width: 32px;
        height: 32px; } }

.product-delivery-wrap .product-delivery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; }
  @media (max-width: 991.98px) {
    .product-delivery-wrap .product-delivery-list {
      gap: 8px; } }

.product-delivery-wrap .delivery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; }
  @media (max-width: 991.98px) {
    .product-delivery-wrap .delivery-item {
      padding: 8px 12px;
      gap: 8px;
      font-size: 14px;
      line-height: 20px; } }

.product-delivery-wrap .delivery-item-image {
  width: 20px;
  height: 20px;
  -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; }
  .product-delivery-wrap .delivery-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down; }

.product-delivery-wrap .delivery-item-title {
  font-weight: 400;
  color: var(--black-color); }

.product-delivery-wrap .delivery-item-subtitle {
  color: var(--secondary-color); }

@media (max-width: 991.98px) {
  .product-delivery-wrap .delivery-item-title,
  .product-delivery-wrap .delivery-item-subtitle {
    padding-right: 32px; } }

.product-documentation .product-documentation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 -8px -8px 0; }

.product-documentation .product-documentation-item {
  width: 50%;
  min-height: 100%;
  padding: 0 8px 8px 0; }
  @media (max-width: 767.98px) {
    .product-documentation .product-documentation-item {
      width: 100%; } }

.download-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(128, 128, 128, 0.3); }
  .download-file .download-file-icon {
    width: 32px;
    height: 32px;
    color: var(--theme-color-main); }
  .download-file .download-file-name {
    color: #424546;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
  .download-file .download-file-size {
    color: #777777;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; }
  .download-file .download-file-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;
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 16px;
    height: 16px;
    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; }
    @media (any-hover: hover) {
      .download-file .download-file-link:hover, .download-file .download-file-link:focus {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);
        color: red; } }

.action-toggle {
  width: 24px;
  height: 24px;
  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);
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .action-toggle .i-default,
  .action-toggle .ic,
  .action-toggle .icon {
    width: 100%;
    height: 100%; }
  .action-toggle.choosed {
    color: var(--color-link-hovered); }

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px; }
  .rating .rating-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .rating .rating-stars .star-icon {
      -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: 24px;
      height: 24px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewBox="0 0 20 19" fill="none"><path d="M9.04894 0.927052C9.3483 0.00574112 10.6517 0.00573993 10.9511 0.927051L12.4697 5.60081C12.6035 6.01284 12.9875 6.2918 13.4207 6.2918H18.335C19.3037 6.2918 19.7065 7.53141 18.9228 8.10081L14.947 10.9894C14.5966 11.244 14.4499 11.6954 14.5838 12.1074L16.1024 16.7812C16.4017 17.7025 15.3472 18.4686 14.5635 17.8992L10.5878 15.0106C10.2373 14.756 9.7627 14.756 9.41221 15.0106L5.43648 17.8992C4.65276 18.4686 3.59828 17.7025 3.89763 16.7812L5.41623 12.1074C5.55011 11.6954 5.40345 11.244 5.05296 10.9894L1.07722 8.10081C0.293507 7.53141 0.696283 6.2918 1.66501 6.2918H6.57929C7.01252 6.2918 7.39647 6.01284 7.53035 5.60081L9.04894 0.927052Z" fill="%23FF9153"/></svg>') center no-repeat; }
      .rating .rating-stars .star-icon.disabled {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none"><path d="M8.63643 0.927052C8.93578 0.00574112 10.2392 0.00573993 10.5385 0.927051L12.0571 5.60081C12.191 6.01284 12.575 6.2918 13.0082 6.2918H17.9225C18.8912 6.2918 19.294 7.53141 18.5103 8.10081L14.5345 10.9894C14.184 11.244 14.0374 11.6954 14.1713 12.1074L15.6898 16.7812C15.9892 17.7025 14.9347 18.4686 14.151 17.8992L10.1753 15.0106C9.82478 14.756 9.35018 14.756 8.9997 15.0106L5.02396 17.8992C4.24025 18.4686 3.18576 17.7025 3.48512 16.7812L5.00371 12.1074C5.13759 11.6954 4.99093 11.244 4.64044 10.9894L0.664704 8.10081C-0.11901 7.53141 0.283765 6.2918 1.25249 6.2918H6.16677C6.6 6.2918 6.98395 6.01284 7.11783 5.60081L8.63643 0.927052Z" fill="%23C7C7C7"/></svg>') center no-repeat; }

.reviews .reviews-list:not(:last-child) {
  margin-bottom: 24px; }

.review {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--outline); }
  .review:first-child {
    border-top: 1px solid var(--outline); }
  .review.answer {
    padding-left: 50px; }
  .review .review-heading {
    padding: 4px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
    .review .review-heading:not(:last-child) {
      margin-bottom: 8px; }
  .review .reviews-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 1; }
  .review .reviews-data {
    margin-left: auto; }
  .review .answer-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: 10px; }

.btn-special {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 16px;
  min-height: auto;
  border: none;
  color: var(--blue-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (max-width: 991.98px) {
    .btn-special {
      font-size: 14px;
      line-height: 20px; } }
  @media (any-hover: hover) {
    .btn-special:hover {
      color: var(--accent-color); } }

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

.download ul, .download li {
  list-style: none;
  padding: 0;
  margin: 0; }

@media (min-width: 992px) {
  .download ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; } }

@media (max-width: 991.98px) {
  .download ul {
    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; } }

.download .download-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (any-hover: hover) {
    .download .download-item-link:hover {
      border-color: var(--blue-main); } }

.download .download-item-img {
  width: 40px;
  height: 40px;
  -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: 991.98px) {
    .download .download-item-img {
      width: 32px;
      height: 32px; } }
  .download .download-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down; }

.download .download-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color); }
  @media (max-width: 991.98px) {
    .download .download-item-content {
      font-size: 14px;
      line-height: 20px; } }
  .download .download-item-content #size {
    color: var(--secondary-color); }

.download .download-item-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  color: var(--blue-main);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .download .download-item-icon:hover {
      color: var(--accent-color); } }
  @media (max-width: 991.98px) {
    .download .download-item-icon {
      width: 20px;
      height: 20px; } }
  .download .download-item-icon .icon {
    width: 100%;
    height: 100%; }

.video-gallery {
  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; }
  .video-gallery .video-link {
    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; }
    .video-gallery .video-link picture, .video-gallery .video-link img {
      border-radius: 12px; }

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  color: var(--blue-main);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .video-play-icon:hover {
      color: var(--accent-color); } }
  .video-play-icon::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: var(--white-color); }
  .video-play-icon .icon {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%; }

.product-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }
  @media (min-width: 992px) {
    .product-article {
      border-radius: 12px;
      border: 1px solid var(--stroke-color); }
      .product-article:not(:last-child) {
        margin-bottom: 20px; } }
  @media (max-width: 991.98px) {
    .product-article {
      padding-top: 12px;
      padding-bottom: 12px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .product-article .product-article-img {
    width: 300px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden; }
    @media (min-width: 992px) {
      .product-article .product-article-img {
        border-right: 1px solid var(--stroke-color); } }
    @media (max-width: 1199.98px) {
      .product-article .product-article-img {
        width: 250px; } }
    @media (max-width: 991.98px) {
      .product-article .product-article-img {
        width: 200px; } }
    @media (max-width: 767.98px) {
      .product-article .product-article-img {
        width: 102px; } }
    @media (any-hover: hover) {
      .product-article .product-article-img:hover img, .product-article .product-article-img:focus img {
        -webkit-transform: scale(1.03);
            -ms-transform: scale(1.03);
                transform: scale(1.03); } }
    .product-article .product-article-img picture,
    .product-article .product-article-img img {
      width: 100%;
      aspect-ratio: 320 / 180;
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      will-change: transform; }
      @media (max-width: 991.98px) {
        .product-article .product-article-img picture,
        .product-article .product-article-img img {
          border-radius: 8px;
          aspect-ratio: 102 / 68; } }
  .product-article .product-article-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: 12px; }
    @media (min-width: 992px) {
      .product-article .product-article-content {
        padding: 24px; } }
    @media (max-width: 991.98px) {
      .product-article .product-article-content {
        row-gap: 8px;
        padding-left: 12px; } }
  .product-article .product-article-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;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--secondary-color); }
  .product-article .product-article-rubric {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 8px;
    background: var(--main-50); }
  .product-article .product-article-title {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }
    @media (any-hover: hover) {
      .product-article .product-article-title:hover {
        color: var(--blue-main); } }
    @media (max-width: 991.98px) {
      .product-article .product-article-title {
        font-size: 14px;
        line-height: 20px; } }
  .product-article .product-article-text {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }
    @media (max-width: 991.98px) {
      .product-article .product-article-text {
        font-size: 12px;
        line-height: 16px; } }

body.product-sticky .product-mobile-sticky {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: initial; }

.product-mobile-sticky {
  position: fixed;
  z-index: 100000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--white-color);
  -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
  -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; }
  @media (min-width: 992px) {
    .product-mobile-sticky {
      display: none; } }
  .product-mobile-sticky .product-mobile-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 60px;
    height: 60px; }
    .product-mobile-sticky .product-mobile-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .product-mobile-sticky .product-mobile-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; }
  .product-mobile-sticky .product-mobile-title {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }
  .product-mobile-sticky .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
    padding: 4px;
    width: 48px;
    height: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: var(--main-50);
    border: none; }
    .product-mobile-sticky .btn::before {
      display: none; }
    .product-mobile-sticky .btn .icon {
      width: 24px;
      height: 24px;
      color: var(--accent-color); }
  .product-mobile-sticky .price-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-size: 18px;
    line-height: 1.11; }
    .product-mobile-sticky .price-wrap .old-price {
      font-size: 12px;
      line-height: 1.33; }
    .product-mobile-sticky .price-wrap:has(.old-price) .price {
      color: var(--price-new); }

.product-fast-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 20px; }
  .product-fast-order .form-control {
    border-right: none;
    border-radius: 4px 0 0 4px; }
  .product-fast-order .btn-submit {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    white-space: nowrap;
    border-radius: 0 4px 4px 0; }
  .product-fast-order .form-error {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    margin: 0;
    padding: 2px 0;
    color: red;
    font-size: 12px; }

.share-friends {
  margin: 20px 0; }
  .share-friends .block-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px; }
  .share-friends .socials-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px; }

.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%; }

.products-carousel-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg);
  padding-top: 56px;
  padding-bottom: 56px; }
  @media (max-width: 991.98px) {
    .products-carousel-section {
      padding-top: 32px;
      padding-bottom: 32px; } }

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

.products-carousel-section {
  overflow: unset; }

.products-carousel-wrap {
  overflow: hidden; }
  .products-carousel-wrap .container {
    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; }
    .products-carousel-wrap .container .swiper {
      width: 100%; }
  @media (max-width: 991.98px) {
    .products-carousel-wrap:has(.articles-latest-text-slider) .products-carousel-tab-content {
      margin: 0 -16px; } }
  .products-carousel-wrap .articles-latest-text-slider {
    padding: 0 !important;
    overflow: hidden !important; }
    @media (min-width: 992px) {
      .products-carousel-wrap .articles-latest-text-slider {
        border-radius: 12px;
        border: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .products-carousel-wrap .articles-latest-text-slider {
        border-top: 1px solid var(--stroke-color);
        border-bottom: 1px solid var(--stroke-color); } }
    .products-carousel-wrap .articles-latest-text-slider .swiper-nav {
      border: none; }

.products-carousel {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .products-carousel {
      border-radius: 12px;
      border: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .products-carousel {
      margin: 0 -16px;
      border-top: 1px solid var(--stroke-color);
      margin-bottom: 1px solid var(--stroke-color); }
      .products-carousel:not(:last-child) {
        margin-bottom: 16px; } }
  .products-carousel:not(.swiper-initialized) {
    overflow: hidden; }
    .products-carousel:not(.swiper-initialized) .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .products-carousel:not(.swiper-initialized) .swiper-slide {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 25%; }
      @media (max-width: 991.98px) {
        .products-carousel:not(.swiper-initialized) .swiper-slide {
          width: 33.333%; } }
      @media (max-width: 767.98px) {
        .products-carousel:not(.swiper-initialized) .swiper-slide {
          width: 50%; } }
  .products-carousel:has(.swiper-pagination-lock) {
    padding-bottom: 0 !important; }
    .products-carousel:has(.swiper-pagination-lock) .swiper-slide.last-visible .product-block {
      border-radius: 0; }
  .products-carousel:not(.swiper-initialized) .swiper-button-prev,
  .products-carousel:not(.swiper-initialized) .swiper-button-next,
  .products-carousel:not(.swiper-initialized) .swiper-pagination {
    opacity: 0;
    visibility: hidden; }
  .products-carousel.swiper-watch-progress {
    overflow: hidden !important; }
    .products-carousel.swiper-watch-progress .swiper-slide {
      opacity: 1;
      height: auto !important; }
      .products-carousel.swiper-watch-progress .swiper-slide:not(.swiper-slide-visible) {
        opacity: 1;
        pointer-events: initial;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s; }
  .products-carousel .swiper-slide {
    height: auto !important; }
  .products-carousel .swiper-nav {
    border: none;
    background: transparent;
    border-top: 1px solid var(--stroke-color); }
    @media (max-width: 991.98px) {
      .products-carousel .swiper-nav {
        border-bottom: 1px solid var(--stroke-color); } }
  .products-carousel .products-carousel-list {
    position: relative;
    z-index: 1; }

.products-carousel-nav {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  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; }
  @media (max-width: 768px) {
    .products-carousel-nav {
      margin-top: 24px;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .products-carousel-nav .swiper-button-next,
  .products-carousel-nav .swiper-button-prev {
    position: static !important;
    margin-top: 0 !important; }

.products-carousel-tabs-section {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding-top: 56px;
  padding-bottom: 56px; }
  @media (max-width: 991.98px) {
    .products-carousel-tabs-section {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .products-carousel-tabs-section:has(.articles-latest-text-slider) {
    background: var(--white-color); }

@media (max-width: 991.98px) {
  .products-carousel-tabs:not(:last-child) {
    margin-bottom: 16px; } }

.products-carousel-tabs .products-carousel-tabs-top:not(:last-child) {
  margin-bottom: 16px; }

@media (max-width: 991.98px) {
  .products-carousel-tabs .products-carousel-tabs-top {
    margin: 0 -16px; } }

.products-carousel-tabs .products-carousel-tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }
  .products-carousel-tabs .products-carousel-tabs-nav::-webkit-scrollbar {
    display: none; }
  @media (max-width: 991.98px) {
    .products-carousel-tabs .products-carousel-tabs-nav {
      padding: 0 16px; } }
  .products-carousel-tabs .products-carousel-tabs-nav .products-carousel-nav-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    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: 8px 20px;
    cursor: pointer;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (any-hover: hover) {
      .products-carousel-tabs .products-carousel-tabs-nav .products-carousel-nav-item:hover {
        border-color: var(--blue-main);
        background: var(--blue-main);
        color: var(--white-color); } }
    .products-carousel-tabs .products-carousel-tabs-nav .products-carousel-nav-item.active {
      border-color: var(--blue-main);
      background: var(--blue-main);
      color: var(--white-color); }
    @media (max-width: 991.98px) {
      .products-carousel-tabs .products-carousel-tabs-nav .products-carousel-nav-item {
        padding: 6px 12px;
        font-size: 14px; } }

.products-carousel-tabs .products-carousel-tabs-content {
  position: relative;
  z-index: 1; }

.products-carousel-tabs .products-carousel-tab-content {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .products-carousel-tabs .products-carousel-tab-content:not(.active) {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none; }

@media (min-width: 992px) {
  .products-carousel-btn {
    position: absolute;
    top: 0;
    right: 16px; } }

@media (max-width: 991.98px) {
  .products-carousel-btn {
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 575.98px) {
  .products-carousel-btn {
    width: 100%;
    min-height: 40px; } }

.product-stickers {
  --margin: 20px;
  position: absolute;
  z-index: 1;
  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; }
  @media (max-width: 991.98px) {
    .product-stickers {
      --margin: 16px; } }
  .product-stickers.stickers-top-left {
    top: var(--margin);
    left: var(--margin); }
  .product-stickers.stickers-top-right {
    top: var(--margin);
    right: var(--margin); }
  .product-stickers.stickers-bottom-left {
    bottom: var(--margin);
    left: var(--margin); }
  .product-stickers.stickers-bottom-right {
    bottom: var(--margin);
    right: var(--margin); }
  .product-stickers .label {
    min-height: 24px;
    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: 2px 12px;
    border-radius: 2px;
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25; }
    @media (max-width: 991.98px) {
      .product-stickers .label {
        min-height: 20px;
        font-size: 12px; } }
    .product-stickers .label.label-is_new {
      background: #56DAC2; }
    .product-stickers .label.label-is_top {
      background: #49A8E8; }
    .product-stickers .label.label-is_sale {
      background: var(--sale-color); }
    .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; }

.page-category {
  background: var(--bg); }

.category-page-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
  grid-template-columns: 320px 1fr; }
  .category-page-grid:not(:last-child) {
    margin-bottom: 80px; }
  @media (min-width: 992px) {
    .category-page-grid:has([js-filter-aside]) .catalog-top {
      border-radius: 0 12px 0 0; } }
  .category-page-grid:not(:has(.catalog-product-grid)) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .category-page-grid:not(:has(.catalog-product-grid)) .category-page-content::before {
      display: none; }
    .category-page-grid:not(:has(.catalog-product-grid)) .category-page-aside,
    .category-page-grid:not(:has(.catalog-product-grid)) .catalog-top {
      display: none; }
  @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:not(:last-child) {
        margin-bottom: 48px; } }
  .category-page-grid .category-page-content {
    position: relative;
    z-index: 1; }
    @media (min-width: 992px) {
      .category-page-grid .category-page-content::before {
        content: "";
        position: absolute;
        top: 0;
        right: 100%;
        width: 1px;
        height: 100%;
        background: var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .category-page-grid .category-page-content {
        margin: 0 -16px; } }
  .category-page-grid .catalog-top {
    position: relative;
    z-index: 1000;
    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;
    padding: 16px 20px;
    background: var(--white-color);
    border-left: none; }
    @media (min-width: 992px) {
      .category-page-grid .catalog-top {
        border-radius: 12px 12px 0 0;
        border: 1px solid var(--stroke-color); } }
    @media (max-width: 991.98px) {
      .category-page-grid .catalog-top {
        padding: 0;
        gap: 0;
        border-top: 1px solid var(--stroke-color);
        border-bottom: 1px solid var(--stroke-color); }
        .category-page-grid .catalog-top:has(.btn-filter-mobile) .btn-filter-mobile {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1;
          width: 50%; }
        .category-page-grid .catalog-top:has(.btn-filter-mobile) .catalog-sorting-wrap {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2;
          width: 50%; }
        .category-page-grid .catalog-top:has(.btn-filter-mobile) .per-page-wrap {
          -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
                  order: 3;
          width: 100%;
          border-top: 1px solid var(--stroke-color);
          border-bottom: none; }
        .category-page-grid .catalog-top .catalog-sorting-wrap {
          width: 100%;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
        .category-page-grid .catalog-top .sorting-select-wrap {
          width: 100%; }
          .category-page-grid .catalog-top .sorting-select-wrap .jq-selectbox {
            min-height: 52px;
            padding: 16px;
            width: 100%; } }
      @media (max-width: 991.98px) and (max-width: 991.98px) {
        .category-page-grid .catalog-top .sorting-select-wrap .jq-selectbox {
          padding: 0; } }
    @media (max-width: 991.98px) {
            .category-page-grid .catalog-top .sorting-select-wrap .jq-selectbox .jq-selectbox__select {
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center; }
        .category-page-grid .catalog-top .per-page-wrap {
          width: 100%;
          padding: 14px 16px;
          border-bottom: 1px solid var(--stroke-color); } }
  .category-page-grid .aside-elem {
    padding: 24px; }
    @media (max-width: 991.98px) {
      .category-page-grid .aside-elem {
        padding: 20px 16px; } }
    .category-page-grid .aside-elem:not(:last-child) {
      border-bottom: 1px solid var(--stroke-color); }
    .category-page-grid .aside-elem.accordion-collapsed .arrow-wrap {
      -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
              transform: rotate(0deg); }

@media (min-width: 992px) {
  .category-page-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 12px 0 0 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); } }

@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:has(.attribute-checkbox.active) .category-aside-bottom {
  opacity: 1;
  pointer-events: initial;
  visibility: visible; }

@media (max-width: 991.98px) {
  .category-page-aside:has(.attribute-checkbox.active) .category-page-aside-wrap {
    padding-bottom: 104px; } }

.category-page-aside .category-aside-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  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(--blue-main); }
  @media (min-width: 992px) {
    .category-page-aside .category-aside-top {
      display: none; } }
  .category-page-aside .category-aside-top .category-aside-top-title {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
  .category-page-aside .category-aside-top .category-aside-top-close {
    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-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); }
    .category-page-aside .category-aside-top .category-aside-top-close .icon {
      width: 16px;
      height: 16px;
      color: var(--white-color); }

.category-page-aside .slider-nav {
  padding-top: 16px; }
  .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: 6px; }
    .category-page-aside .slider-nav .amount:not(:last-child) {
      margin-bottom: 26px; }
  .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: 6px;
    min-width: 78px;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      .category-page-aside .slider-nav .amount-item {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
        .category-page-aside .slider-nav .amount-item .input-wrap {
          width: 100%; }
          .category-page-aside .slider-nav .amount-item .input-wrap input {
            max-width: 100%; } }
    .category-page-aside .slider-nav .amount-item .from, .category-page-aside .slider-nav .amount-item .to {
      font-size: 14px;
      line-height: 20px;
      color: var(--grey-color); }
    .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: 44px;
      max-width: 78px;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-align: center;
      color: var(--black-color);
      border-radius: 12px;
      border: 1px solid var(--blue-main);
      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 {
          border-color: var(--accent-color); } }
      .category-page-aside .slider-nav .amount-item input:focus {
        border-color: var(--accent-color); }
      .category-page-aside .slider-nav .amount-item input:focus-visible, .category-page-aside .slider-nav .amount-item input:focus {
        border-color: var(--accent-color);
        outline: none; }
  .category-page-aside .slider-nav .ui-slider {
    height: 4px; }
    .category-page-aside .slider-nav .ui-slider:not(:last-child) {
      margin-bottom: 24px; }
  .category-page-aside .slider-nav .ui-widget-content {
    background: var(--white-color);
    height: 4px;
    border-radius: 100px;
    border: none;
    margin: 0 10px; }
    .category-page-aside .slider-nav .ui-widget-content:after {
      content: "";
      display: block;
      position: absolute;
      border-radius: 100px;
      top: 0;
      bottom: 0;
      left: -10px;
      right: -10px;
      background: var(--stroke-color); }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range {
    height: 4px;
    top: 0;
    background: transparent; }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: var(--blue-main); }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle {
    top: 50%;
    width: 32px;
    height: 32px;
    display: block;
    border: none;
    outline: none;
    background: transparent;
    margin-left: -16px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      width: 20px;
      height: 20px;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background: var(--white-color);
      border: 4px solid var(--blue-main);
      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 {
    margin-top: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 56px;
    height: 44px;
    min-height: 44px;
    padding: 4px;
    border-radius: 12px;
    font-weight: 700;
    background: var(--blue-main);
    color: var(--white-color);
    border: none;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease; }
    @media (any-hover: hover) {
      .category-page-aside .slider-nav .btn-apply:hover {
        background: var(--accent-color); } }

@media (min-width: 992px) {
  .category-page-aside .category-aside-bottom {
    display: none; } }

@media (max-width: 991.98px) {
  .category-page-aside .category-aside-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--white-color);
    -webkit-box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
    .category-page-aside .category-aside-bottom .btn {
      width: 100%; }
    .category-page-aside .category-aside-bottom .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: 20px;
      gap: 4px;
      padding: 0;
      color: var(--blue-main);
      font-size: 14px;
      font-weight: 500;
      line-height: 20px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .category-page-aside .category-aside-bottom .filter-selected-clear .icon-wrap {
        width: 12px;
        height: 12px;
        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; }
        .category-page-aside .category-aside-bottom .filter-selected-clear .icon-wrap .ic {
          width: 100%;
          height: 100%; } }
    @media (max-width: 991.98px) and (any-hover: hover) {
      .category-page-aside .category-aside-bottom .filter-selected-clear:hover {
        color: var(--accent-color); } }

@media (max-width: 991.98px) {
      .category-page-aside .category-aside-bottom .filter-selected-clear:focus {
        color: var(--accent-color); } }

.catalog-product-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .catalog-product-grid .product-block {
    width: 25%;
    background: var(--white-color);
    border-right: 1px solid var(--stroke-color);
    border-bottom: 1px solid var(--stroke-color); }
    @media (max-width: 1199.98px) {
      .catalog-product-grid .product-block {
        width: 33.333%; } }
    @media (max-width: 767.98px) {
      .catalog-product-grid .product-block {
        width: 50%; } }

.category-page-aside {
  position: relative;
  height: 100%; }
  @media (max-width: 991.98px) {
    .category-page-aside {
      position: fixed;
      height: auto; } }

.category-page-aside-wrap {
  position: sticky;
  top: 140px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-left: 2px; }
  .category-page-aside-wrap .catalog-filter {
    max-height: calc(100vh - 130px);
    overflow-y: scroll; }
    @media (min-width: 992px) {
      .category-page-aside-wrap .catalog-filter, .category-page-aside-wrap .catalog-filter * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar-button,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar-button {
        display: none; }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar-track,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar-track {
        background: var(--main-100); }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar-track-piece,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar-track-piece {
        background: var(--main-100); }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar-thumb,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar-thumb {
        background: var(--theme-color-main);
        border-radius: 99px; }
      .category-page-aside-wrap .catalog-filter::-webkit-scrollbar-corner,
      .category-page-aside-wrap .catalog-filter *::-webkit-scrollbar-corner {
        background: var(--main-100); } }
  @media (max-width: 991.98px) {
    .category-page-aside-wrap {
      top: auto;
      position: relative; }
      .category-page-aside-wrap .catalog-filter {
        max-height: 100%; } }

body:has(.header-scroll) .category-page-aside-wrap {
  top: 90px; }
  @media (max-width: 991.98px) {
    body:has(.header-scroll) .category-page-aside-wrap {
      top: auto; } }

@media (max-width: 991.98px) {
  .category-page-aside-wrap {
    padding: 64px 0 0;
    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(--black-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  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(--secondary-color);
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
    -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 .ic,
    .aside-elem-title .arrow-wrap .icon {
      width: 12px;
      height: 12px; }

.btn-filter-mobile {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 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;
  width: 50%;
  min-height: 52px;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white-color);
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--stroke-color);
  color: var(--blue-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: none; }
  .btn-filter-mobile .icon {
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .btn-filter-mobile .count {
    width: 16px;
    height: 16px;
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue-main);
    color: var(--white-color);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px; }
    .btn-filter-mobile .count:empty {
      display: none; }
  @media (min-width: 992px) {
    .btn-filter-mobile {
      display: none; } }

.catalog-aside-nav {
  position: relative;
  z-index: 10; }
  .catalog-aside-nav.nav-tabs-active .catalog-aside-nav-btn::after {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .catalog-aside-nav.nav-tabs-active .catalog-aside-nav-list {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    pointer-events: initial; }
  @media (max-width: 991.98px) {
    .catalog-aside-nav .aside-elem {
      padding: 0; } }
  .catalog-aside-nav ul, .catalog-aside-nav li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .catalog-aside-nav .catalog-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
    .catalog-aside-nav .catalog-title:not(:last-child) {
      margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .catalog-aside-nav .catalog-title {
        display: none; } }
  @media (max-width: 991.98px) {
    .catalog-aside-nav .catalog-aside-nav-list {
      position: absolute;
      z-index: 1000;
      top: calc(100% + 2px);
      left: 0;
      width: 100%;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      padding: 16px;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      border-radius: 12px;
      max-height: 365px;
      overflow-y: auto;
      opacity: 0;
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px);
      pointer-events: none;
      background: var(--white-color);
      border: 1px solid var(--main-200);
      -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */ }
      .catalog-aside-nav .catalog-aside-nav-list::-webkit-scrollbar {
        display: none; } }
  .catalog-aside-nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .catalog-aside-nav li:not(:last-child) {
      margin-bottom: 12px; }
    .catalog-aside-nav li ul {
      padding-top: 12px; }
    .catalog-aside-nav li .lv-2 .pr-1 {
      display: none; }
  .catalog-aside-nav a {
    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: 8px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    .catalog-aside-nav a .pr-1,
    .catalog-aside-nav a .pr-3,
    .catalog-aside-nav a .pr-2 {
      display: none; }
    .catalog-aside-nav a::before {
      content: "";
      position: relative;
      top: 10px;
      display: block;
      width: 6px;
      height: 6px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      background: var(--main-200);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -ms-flex-item-align: start;
          align-self: flex-start; }
    .catalog-aside-nav a.active {
      color: var(--blue-main); }
      .catalog-aside-nav a.active::before {
        background: var(--accent-color); }
    @media (any-hover: hover) {
      .catalog-aside-nav a:hover {
        color: var(--blue-main); }
        .catalog-aside-nav a:hover::before {
          background: var(--accent-color); } }
  .catalog-aside-nav .catalog-aside-nav-btn {
    width: 100%;
    padding: 12px 16px;
    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;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 12px;
    border: 1px solid var(--main-200);
    background: var(--white-color);
    text-transform: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .catalog-aside-nav .catalog-aside-nav-btn::after {
      content: "";
      margin-left: auto;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      display: block;
      width: 12px;
      height: 8px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path d="M11 1.5L6 6.5L1 1.5" stroke="%23171614" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center center no-repeat;
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    @media (min-width: 992px) {
      .catalog-aside-nav .catalog-aside-nav-btn {
        display: none; } }

.catalog-filter-selected {
  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;
  border-bottom: 1px solid var(--stroke-color);
  width: 100%;
  padding: 24px; }
  @media (max-width: 991.98px) {
    .catalog-filter-selected {
      padding: 16px; } }
  .catalog-filter-selected .filter-selected-title {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
  .catalog-filter-selected .filter-selected-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px; }
    @media (max-width: 991.98px) {
      .catalog-filter-selected .filter-selected-wrap {
        position: relative; } }
  .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: 4px; }
  .catalog-filter-selected .filter-selected {
    -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;
    padding: 6px 10px;
    gap: 8px;
    min-height: 32px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 6px;
    background: var(--main-50);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none; }
    .catalog-filter-selected .filter-selected b {
      font-weight: 400;
      color: var(--black-color); }
    .catalog-filter-selected .filter-selected .icon-wrap {
      width: 10px;
      height: 10px;
      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(--secondary-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected:hover {
        border-color: var(--blue-main);
        text-decoration: none; }
        .catalog-filter-selected .filter-selected:hover .icon-wrap {
          color: var(--blue-main); } }
    .catalog-filter-selected .filter-selected:focus {
      border-color: var(--blue-main);
      text-decoration: none; }
      .catalog-filter-selected .filter-selected:focus .icon-wrap {
        color: var(--blue-main); }
  .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: 20px;
    gap: 4px;
    padding: 0;
    color: var(--blue-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .catalog-filter-selected .filter-selected-clear .icon-wrap {
      width: 12px;
      height: 12px;
      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; }
      .catalog-filter-selected .filter-selected-clear .icon-wrap .ic {
        width: 100%;
        height: 100%; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected-clear:hover {
        color: var(--accent-color); } }
    .catalog-filter-selected .filter-selected-clear:focus {
      color: var(--accent-color); }

.subcategory-slider-wrap {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 24px; }
  @media (max-width: 991.98px) {
    .subcategory-slider-wrap {
      padding-bottom: 20px;
      margin: 0 -16px; } }
  .subcategory-slider-wrap .subcategory-slider {
    position: relative;
    background: var(--white-color);
    overflow: hidden;
    border: 1px solid var(--stroke-color); }
    @media (min-width: 992px) {
      .subcategory-slider-wrap .subcategory-slider {
        border-radius: 12px; } }
    .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);
        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); } }
        @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-nav {
        display: none; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-card {
      position: relative;
      min-height: 100%;
      padding: 16px 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      row-gap: 8px;
      color: var(--black-color);
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 1px;
        height: 100%;
        background: var(--stroke-color); }
      @media (max-width: 991.98px) {
        .subcategory-slider-wrap .subcategory-slider .subcategory-card {
          padding: 16px;
          font-size: 12px;
          line-height: 16px; } }
      @media (any-hover: hover) {
        .subcategory-slider-wrap .subcategory-slider .subcategory-card:hover {
          color: var(--blue-main); } }
    .subcategory-slider-wrap .subcategory-slider .subcategory-image {
      width: 80px;
      height: 80px;
      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 img, .subcategory-slider-wrap .subcategory-slider .subcategory-image picture {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-title {
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      text-overflow: ellipsis; }
    .subcategory-slider-wrap .subcategory-slider .swiper-slide {
      height: auto !important; }
    .subcategory-slider-wrap .subcategory-slider .swiper-nav {
      border: none;
      border-top: 1px solid var(--stroke-color);
      border-radius: 0;
      background: transparent; }
      @media (min-width: 992px) {
        .subcategory-slider-wrap .subcategory-slider .swiper-nav {
          padding: 8px 10px; } }

.empty-block {
  width: 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;
  padding: 64px 24px;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 16px;
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .empty-block {
      padding: 40px 20px;
      font-size: 20px; } }

.page-category-sublist {
  background: var(--bg); }

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

.categories-navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  border-radius: 12px;
  border: 1px solid var(--stroke-color);
  background: var(--white-color);
  overflow: hidden; }
  @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; } }
  .categories-navigation .category-card {
    padding: 32px;
    -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
            box-shadow: 0 0 0 1px var(--stroke-color); }
    @media (max-width: 991.98px) {
      .categories-navigation .category-card {
        padding: 24px; } }
    @media (max-width: 575.98px) {
      .categories-navigation .category-card {
        -webkit-box-shadow: none;
                box-shadow: none;
        border-bottom: 1px solid var(--stroke-color); } }
    .categories-navigation .category-card .category-img {
      display: block;
      position: relative;
      margin-bottom: 16px; }
      .categories-navigation .category-card .category-img img, .categories-navigation .category-card .category-img picture {
        display: block; }
    .categories-navigation .category-card .category-title {
      color: var(--black-color);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2;
      text-transform: uppercase;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .categories-navigation .category-card .category-title:hover {
          color: var(--blue-main); } }
    .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: 12px;
      margin-top: 12px; }
      .categories-navigation .category-card .category-sub-navigation a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
        color: var(--secondary-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        .categories-navigation .category-card .category-sub-navigation a::before {
          content: "";
          display: block;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          margin-top: 9px;
          -ms-flex-item-align: start;
              align-self: flex-start;
          width: 6px;
          height: 6px;
          border-radius: 50%;
          background: var(--main-200);
          -webkit-transition: background 0.3s ease;
          transition: background 0.3s ease; }
        @media (any-hover: hover) {
          .categories-navigation .category-card .category-sub-navigation a:hover {
            color: var(--blue-main); }
            .categories-navigation .category-card .category-sub-navigation a:hover::before {
              background: var(--blue-main); } }

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

.catalog-filter .aside-elem-list {
  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: 12px; }

.catalog-filter .aside-elem-list {
  overflow: auto;
  max-height: 278px;
  padding-right: 5px; }

.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 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary-color);
  text-decoration: none; }
  .catalog-filter .attribute-checkbox .items {
    color: var(--grey-color); }
  .catalog-filter .attribute-checkbox .checkmark {
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid var(--main-200);
    background-color: var(--white-color);
    border-radius: 6px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .catalog-filter .attribute-checkbox.active .checkmark {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10" fill="none"><path d="M1 5L5.00029 9L13 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-color: var(--blue-main);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    border-color: var(--blue-main); }
  @media (any-hover: hover) {
    .catalog-filter .attribute-checkbox:hover {
      color: var(--blue-main); }
      .catalog-filter .attribute-checkbox:hover .checkmark {
        border-color: var(--blue-main); } }
  .catalog-filter .attribute-checkbox:focus {
    color: var(--blue-main); }
    .catalog-filter .attribute-checkbox:focus .checkmark {
      border-color: var(--blue-main); }

.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; }

.filter-search-wrap {
  position: relative;
  margin-top: 12px; }
  .filter-search-wrap .icon {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: var(--blue-main); }
  .filter-search-wrap input {
    height: 48px;
    width: 100%;
    padding: 12px 40px 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--main-200);
    background: var(--white-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .filter-search-wrap input:hover {
        border-color: var(--blue-main);
        outline: none; } }
    .filter-search-wrap input:focus {
      border-color: var(--blue-main);
      outline: none; }
    .filter-search-wrap input::-webkit-input-placeholder {
      color: var(--grey-color); }
    .filter-search-wrap input::-moz-placeholder {
      color: var(--grey-color); }
    .filter-search-wrap input:-ms-input-placeholder {
      color: var(--grey-color); }
    .filter-search-wrap input::-ms-input-placeholder {
      color: var(--grey-color); }
    .filter-search-wrap input::placeholder {
      color: var(--grey-color); }

.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: 4px; }
  .catalog-sorting-wrap .sorting-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    .catalog-sorting-wrap .sorting-title .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      padding: 2px;
      color: var(--accent-color); }
    .catalog-sorting-wrap .sorting-title::after {
      content: ":"; }
    @media (max-width: 991.98px) {
      .catalog-sorting-wrap .sorting-title {
        display: none; } }
  @media (max-width: 991.98px) {
    .catalog-sorting-wrap .jq-selectbox {
      padding: 0; } }
  .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;
    width: 100%;
    padding: 0 20px 0 0;
    background: var(--white);
    border: none;
    font-family: "Ubuntu", sans-serif;
    color: var(--black-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (max-width: 991.98px) {
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select {
        height: 52px;
        padding: 16px; }
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select::before {
          content: "";
          display: block;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          width: 14px;
          height: 14px;
          margin-right: 4px;
          background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 22 32'%3E%3Cpath fill='%2356dac2' d='M11 0c0.583 0 1.143 0.211 1.556 0.586l8.8 8c0.859 0.781 0.859 2.047 0 2.828s-2.252 0.781-3.111 0l-7.244-6.586-7.244 6.586c-0.859 0.781-2.252 0.781-3.111 0s-0.859-2.047 0-2.828l8.8-8c0.412-0.375 0.972-0.586 1.556-0.586zM0.644 20.586c0.859-0.781 2.252-0.781 3.111 0l7.244 6.586 7.244-6.586c0.859-0.781 2.252-0.781 3.111 0s0.859 2.047 0 2.828l-8.8 8c-0.859 0.781-2.252 0.781-3.111 0l-8.8-8c-0.859-0.781-0.859-2.047 0-2.828z'%3E%3C/path%3E%3C/svg%3E") center no-repeat; } }
    .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(--black-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (max-width: 991.98px) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content;
          font-size: 14px;
          line-height: 20px; } }
      @media (any-hover: hover) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:hover {
          color: var(--blue-main); } }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:focus {
        color: var(--blue-main); }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger {
    width: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: transparent; }
    @media (max-width: 991.98px) {
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger {
        position: relative;
        height: 20px; } }
  .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;
    font-family: "Ubuntu", sans-serif;
    min-width: 180px;
    border: 1px solid var(--stroke-color);
    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: var(--blue-main);
        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: 12px;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; }
  @media (max-width: 991.98px) {
    .per-page-wrap {
      font-size: 14px;
      line-height: 20px; } }
  .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: 12px; }
    @media (max-width: 991.98px) {
      .per-page-wrap .per-page-list {
        gap: 8px; } }
  .per-page-wrap .per-page-item {
    color: var(--blue-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 991.98px) {
      .per-page-wrap .per-page-item {
        font-size: 14px;
        line-height: 20px; } }
    @media (any-hover: hover) {
      .per-page-wrap .per-page-item:hover {
        color: var(--accent-color); } }
    .per-page-wrap .per-page-item.active {
      padding: 2px 6px;
      background: var(--main-50);
      color: var(--secondary-color); }

.page-post-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 432px;
  grid-template-columns: 1fr 432px;
  gap: 4px; }
  @media (max-width: 1199.98px) {
    .page-post-grid {
      -ms-grid-columns: 1fr 380px;
      grid-template-columns: 1fr 380px; } }
  @media (max-width: 991.98px) {
    .page-post-grid {
      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: 48px; } }
  .page-post-grid .main-img:not(:last-child) {
    margin-bottom: 0; }
  .page-post-grid article {
    padding: 28px;
    border-radius: 12px 0 12px 12px;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .page-post-grid article {
        border-radius: 12px;
        padding: 20px 16px; } }

.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-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--stroke-color); }
  @media (max-width: 991.98px) {
    .article-content .nav-buttons {
      margin-top: 24px;
      padding-top: 24px; } }
  .article-content .nav-buttons .nav-link-item {
    gap: 12px;
    border: none;
    padding: 0;
    min-height: auto;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 991.98px) {
      .article-content .nav-buttons .nav-link-item {
        font-size: 14px;
        line-height: 20px; } }
    .article-content .nav-buttons .nav-link-item .ic {
      padding: 10px;
      width: 32px;
      height: 32px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      background: var(--main-50);
      color: var(--blue-main);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .article-content .nav-buttons .nav-link-item:hover {
        color: var(--blue-main); }
        .article-content .nav-buttons .nav-link-item:hover .ic {
          background: var(--blue-main);
          color: var(--white-color); } }
    .article-content .nav-buttons .nav-link-item:focus {
      color: var(--blue-main); }
      .article-content .nav-buttons .nav-link-item:focus .ic {
        background: var(--blue-main);
        color: var(--white-color); }
    @media (max-width: 991.98px) {
      .article-content .nav-buttons .nav-link-item {
        font-size: 14px;
        line-height: 20px; } }
  .article-content .nav-buttons .nav-link-item-prev {
    text-align: left; }
  .article-content .nav-buttons .nav-link-item-next {
    margin-left: auto;
    text-align: right; }

.article-section-youtube .preview {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 10px;
  overflow: hidden; }
  .article-section-youtube .preview picture {
    display: block;
    aspect-ratio: 37 / 20;
    overflow: hidden; }
  .article-section-youtube .preview img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .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 {
  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;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--stroke-color);
  border-bottom: 1px solid var(--stroke-color); }
  .article-header .article-rubric-badge {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .article-header .article-rubric-badge {
        font-size: 14px;
        line-height: 20px; } }
  .article-header .date {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .article-header .date {
        font-size: 14px;
        line-height: 20px; } }

.article-aside-sticky {
  border-radius: 0 12px 12px 0;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .article-aside-sticky {
      position: sticky;
      top: 136px;
      max-height: calc(100dvh - 20px - 20px);
      overflow: auto; } }
  @media (max-width: 991.98px) {
    .article-aside-sticky {
      border-radius: 12px 12px 0 0; } }

.article-aside-slider {
  overflow: hidden; }
  .article-aside-slider:not(.swiper-initialized) .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
  .article-aside-slider:not(.swiper-initialized) .swiper-slide {
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .article-aside-slider:not(.swiper-initialized) .swiper-nav {
    display: none; }
  .article-aside-slider .swiper-nav {
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--stroke-color); }
    @media (min-width: 992px) {
      .article-aside-slider .swiper-nav {
        padding: 8px 10px; } }
  .article-aside-slider .product-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    padding: 28px; }
    @media (max-width: 1199.98px) {
      .article-aside-slider .product-block {
        padding: 16px; } }
    .article-aside-slider .product-block .product-img-wrap {
      position: relative;
      width: 142px;
      height: 142px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .article-aside-slider .product-block .product-img-wrap picture, .article-aside-slider .product-block .product-img-wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: scale-down;
           object-fit: scale-down; }
      @media (max-width: 1199.98px) {
        .article-aside-slider .product-block .product-img-wrap {
          width: 132px;
          height: 132px; } }
      @media (max-width: 1199.98px) {
        .article-aside-slider .product-block .product-img-wrap {
          width: 126px;
          height: 126px; } }
    .article-aside-slider .product-block .product-top,
    .article-aside-slider .product-block .product-bottom {
      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-aside-slider .product-block .product-top:not(:last-child),
      .article-aside-slider .product-block .product-bottom:not(:last-child) {
        margin-bottom: 8px; }
    .article-aside-slider .product-block .product-bottom {
      margin-top: auto; }
    .article-aside-slider .product-block .price-wrap {
      font-size: 22px;
      font-weight: 700;
      line-height: 24px; }
      .article-aside-slider .product-block .price-wrap .old-price {
        color: var(--grey-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 1; }
    .article-aside-slider .product-block .product-sku {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: right; }
    .article-aside-slider .product-block .product-stickers.stickers-top-left {
      --margin: 0; }

.article-aside-title {
  padding: 28px;
  color: var(--black-color);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--stroke-color); }
  @media (max-width: 991.98px) {
    .article-aside-title {
      padding: 20px 16px;
      font-size: 20px;
      line-height: 1.2; } }

.article-aside-news {
  padding: 28px;
  border-top: 4px solid var(--bg); }
  @media (max-width: 991.98px) {
    .article-aside-news {
      padding: 20px 16px; } }
  .article-aside-news .news-title {
    color: var(--black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase; }
    .article-aside-news .news-title:not(:last-child) {
      margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      .article-aside-news .news-title {
        font-size: 20px;
        line-height: 1.2; }
        .article-aside-news .news-title:not(:last-child) {
          margin-bottom: 16px; } }
  .article-aside-news .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .article-aside-news .news-item {
    width: 100%;
    padding: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--stroke-color); }
    .article-aside-news .news-item .news-item-content {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
    .article-aside-news .news-item .news-item-title {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      color: var(--black-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .article-aside-news .news-item .news-item-title:hover {
          color: var(--blue-color); } }
      .article-aside-news .news-item .news-item-title:focus {
        color: var(--blue-color); }
      .article-aside-news .news-item .news-item-title:not(:last-child) {
        margin-bottom: 4px; }
    .article-aside-news .news-item .news-item-data {
      color: var(--secondary-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px; }
    .article-aside-news .news-item .news-item-img {
      width: 96px;
      height: 64px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .article-aside-news .news-item .news-item-img picture, .article-aside-news .news-item .news-item-img img {
        border-radius: 6px;
        aspect-ratio: 3/2; }

.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 {
  overflow: hidden;
  margin: 30px 0; }
  .articles-latest .section-btn-more {
    margin-top: 16px; }
    @media (max-width: 767.98px) {
      .articles-latest .section-btn-more {
        width: 100%; } }

.articles-latest-text-slider,
.articles-latest-video-slider {
  position: relative; }
  .articles-latest-text-slider:has(.swiper-pagination-lock),
  .articles-latest-video-slider:has(.swiper-pagination-lock) {
    padding-bottom: 0 !important; }
  .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; }

.rubrics-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  max-width: calc(100% + 32px);
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }
  .rubrics-nav::-webkit-scrollbar {
    display: none; }
  @media (max-width: 991.98px) {
    .rubrics-nav {
      margin-right: -16px;
      margin-left: -16px;
      padding-right: 16px;
      padding-left: 16px;
      gap: 8px; } }
  @media (any-hover: hover) {
    .rubrics-nav a:hover {
      border-color: var(--blue-main);
      color: var(--blue-main); } }
  .rubrics-nav a:focus {
    border-color: var(--blue-main);
    color: var(--blue-main); }
  .rubrics-nav .rubric {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 44px;
    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: 10px 20px;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 991.98px) {
      .rubrics-nav .rubric {
        padding: 4px 16px;
        font-size: 14px;
        min-height: 36px; } }
    .rubrics-nav .rubric.active {
      color: var(--white-color);
      background: var(--blue-main);
      cursor: default; }

.articles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .articles-grid .article-card {
    width: 25%; }
    @media (min-width: 992px) {
      .articles-grid .article-card:nth-child(1) {
        border-radius: 12px 0 0 0; }
      .articles-grid .article-card:nth-child(4) {
        border-radius: 0 12px 0 0; } }
    @media (max-width: 991.98px) {
      .articles-grid .article-card {
        width: 33.333%; }
        .articles-grid .article-card:nth-child(1) {
          border-radius: 12px 0 0 0; }
        .articles-grid .article-card:nth-child(3) {
          border-radius: 0 12px 0 0; } }
    @media (max-width: 767.98px) {
      .articles-grid .article-card {
        width: 50%; }
        .articles-grid .article-card:nth-child(1) {
          border-radius: 12px 0 0 0; }
        .articles-grid .article-card:nth-child(3) {
          border-radius: 0; }
        .articles-grid .article-card:nth-child(2) {
          border-radius: 0 12px 0 0; } }
    @media (max-width: 575.98px) {
      .articles-grid .article-card {
        width: 100%; }
        .articles-grid .article-card:nth-child(1) {
          border-radius: 12px 12px 0 0; }
        .articles-grid .article-card:nth-child(2), .articles-grid .article-card:nth-child(3) {
          border-radius: 0; }
        .articles-grid .article-card:last-child {
          border-radius: 0 0 12px 12px; } }

.article-card {
  position: relative;
  z-index: 1;
  background: white;
  overflow: hidden;
  min-height: 100%;
  -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
          box-shadow: 0 0 0 1px var(--stroke-color); }
  .article-card .article-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;
    overflow: hidden; }
    .article-card .article-img picture,
    .article-card .article-img img {
      width: 100%; }
  .article-card .article-content {
    padding: 20px;
    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;
    background: var(--white-color); }
  .article-card .article-info {
    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; }
  .article-card .article-title {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .article-card .article-title:hover {
        color: var(--accent-color); } }
  .article-card .article-announce {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }

.article-rubric-badge {
  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: 3px 10px;
  min-height: 24px;
  border-radius: 8px;
  background: var(--main-50);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .article-rubric-badge:hover {
      background: var(--accent-color);
      color: var(--white-color); } }
  .article-rubric-badge:focus {
    background: var(--accent-color);
    color: var(--white-color); }

.article-card.article-card-video .article-img {
  position: relative; }
  .article-card.article-card-video .article-img img {
    -o-object-fit: cover;
       object-fit: cover; }
  .article-card.article-card-video .article-img:before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M20 0C8.92683 0 0 8.92683 0 20C0 31.0732 8.92683 40 20 40C31.0732 40 40 31.0732 40 20C40 8.92683 31.0732 0 20 0ZM28.878 20.9268L15.561 28.7317C15.4146 28.8293 15.1707 28.878 15.0244 28.878C14.878 28.878 14.6341 28.8293 14.4878 28.7317C14.1463 28.4878 13.9512 28.1951 13.9512 27.8049V12.2439H13.9024C13.9024 11.8537 14.1463 11.4634 14.439 11.3171C14.7317 11.1707 15.2195 11.0732 15.561 11.3171L28.878 19.0732C29.2195 19.3171 29.4146 19.6098 29.4146 20C29.4146 20.3902 29.1707 20.7805 28.878 20.9268Z" fill="%232D7DD2"/></svg>') center no-repeat;
    background-size: contain;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .article-card.article-card-video .article-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: var(--white-color); }
  @media (any-hover: hover) {
    .article-card.article-card-video .article-img:hover:before, .article-card.article-card-video .article-img:focus:before {
      -webkit-transform: translateX(-50%) translateY(-50%) scale(1.05);
          -ms-transform: translateX(-50%) translateY(-50%) scale(1.05);
              transform: translateX(-50%) translateY(-50%) scale(1.05); } }

.page-contacts {
  background: var(--bg); }

@media (min-width: 992px) {
  .contacts-section .contacts-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media (max-width: 991.98px) {
  .contacts-section .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: 16px;
    margin: 0 -16px; } }

.contacts-section .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;
  min-height: 100%; }
  .contacts-section .contacts-col:first-child {
    width: 67.4%; }
    @media (min-width: 992px) {
      .contacts-section .contacts-col:first-child {
        padding-right: 16px; } }
  .contacts-section .contacts-col:last-child {
    width: 32.6%; }
    @media (min-width: 992px) {
      .contacts-section .contacts-col:last-child {
        position: sticky;
        top: 140px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content; } }
  @media (max-width: 1199.98px) {
    .contacts-section .contacts-col:first-child {
      width: 60%; }
    .contacts-section .contacts-col:last-child {
      width: 40%; } }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-col {
      width: 100%; }
      .contacts-section .contacts-col:first-child, .contacts-section .contacts-col:last-child {
        width: 100%; } }

.contacts-section .contacts-top {
  padding: 32px;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .contacts-section .contacts-top {
      border-radius: 12px 12px 0 0;
      border: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-top {
      padding: 20px 16px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .contacts-section .contacts-top a {
    color: var(--blue-main);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .contacts-section .contacts-top a:hover {
        color: var(--accent-color);
        text-decoration: underline; } }

.contacts-section .contacts-title {
  color: var(--black-color);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase; }
  .contacts-section .contacts-title:not(:last-child) {
    margin-bottom: 8px; }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-title {
      font-size: 20px;
      line-height: 1.2; } }

.contacts-section .contacts-text {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-text {
      font-size: 14px;
      line-height: 20px; } }

.contacts-section .contacts-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--stroke-color);
  border-top: none;
  background: var(--white-color);
  overflow: hidden; }
  @media (min-width: 992px) {
    .contacts-section .contacts-list {
      border-radius: 0 0 12px 12px; } }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-list {
      border-bottom: 1px solid var(--stroke-color); } }

.contacts-section .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;
  width: 50%;
  padding: 32px;
  -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
          box-shadow: 0 0 0 1px var(--stroke-color); }
  @media (max-width: 1199.98px) {
    .contacts-section .contacts-block {
      padding: 20px;
      width: 100%;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .contacts-section .contacts-block:not(:last-child) {
        border-bottom: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .contacts-section .contacts-block {
      padding: 20px 16px; } }
  .contacts-section .contacts-block .contacts-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .contacts-section .contacts-block .contacts-heading {
        font-size: 16px;
        line-height: 1.5; } }
    .contacts-section .contacts-block .contacts-heading::before {
      content: "";
      display: block;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-color); }
    .contacts-section .contacts-block .contacts-heading:not(:last-child) {
      margin-bottom: 12px; }
  .contacts-section .contacts-block .contacts-info {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .contacts-section .contacts-block .contacts-info:not(:last-child) {
      margin-bottom: 12px; }
  .contacts-section .contacts-block .info-title {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
  .contacts-section .contacts-block .info-content {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    .contacts-section .contacts-block .info-content:has(.phone-item) {
      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; }
    .contacts-section .contacts-block .info-content a {
      color: var(--black-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .contacts-section .contacts-block .info-content a .quote {
        font-weight: 400; }
      @media (any-hover: hover) {
        .contacts-section .contacts-block .info-content a:hover {
          color: var(--blue-main); } }
    @media (max-width: 991.98px) {
      .contacts-section .contacts-block .info-content {
        font-size: 14px;
        line-height: 20px; } }
  .contacts-section .contacts-block .location-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    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(--blue-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) {
      .contacts-section .contacts-block .location-link:hover {
        color: var(--accent-color); } }
    .contacts-section .contacts-block .location-link .icon {
      width: 16px;
      height: 16px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.contacts-section .form-style-box {
  padding: 32px;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .contacts-section .form-style-box {
      border: 1px solid var(--stroke-color);
      border-radius: 12px; } }
  @media (max-width: 991.98px) {
    .contacts-section .form-style-box {
      padding: 20px 16px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .contacts-section .form-style-box .form-wrap .form-group:nth-child(1),
  .contacts-section .form-style-box .form-wrap .form-group:nth-child(2) {
    width: 100%; }
  .contacts-section .form-style-box textarea.form-control {
    height: 170px; }
    @media (max-width: 991.98px) {
      .contacts-section .form-style-box textarea.form-control {
        height: 110px; } }

.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; }

.content-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--bg); }
  @media (max-width: 991.98px) {
    .content-section {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .content-section .content-wrap {
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .content-section .content-wrap {
        padding: 20px 16px; } }
  .content-section .content-text {
    color: var(--secondary-color); }
    .content-section .content-text p:not(:last-child) {
      margin-bottom: 24px; }

.video-block {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--bg); }
  @media (max-width: 991.98px) {
    .video-block {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .video-block .video-block-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    border: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .video-block .video-block-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (min-width: 992px) {
    .video-block .video-block-col {
      padding: 40px;
      width: 50%; }
      .video-block .video-block-col:not(:last-child) {
        border-right: 1px solid var(--stroke-color); }
      .video-block .video-block-col:last-child {
        padding: 32px; } }
  @media (max-width: 991.98px) {
    .video-block .video-block-col {
      width: 100%;
      padding: 20px 16px; }
      .video-block .video-block-col:not(:last-child) {
        border-bottom: 1px solid var(--stroke-color); } }
  .video-block .video-block-title:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .video-block .video-block-title:not(:last-child) {
        margin-bottom: 12px; } }
  .video-block .video-block-content {
    color: var(--secondary-color); }
    .video-block .video-block-content p:not(:last-child) {
      margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        .video-block .video-block-content p:not(:last-child) {
          margin-bottom: 12px; } }
    .video-block .video-block-content ol li {
      padding-left: 36px; }
      .video-block .video-block-content ol li:not(:last-child) {
        margin-bottom: 16px; }
    .video-block .video-block-content ol li:before {
      content: counters(step-counter, ".");
      position: absolute;
      top: 50%;
      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: 24px;
      height: 24px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      text-align: center;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      color: var(--white-color);
      background: var(--blue-main); }
  .video-block .video-block-link {
    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;
    height: 100%; }
    .video-block .video-block-link img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 12px; }

.icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  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-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--blue-main);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .icon-play:hover {
      color: var(--accent-color); } }
  @media (max-width: 991.98px) {
    .icon-play {
      width: 48px;
      height: 48px; } }
  .icon-play::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: var(--white-color); }
  .icon-play .icon {
    width: 100%;
    height: 100%; }

.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-content.page-checkout {
  padding-top: 82px; }
  @media (max-width: 991.98px) {
    #page-content.page-checkout {
      padding-bottom: 0;
      padding-top: 56px; } }
  @media (max-width: 575.98px) {
    #page-content.page-checkout .page-title {
      font-size: 22px; } }

.page-checkout {
  background: var(--bg); }
  .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: 12px; }
  @media (max-width: 991.98px) {
    .order-products-table .products-table-head {
      margin-bottom: 16px; } }

.order-products-table .products-table-title {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase; }

.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; }

.step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    .step-inner {
      border-radius: 12px;
      border: 1px solid var(--stroke-color); } }
  @media (min-width: 992px) {
    .step-inner .order-card:first-child {
      border-radius: 12px 12px 0 0; }
    .step-inner .order-card:last-child {
      border-radius: 0 0 12px 12px; } }
  .step-inner .order-card:not(:last-child) {
    border-bottom: 1px solid var(--stroke-color); }

.order-card {
  position: relative;
  padding: 32px;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .order-card.step-products {
      border-radius: 12px;
      border: 1px solid var(--stroke-color); }
      .order-card.step-products .step-card-head {
        padding-right: 170px; } }
  @media (max-width: 991.98px) {
    .order-card.step-products {
      margin-bottom: 20px; } }
  @media (max-width: 1199.98px) {
    .order-card {
      padding: 24px; } }
  @media (max-width: 991.98px) {
    .order-card {
      padding: 24px 16px;
      -webkit-box-shadow: 0 0 0 1px var(--stroke-color);
              box-shadow: 0 0 0 1px var(--stroke-color); } }
  .order-card:has(.nav-tabs) {
    overflow: hidden;
    padding-top: 0; }
  .order-card #order-delivery-picker.form-group:not(:last-child) {
    margin-bottom: 0; }
  .order-card .custom-checkbox-agreement {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: default; }
    @media (any-hover: hover) {
      .order-card .custom-checkbox-agreement:hover {
        color: rgba(255, 255, 255, 0.7); } }
    @media (max-width: 991.98px) {
      .order-card .custom-checkbox-agreement {
        font-size: 12px;
        line-height: 16px; } }
    .order-card .custom-checkbox-agreement a {
      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: rgba(255, 255, 255, 0.7);
      text-decoration: underline;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .order-card .custom-checkbox-agreement a:hover {
          text-decoration: none;
          color: var(--accent-color); } }
    .order-card .custom-checkbox-agreement .checkbox {
      display: none; }
  .order-card:first-child .btn-edit-step {
    position: absolute;
    top: 32px;
    right: 32px; }
    @media (max-width: 991.98px) {
      .order-card:first-child .btn-edit-step {
        top: 24px;
        right: 16px; } }
  .order-card.order-card-totals {
    padding: 24px;
    border-radius: 12px;
    background: var(--blue-main);
    color: var(--white-color); }
    .order-card.order-card-totals:first-child {
      margin-bottom: 0; }
    @media (max-width: 991.98px) {
      .order-card.order-card-totals {
        padding: 24px 16px;
        border-radius: 0; } }
    .order-card.order-card-totals .right-side-title {
      font-size: 24px;
      font-weight: 400;
      line-height: 28px;
      text-transform: uppercase; }
      .order-card.order-card-totals .right-side-title:not(:last-child) {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
        @media (max-width: 991.98px) {
          .order-card.order-card-totals .right-side-title:not(:last-child) {
            margin-bottom: 16px;
            padding-bottom: 16px; } }
      @media (max-width: 991.98px) {
        .order-card.order-card-totals .right-side-title {
          font-size: 18px;
          line-height: 24px; } }
    .order-card.order-card-totals .btn {
      width: 100%;
      min-height: 56px; }
      .order-card.order-card-totals .btn::before {
        display: none; }
      .order-card.order-card-totals .btn[disabled] {
        opacity: 0.6;
        color: var(--white-color);
        background: var(--accent-color); }

[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; }
  .payment-type-list:not(:last-child) {
    margin-bottom: 20px; }
  .payment-type-list .payment-type {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke-color); }
    .payment-type-list .payment-type:first-child {
      border-top: 1px solid var(--stroke-color); }
  .payment-type-list .custom-radio {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    .payment-type-list .custom-radio:has(input[type="radio"]:checked) {
      color: var(--black-color); }
    .payment-type-list .custom-radio .radio-wrap {
      width: 100%;
      gap: 10px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 992px) {
        .payment-type-list .custom-radio .radio-wrap {
          display: -ms-grid;
          display: grid;
          -ms-grid-columns: 40% 1fr;
          grid-template-columns: 40% 1fr; } }
      @media (max-width: 991.98px) {
        .payment-type-list .custom-radio .radio-wrap {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 16px;
          line-height: 24px; } }
    .payment-type-list .custom-radio .radio-image {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      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) {
        .payment-type-list .custom-radio .radio-image {
          margin-left: auto; } }
      .payment-type-list .custom-radio .radio-image img {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 24px;
        height: 24px;
        -o-object-fit: scale-down;
           object-fit: scale-down;
        -o-object-position: center;
           object-position: center; }
    .payment-type-list .custom-radio .checkmark {
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 24px;
      height: 24px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .payment-type-list .custom-radio .checkmark::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--white);
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
    .payment-type-list .custom-radio input[type="radio"]:checked ~ .checkmark {
      background-image: none; }

.payment-picker .payment-details {
  border: 1px solid var(--stroke-color);
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--main-50); }
  .payment-picker .payment-details > :last-child {
    margin-bottom: 0; }

.custom-checkbox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .step-card .custom-checkbox {
    color: var(--secondary-color); }
  @media (max-width: 991.98px) {
    .custom-checkbox {
      font-size: 14px;
      line-height: 20px; } }
  .custom-checkbox input[type="checkbox"],
  .custom-checkbox input[type="radio"] {
    display: none; }
  .custom-checkbox .checkbox,
  .custom-checkbox .checkmark {
    -ms-flex-item-align: start;
        align-self: flex-start;
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: var(--white-color);
    border: 1px solid var(--main-200);
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    border-radius: 4px; }
  .custom-checkbox input[type="checkbox"]:checked ~ .checkbox,
  .custom-checkbox input[type="checkbox"]:checked ~ .checkmark,
  .custom-checkbox input[type="radio"]:checked ~ .checkmark {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10" fill="none"><path d="M1 5L5.00029 9L13 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-color: var(--blue-main);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-color: var(--blue-main); }
  @media (any-hover: hover) {
    .custom-checkbox:hover {
      color: var(--blue-main); }
      .custom-checkbox:hover .checkmark {
        border-color: var(--blue-main); } }
  .custom-checkbox:focus {
    color: var(--blue-main); }
    .custom-checkbox:focus .checkmark {
      border-color: var(--blue-main); }
  .custom-checkbox .form-error {
    position: absolute;
    top: 100%;
    left: 0; }

.custom-radio {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (max-width: 991.98px) {
    .custom-radio {
      font-size: 14px;
      line-height: 20px; } }
  .custom-radio input[type="radio"] {
    display: none; }
  .custom-radio .checkmark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: var(--white-color);
    border: 1px solid var(--main-200);
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    border-radius: 50%; }
    .custom-radio .checkmark::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: var(--white-color); }
  .custom-radio input[type="radio"]:checked ~ .checkmark {
    background-color: var(--blue-main);
    border-color: var(--blue-main); }
  @media (any-hover: hover) {
    .custom-radio:hover {
      color: var(--blue-main); }
      .custom-radio:hover .checkmark {
        border-color: var(--blue-main); } }
  .custom-radio:focus {
    color: var(--blue-main); }
    .custom-radio:focus .checkmark {
      border-color: var(--blue-main); }
  .custom-radio .form-error {
    position: absolute;
    top: 100%;
    left: 0; }

.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;
  margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .order-totals-block {
      margin-bottom: 16px; } }
  .order-totals-block .price-wrap {
    color: var(--white-color); }
    .order-totals-block .price-wrap .price {
      color: var(--white-color); }
  .order-totals-block .total-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;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .order-totals-block .total-item {
        font-size: 14px;
        line-height: 20px; } }
    .order-totals-block .total-item:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .order-totals-block .total-item:not(:last-child) {
          margin-bottom: 16px; } }
    .order-totals-block .total-item .total-item-title {
      color: rgba(255, 255, 255, 0.8); }
      @media (min-width: 992px) {
        .order-totals-block .total-item .total-item-title {
          width: 40%; } }
    .order-totals-block .total-item .price-wrap {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px; }
      @media (max-width: 991.98px) {
        .order-totals-block .total-item .price-wrap {
          font-size: 14px;
          line-height: 20px; }
          .order-totals-block .total-item .price-wrap .price-text {
            font-size: 14px;
            line-height: 20px; } }
    .order-totals-block .total-item.total-item-in-total {
      padding-top: 20px;
      padding-bottom: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      @media (max-width: 991.98px) {
        .order-totals-block .total-item.total-item-in-total {
          padding-top: 16px;
          padding-bottom: 16px; } }
      .order-totals-block .total-item.total-item-in-total .price-wrap {
        text-align: right;
        color: var(--white-color);
        font-size: 32px;
        font-weight: 700;
        line-height: 1; }
        .order-totals-block .total-item.total-item-in-total .price-wrap .price {
          color: var(--white-color); }
        .order-totals-block .total-item.total-item-in-total .price-wrap span {
          font-size: 22px;
          line-height: 24px; }
        @media (max-width: 991.98px) {
          .order-totals-block .total-item.total-item-in-total .price-wrap {
            font-size: 24px; }
            .order-totals-block .total-item.total-item-in-total .price-wrap span {
              font-size: 16px;
              line-height: 1.5; } }
    .order-totals-block .total-item .price-text {
      text-align: right;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
      color: var(--white-color); }

.pickup-address-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: 10px; }
  .pickup-address-list .pickup-address {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--stroke-color); }
    .pickup-address-list .pickup-address:first-child {
      border-top: 1px solid var(--stroke-color); }
    .pickup-address-list .pickup-address:has(input[type="radio"]:checked) {
      color: var(--black-color); }
    .pickup-address-list .pickup-address .radio-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      min-width: 0; }
    .pickup-address-list .pickup-address .radio-title {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px; }
    @media (max-width: 991.98px) {
      .pickup-address-list .pickup-address {
        padding-top: 14px;
        padding-bottom: 14px; }
        .pickup-address-list .pickup-address .radio-title {
          font-size: 14px;
          line-height: 20px; } }

@media (min-width: 992px) {
  .checkout-grid-by-steps {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 8fr 4fr;
    grid-template-columns: 8fr 4fr;
    gap: 16px; }
    .checkout-grid-by-steps .right-side {
      position: sticky;
      top: 85px;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content; } }

@media (max-width: 991.98px) {
  .checkout-grid-by-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 -16px; } }

.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; }
  @media (min-width: 992px) {
    .checkout-grid-by-steps .left-side {
      gap: 16px; } }

.checkout-grid-by-steps .nav.nav-tabs {
  margin: 0 -32px 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;
  border-bottom: 1px solid var(--stroke-color);
  background: var(--white-color); }
  @media (min-width: 992px) {
    .checkout-grid-by-steps .nav.nav-tabs {
      border-radius: 12px 12px 0 0; } }
  @media (max-width: 991.98px) {
    .checkout-grid-by-steps .nav.nav-tabs {
      margin: 0 -24px 24px; } }
  .checkout-grid-by-steps .nav.nav-tabs .nav-item {
    width: 50%;
    margin-bottom: 0; }
  .checkout-grid-by-steps .nav.nav-tabs .nav-link {
    position: relative;
    padding: 16px 24px;
    margin: 0;
    border: none !important;
    color: var(--secondary-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 991.98px) {
      .checkout-grid-by-steps .nav.nav-tabs .nav-link {
        padding: 16px 6px;
        font-size: 14px;
        line-height: 20px; } }
    @media (any-hover: hover) {
      .checkout-grid-by-steps .nav.nav-tabs .nav-link:hover {
        color: var(--blue-main); } }
    .checkout-grid-by-steps .nav.nav-tabs .nav-link::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 100%;
      height: 2px;
      -webkit-transform: translateX(-50%) scale(0.8);
          -ms-transform: translateX(-50%) scale(0.8);
              transform: translateX(-50%) scale(0.8);
      background: var(--blue-main);
      opacity: 0;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .nav-item:first-child .checkout-grid-by-steps .nav.nav-tabs .nav-link {
      padding-left: 0; }
    .nav-item:last-child .checkout-grid-by-steps .nav.nav-tabs .nav-link {
      padding-right: 0; }
    .checkout-grid-by-steps .nav.nav-tabs .nav-link.active {
      color: var(--blue-main); }
      .checkout-grid-by-steps .nav.nav-tabs .nav-link.active::before {
        opacity: 1;
        -webkit-transform: translateX(-50%) scale(1);
            -ms-transform: translateX(-50%) scale(1);
                transform: translateX(-50%) scale(1); }

.step-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-right: 76px; }
  @media (max-width: 991.98px) {
    .step-card-head {
      margin-bottom: 16px; } }
  .step-card-head .step-card-title {
    margin-right: auto;
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .step-card-head .step-card-title {
        font-size: 18px;
        line-height: 24px; } }

.step-card .step-title {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase; }
  .step-card .step-title:not(:last-child) {
    margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .step-card .step-title {
      font-size: 18px;
      line-height: 24px; }
      .step-card .step-title:not(:last-child) {
        margin-bottom: 16px; } }
  .step-card .step-title .btn {
    margin-left: auto; }

.step-card .form-grid {
  gap: 20px 16px; }
  @media (max-width: 991.98px) {
    .step-card .form-grid {
      gap: 16px; } }
  @media (min-width: 992px) {
    .step-card .form-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 991.98px) {
    .step-card .form-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .step-card .form-grid .form-group:not(:last-child) {
    margin-bottom: 0; }

.step-completed-info {
  width: 100%;
  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; }
  .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: 12px;
  max-width: 100%; }
  @media (min-width: 992px) {
    .cart-products-list, .cart-products-list * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .cart-products-list::-webkit-scrollbar,
    .cart-products-list *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .cart-products-list::-webkit-scrollbar-button,
    .cart-products-list *::-webkit-scrollbar-button {
      display: none; }
    .cart-products-list::-webkit-scrollbar-track,
    .cart-products-list *::-webkit-scrollbar-track {
      background: var(--main-100); }
    .cart-products-list::-webkit-scrollbar-track-piece,
    .cart-products-list *::-webkit-scrollbar-track-piece {
      background: var(--main-100); }
    .cart-products-list::-webkit-scrollbar-thumb,
    .cart-products-list *::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 99px; }
    .cart-products-list::-webkit-scrollbar-corner,
    .cart-products-list *::-webkit-scrollbar-corner {
      background: var(--main-100); } }
  @media (max-width: 991.98px) {
    .cart-products-list {
      gap: 8px; } }
  .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: 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;
      height: 20px;
      min-width: 20px;
      padding: 2px;
      border-radius: 800px;
      border: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 1;
      text-align: center;
      border-color: var(--blue-main);
      background: var(--blue-main);
      color: var(--white-color); }
      @media (max-width: 991.98px) {
        .cart-products-list .cart-product .cart-product-qty,
        .cart-products-list .cart-product-set .cart-product-qty {
          top: -4px;
          right: -4px;
          min-width: 16px;
          height: 16px;
          font-size: 10px;
          line-height: 1.2; } }
      .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-radius: 8px;
    display: block;
    width: 104px;
    height: 104px;
    border: 1px solid var(--stroke-color);
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease; }
    @media (max-width: 991.98px) {
      .cart-products-list .cart-product-img {
        width: 76px;
        height: 76px; } }
    @media (any-hover: hover) {
      .cart-products-list .cart-product-img:hover {
        border-color: var(--blue-main); } }
    .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: 8px; }

.btn-next-step {
  margin-top: 20px;
  background: var(--blue-main);
  border-color: var(--blue-main); }
  @media (max-width: 575.98px) {
    .btn-next-step {
      width: 100%;
      margin-top: 16px; } }
  .btn-next-step:hover {
    background: var(--blue-main);
    border-color: var(--blue-main); }
  @media (any-hover: hover) {
    .btn-next-step:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
      color: var(--white-color); }
      .btn-next-step:hover::before {
        background: var(--white-color); } }

.form-required-fields-note {
  margin-top: 20px;
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 20px; }
  @media (max-width: 991.98px) {
    .form-required-fields-note {
      margin-top: 16px; } }

.order-comment:not(:last-child) {
  margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .order-comment:not(:last-child) {
      margin-bottom: 16px; } }

.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: 12px;
  color: var(--blue-main);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .order-comment .btn-show-comment:hover {
      color: var(--accent-color); }
      .order-comment .btn-show-comment:hover .ic {
        color: var(--accent-color);
        border-color: var(--accent-color); } }
  .order-comment .btn-show-comment .ic {
    width: 24px;
    height: 24px;
    padding: 2px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--blue-main);
    font-size: 16px;
    color: var(--blue-main);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.order-comment .order-comment-field {
  position: relative;
  display: none;
  gap: 20px; }
  .order-comment .order-comment-field .field-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%; }

.order-comment .close-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .order-comment .close-wrap .ic {
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .order-comment .close-wrap .ic:hover {
        color: var(--blue-main); } }

.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; }

.btn-edit-step {
  gap: 4px;
  color: var(--blue-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border: none;
  padding: 4px 0;
  min-height: 32px;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  @media (max-width: 991.98px) {
    .btn-edit-step {
      font-size: 12px;
      line-height: 16px;
      min-height: 24px; } }
  @media (any-hover: hover) {
    .btn-edit-step:hover {
      color: var(--accent-color); } }
  .btn-edit-step .ic {
    width: 16px;
    height: 16px; }

.cart-product,
.cart-product-set {
  -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; }
  .cart-product.is-collapsed, .cart-product.is-hidden,
  .cart-product-set.is-collapsed,
  .cart-product-set.is-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden; }

.cart-products-list {
  width: 100%;
  height: 104px;
  overflow: hidden; }
  .cart-products-list:has(.is-active) {
    overflow: initial;
    height: auto; }
  @media (max-width: 991.98px) {
    .cart-products-list {
      height: 82px;
      padding-top: 6px;
      margin-top: -6px; } }

.js-btn-show-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 104px;
          flex: 0 1 104px;
  height: 104px;
  padding: 8px;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: var(--secondary-color);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  border-radius: 8px;
  border: 1px solid var(--stroke-color);
  background: var(--white);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  display: none; }
  @media (any-hover: hover) {
    .js-btn-show-more:hover {
      color: var(--blue-main);
      border-color: var(--blue-main); } }
  .js-btn-show-more span {
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }
  @media (max-width: 991.98px) {
    .js-btn-show-more {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 76px;
              flex: 0 1 76px;
      width: 76px;
      height: 76px;
      font-size: 10px;
      line-height: 1.4; } }
  .js-btn-show-more::before {
    content: "";
    width: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32" fill="none"><path d="M3.20002 19.2C4.96735 19.2 6.40004 17.7673 6.40004 15.9999C6.40004 14.2326 4.96735 12.7999 3.20002 12.7999C1.4327 12.7999 0 14.2326 0 15.9999C0 17.7673 1.4327 19.2 3.20002 19.2Z" fill="%232D7DD2"/><path d="M15.9998 19.2C17.7672 19.2 19.1998 17.7673 19.1998 15.9999C19.1998 14.2326 17.7672 12.7999 15.9998 12.7999C14.2325 12.7999 12.7998 14.2326 12.7998 15.9999C12.7998 17.7673 14.2325 19.2 15.9998 19.2Z" fill="%232D7DD2"/><path d="M28.7996 19.2C30.567 19.2 31.9997 17.7673 31.9997 15.9999C31.9997 14.2326 30.567 12.7999 28.7996 12.7999C27.0323 12.7999 25.5996 14.2326 25.5996 15.9999C25.5996 17.7673 27.0323 19.2 28.7996 19.2Z" fill="%232D7DD2"/></svg>') center no-repeat; }
    @media (max-width: 991.98px) {
      .js-btn-show-more::before {
        width: 20px;
        height: 20px; } }

#page-content.page-checkout-success {
  background: var(--bg); }
  @media (max-width: 991.98px) {
    #page-content.page-checkout-success {
      padding-bottom: 0;
      padding-top: 56px; } }

.checkout-success-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden; }
  @media (min-width: 992px) {
    .checkout-success-grid {
      border-radius: 12px;
      border: 1px solid var(--stroke-color); } }
  @media (max-width: 991.98px) {
    .checkout-success-grid {
      margin: 0 -16px;
      border-top: 1px solid var(--stroke-color);
      border-bottom: 1px solid var(--stroke-color); } }
  .checkout-success-grid .top-side {
    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: 20px;
    width: 100%;
    padding: 32px;
    border-bottom: 1px solid var(--stroke-color);
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .checkout-success-grid .top-side {
        -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;
        padding: 20px 16px;
        text-align: center;
        row-gap: 16px; } }
  .checkout-success-grid .left-side,
  .checkout-success-grid .right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    padding: 32px;
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .checkout-success-grid .left-side,
      .checkout-success-grid .right-side {
        width: 100%;
        padding: 20px 16px; }
        .checkout-success-grid .left-side:not(:last-child),
        .checkout-success-grid .right-side:not(:last-child) {
          border-bottom: 1px solid var(--stroke-color); } }
  @media (min-width: 992px) {
    .checkout-success-grid .left-side {
      border-right: 1px solid var(--stroke-color); } }
  @media (min-width: 922px) and (max-width: 1200px) {
    .checkout-success-grid .left-side {
      width: 42%; } }
  .checkout-success-grid .right-side {
    min-height: 100%; }
    @media (min-width: 922px) and (max-width: 1200px) {
      .checkout-success-grid .right-side {
        width: 58%; } }
  .checkout-success-grid .cart-items {
    overflow: auto;
    max-height: 580px; }
    @media (min-width: 992px) {
      .checkout-success-grid .cart-items, .checkout-success-grid .cart-items * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      .checkout-success-grid .cart-items::-webkit-scrollbar,
      .checkout-success-grid .cart-items *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      .checkout-success-grid .cart-items::-webkit-scrollbar-button,
      .checkout-success-grid .cart-items *::-webkit-scrollbar-button {
        display: none; }
      .checkout-success-grid .cart-items::-webkit-scrollbar-track,
      .checkout-success-grid .cart-items *::-webkit-scrollbar-track {
        background: var(--main-100); }
      .checkout-success-grid .cart-items::-webkit-scrollbar-track-piece,
      .checkout-success-grid .cart-items *::-webkit-scrollbar-track-piece {
        background: var(--main-100); }
      .checkout-success-grid .cart-items::-webkit-scrollbar-thumb,
      .checkout-success-grid .cart-items *::-webkit-scrollbar-thumb {
        background: var(--theme-color-main);
        border-radius: 99px; }
      .checkout-success-grid .cart-items::-webkit-scrollbar-corner,
      .checkout-success-grid .cart-items *::-webkit-scrollbar-corner {
        background: var(--main-100); } }
    @media (min-width: 992px) {
      .checkout-success-grid .cart-items {
        padding-right: 16px;
        margin-right: -16px; } }
  .checkout-success-grid .order-card {
    padding: 0;
    border-radius: 0;
    border: none; }
    @media (max-width: 991.98px) {
      .checkout-success-grid .order-card {
        -webkit-box-shadow: none;
                box-shadow: none; } }
    .checkout-success-grid .order-card:not(:last-child) {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--stroke-color); }
      @media (max-width: 991.98px) {
        .checkout-success-grid .order-card:not(:last-child) {
          margin-bottom: 16px;
          padding-bottom: 16px; } }
  .checkout-success-grid .order-info-message {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (min-width: 992px) {
      .checkout-success-grid .order-info-message:has(.order-info-icon) {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 68px auto;
        grid-template-columns: 68px auto;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px; } }
    @media (max-width: 991.98px) {
      .checkout-success-grid .order-info-message:has(.order-info-icon) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center; } }
    @media (max-width: 991.98px) {
      .checkout-success-grid .order-info-message {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px; } }
    .checkout-success-grid .order-info-message .order-info-icon {
      width: 68px;
      height: 68px;
      border-radius: 100px;
      background-color: var(--main-50);
      color: var(--blue-main);
      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 (min-width: 992px) {
        .checkout-success-grid .order-info-message .order-info-icon {
          -ms-grid-row-span: 2;
          grid-row: span 2; } }
      @media (max-width: 991.98px) {
        .checkout-success-grid .order-info-message .order-info-icon:not(:last-child) {
          margin-bottom: 16px; } }
      .checkout-success-grid .order-info-message .order-info-icon .icon {
        width: 36px;
        height: 36px; }
      @media (max-width: 991.98px) {
        .checkout-success-grid .order-info-message .order-info-icon {
          width: 64px;
          height: 64px; }
          .checkout-success-grid .order-info-message .order-info-icon .icon {
            width: 28px;
            height: 28px; } }
    .checkout-success-grid .order-info-message .order-info-heading {
      color: var(--blue-main);
      font-size: 32px;
      font-weight: 400;
      line-height: 36px;
      text-transform: uppercase; }
      .checkout-success-grid .order-info-message .order-info-heading.error-text {
        color: var(--sale-color); }
      @media (max-width: 991.98px) {
        .checkout-success-grid .order-info-message .order-info-heading {
          font-size: 20px;
          line-height: 1.2; } }
      .checkout-success-grid .order-info-message .order-info-heading:not(:last-child) {
        margin-bottom: 8px; }
  .checkout-success-grid .order-totals-block {
    width: 100%;
    margin-bottom: 0;
    padding-top: 16px; }
    .checkout-success-grid .order-totals-block .total-item-in-total {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding-bottom: 0;
      margin-bottom: 0;
      padding-top: 0;
      border: none; }
      @media (max-width: 991.98px) {
        .checkout-success-grid .order-totals-block .total-item-in-total {
          padding-bottom: 0; } }
      .checkout-success-grid .order-totals-block .total-item-in-total .total-item-title {
        -webkit-box-flex: 0 !important;
            -ms-flex: 0 1 auto !important;
                flex: 0 1 auto !important;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        color: var(--grey-color);
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        -ms-flex-item-align: end;
            align-self: flex-end;
        text-transform: uppercase; }
        @media (max-width: 991.98px) {
          .checkout-success-grid .order-totals-block .total-item-in-total .total-item-title {
            font-size: 16px;
            line-height: 1.5; } }
      .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap {
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        color: var(--black-color);
        row-gap: 0; }
        @media (max-width: 991.98px) {
          .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap {
            font-size: 24px; } }
        .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .price {
          color: var(--black-color); }
          .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .price span {
            font-size: 22px;
            line-height: 24px; }
            @media (max-width: 991.98px) {
              .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .price span {
                font-size: 16px;
                line-height: 1.5; } }
        .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .old-price {
          font-size: 14px;
          line-height: 20px;
          color: var(--grey-color);
          margin-bottom: 0; }
          .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .old-price span {
            font-size: 14px;
            line-height: 20px; }
        .checkout-success-grid .order-totals-block .total-item-in-total .price-wrap .old-price ~ .price {
          color: var(--price-new); }

.checkout-success-grid .btn-action-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 991.98px) {
    .checkout-success-grid .btn-action-wrap {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px; } }
  @media (max-width: 992px) {
    .checkout-success-grid .btn-action-wrap .payment-buttons {
      width: 100%; } }
  .checkout-success-grid .btn-action-wrap .payment-buttons .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 48px;
    font-weight: 600;
    text-transform: uppercase; }
    @media (max-width: 992px) {
      .checkout-success-grid .btn-action-wrap .payment-buttons .btn {
        width: 100% !important;
        max-width: 100%; } }
    @media (max-width: 575.98px) {
      .checkout-success-grid .btn-action-wrap .payment-buttons .btn {
        width: 100%; } }
  .checkout-success-grid .btn-action-wrap .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 48px;
    font-weight: 600;
    text-transform: uppercase; }
    @media (max-width: 992px) {
      .checkout-success-grid .btn-action-wrap .btn {
        width: 100% !important;
        max-width: 100%; } }
    @media (max-width: 575.98px) {
      .checkout-success-grid .btn-action-wrap .btn {
        width: 100%; } }

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

.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: 8px; }
  .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 b {
  font-weight: 500; }

.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 {
  margin-bottom: 12px;
  color: var(--black-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .order-info-title {
      font-size: 16px;
      line-height: 1.5; } }

@media (min-width: 992px) {
  .order-info-text {
    margin-bottom: 12px; } }

table.order-info-table {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; }
  @media (max-width: 1199.98px) {
    table.order-info-table {
      font-size: 14px;
      line-height: 20px; } }
  table.order-info-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    table.order-info-table tr:not(:last-child) {
      margin-bottom: 12px; }
  table.order-info-table th {
    padding-right: 12px;
    width: 50%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-weight: 400;
    color: var(--secondary-color); }
    @media (min-width: 922px) and (max-width: 1200px) {
      table.order-info-table th {
        width: 40%; } }
  table.order-info-table th, table.order-info-table td {
    padding: 0; }

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(45, 125, 210, 0.4); }

#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: 840px;
  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: var(--white-color);
  -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;
  color: var(--black-color); }
  @media (max-width: 991.98px) {
    #cartModal {
      max-width: 100%; } }

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

    .overlay {
        display: none;
    }
}
.fancybox-container.form-popup .fancybox-content#cartModal {
    max-width: 900px; // <<--- cart width
}
*/
#cartModal {
  --px: 32px;
  overflow: hidden; }
  @media (max-width: 991.98px) {
    #cartModal {
      --px: 16px; } }
  #cartModal .cart-top {
    padding: 24px var(--px) 0; }
    @media (max-width: 991.98px) {
      #cartModal .cart-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 12px var(--px);
        background: var(--blue-main);
        min-height: 64px; } }
  #cartModal .cart-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      #cartModal .cart-title {
        font-size: 20px;
        line-height: 1.2;
        color: var(--white-color); } }
  #cartModal .cart-items-heading {
    margin-top: 20px; }
  #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%; }
    @media (max-width: 991.98px) {
      #cartModal .cart-body:has(.fast-order-open)::before {
        content: "";
        position: absolute;
        z-index: 5;
        inset: 0;
        background: rgba(45, 125, 210, 0.4);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; } }
  #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: var(--main-100); }
      #cartModal .cart-items::-webkit-scrollbar-track-piece,
      #cartModal .cart-items *::-webkit-scrollbar-track-piece {
        background: var(--main-100); }
      #cartModal .cart-items::-webkit-scrollbar-thumb,
      #cartModal .cart-items *::-webkit-scrollbar-thumb {
        background: var(--theme-color-main);
        border-radius: 99px; }
      #cartModal .cart-items::-webkit-scrollbar-corner,
      #cartModal .cart-items *::-webkit-scrollbar-corner {
        background: var(--main-100); } }
  #cartModal .cart-bottom {
    margin-top: auto;
    position: relative; }
    #cartModal .cart-bottom .wrap {
      position: relative;
      z-index: 20; }
  #cartModal .message-limit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-weight: bold;
    color: var(--white-color);
    background: var(--sale-color);
    border-radius: 0;
    margin-bottom: 0; }
  #cartModal .bottom-row {
    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;
    padding: 20px var(--px);
    background: var(--white-color);
    -webkit-box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.05); }
    @media (max-width: 991.98px) {
      #cartModal .bottom-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 15px var(--px);
        gap: 10px; } }
    #cartModal .bottom-row:has(.btn-continue) {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    #cartModal .bottom-row:has(.message-limit) {
      padding: 56px var(--px) 20px; }
      @media (max-width: 991.98px) {
        #cartModal .bottom-row:has(.message-limit) {
          padding: 48px var(--px) 15px; } }
    #cartModal .bottom-row .btn::before {
      display: none; }
    @media (max-width: 575.98px) {
      #cartModal .bottom-row .btn {
        width: 100%; } }
    @media (max-width: 767.98px) {
      #cartModal .bottom-row .btn-continue {
        display: none; } }
  #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: 4px; }
    @media (max-width: 991.98px) {
      #cartModal .total-block {
        gap: 16px; } }
    #cartModal .total-block .total-title {
      color: var(--grey-color);
      font-size: 20px;
      line-height: 1.2;
      -ms-flex-item-align: end;
          align-self: flex-end;
      text-transform: uppercase; }
      @media (max-width: 991.98px) {
        #cartModal .total-block .total-title {
          font-size: 16px;
          line-height: 1.5; } }
    #cartModal .total-block .price-wrap {
      font-size: 32px;
      font-weight: 700;
      line-height: 1; }
      @media (max-width: 991.98px) {
        #cartModal .total-block .price-wrap {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 4px;
          font-size: 24px; } }
      #cartModal .total-block .price-wrap .price span {
        font-size: 22px;
        line-height: 24px; }
        @media (max-width: 991.98px) {
          #cartModal .total-block .price-wrap .price span {
            font-size: 16px;
            line-height: 1.5; } }
      #cartModal .total-block .price-wrap .old-price {
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 0; }
        @media (max-width: 991.98px) {
          #cartModal .total-block .price-wrap .old-price {
            line-height: 20px; } }
  #cartModal .cart-empty {
    min-height: 100%;
    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;
    padding: 24px 32px 32px; }
    @media (max-width: 991.98px) {
      #cartModal .cart-empty {
        padding: 20px 16px 32px;
        row-gap: 32px; }
        #cartModal .cart-empty::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 64px;
          background: var(--blue-main); }
        #cartModal .cart-empty .cart-title {
          position: relative;
          z-index: 5; } }
    #cartModal .cart-empty .empty-content {
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
      padding: 24px;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    #cartModal .cart-empty .empty-img {
      width: 80px;
      height: 80px;
      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%;
      background: var(--main-50);
      color: var(--blue-main); }
      #cartModal .cart-empty .empty-img .icon {
        width: 40px;
        height: 40px; }
      #cartModal .cart-empty .empty-img:not(:last-child) {
        margin-bottom: 24px; }
      @media (max-width: 991.98px) {
        #cartModal .cart-empty .empty-img {
          width: 64px;
          height: 64px; }
          #cartModal .cart-empty .empty-img .icon {
            width: 28px;
            height: 28px; }
          #cartModal .cart-empty .empty-img:not(:last-child) {
            margin-bottom: 20px; } }
    #cartModal .cart-empty .title {
      color: var(--black-color);
      text-align: center;
      font-size: 28px;
      font-weight: 400;
      line-height: 32px;
      text-transform: uppercase; }
      @media (max-width: 991.98px) {
        #cartModal .cart-empty .title {
          font-size: 20px;
          line-height: 1.2; } }
      #cartModal .cart-empty .title:not(:last-child) {
        margin-bottom: 8px; }
    #cartModal .cart-empty .description {
      color: var(--secondary-color);
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5; }
      #cartModal .cart-empty .description:not(:last-child) {
        margin-bottom: 24px; }
      @media (max-width: 991.98px) {
        #cartModal .cart-empty .description {
          font-size: 14px;
          line-height: 20px; }
          #cartModal .cart-empty .description:not(:last-child) {
            margin-bottom: 20px; } }
    @media (max-width: 991.98px) {
      #cartModal .cart-empty .btn-continue {
        margin-left: auto; } }
  #cartModal .modal-close {
    top: 20px;
    right: 22px; }
    @media (max-width: 991.98px) {
      #cartModal .modal-close {
        top: 12px;
        right: 16px; } }

.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: 8px;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-color);
  text-transform: none;
  text-decoration: none;
  min-height: unset;
  text-align: left;
  background-color: transparent;
  outline: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: auto; }
  .btn-continue .icon,
  .btn-continue svg.ic {
    color: var(--blue-main);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 10px;
    line-height: 20px; }
  @media (any-hover: hover) {
    .btn-continue:hover {
      color: var(--accent-color); }
      .btn-continue:hover svg.ic {
        -webkit-animation: moveArrow 0.8s forwards;
                animation: moveArrow 0.8s forwards; } }
  .btn-continue:focus {
    color: var(--accent-color); }
    .btn-continue:focus svg.ic {
      -webkit-animation: moveArrow 0.8s forwards;
              animation: moveArrow 0.8s forwards; }
  @media (max-width: 991.98px) {
    .btn-continue {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      -ms-flex-item-align: start;
          align-self: flex-start; } }

.modal-close {
  position: absolute;
  z-index: 99999;
  top: 16px;
  right: 16px;
  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;
  border-radius: 100px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  -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: 18px;
    height: 2px;
    border-radius: 0.5em;
    background-color: var(--grey-color); }
    @media (max-width: 991.98px) {
      .modal-close::before, .modal-close::after {
        background-color: var(--white-color); } }
  .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 {
    width: 12px;
    height: 12px;
    color: var(--theme-color-main);
    display: none; }
  @media (any-hover: hover) {
    .modal-close:hover::before, .modal-close:hover::after, .modal-close:focus::before, .modal-close:focus::after {
      background-color: var(--accent-color); }
    .modal-close:hover .ic,
    .modal-close:hover .icon, .modal-close:focus .ic,
    .modal-close:focus .icon {
      color: var(--accent-color); } }
  @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: 100px 1fr 144px 120px 32px;
  grid-template-columns: 100px 1fr 144px 120px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }
  @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: 100px 1fr 100px 120px;
  grid-template-columns: 100px 1fr 100px 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 991.98px) {
    .products-table.products-table-no-edit .cart-items-heading,
    .products-table.products-table-no-edit .cart-item {
      -ms-grid-columns: 80px 1fr 172px 1fr;
      grid-template-columns: 80px 1fr 172px 1fr; }
      .products-table.products-table-no-edit .cart-items-heading .cart-item-info,
      .products-table.products-table-no-edit .cart-item .cart-item-info {
        padding-right: 0; } }
  @media (max-width: 575.98px) {
    .products-table.products-table-no-edit .cart-items-heading,
    .products-table.products-table-no-edit .cart-item {
      -ms-grid-columns: 80px 1fr 1fr;
      grid-template-columns: 80px 1fr 1fr; } }

.products-table.products-table-no-edit .cart-items {
  overflow: auto;
  max-height: 544px;
  padding-right: 16px;
  margin-right: -16px; }
  @media (min-width: 992px) {
    .products-table.products-table-no-edit .cart-items, .products-table.products-table-no-edit .cart-items * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar-button,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar-button {
      display: none; }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar-track,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar-track {
      background: var(--main-100); }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar-track-piece,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar-track-piece {
      background: var(--main-100); }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar-thumb,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar-thumb {
      background: var(--theme-color-main);
      border-radius: 99px; }
    .products-table.products-table-no-edit .cart-items::-webkit-scrollbar-corner,
    .products-table.products-table-no-edit .cart-items *::-webkit-scrollbar-corner {
      background: var(--main-100); } }

.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: 16px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stroke-color);
  color: var(--grey-color); }
  @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: 16px 0;
  border-bottom: 1px solid var(--stroke-color); }
  @media (max-width: 991.98px) {
    .cart-item {
      min-height: auto; }
      .cart-item:first-child {
        border-top: 1px solid var(--stroke-color); } }
  .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;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5; }
    .cart-item .product-title:not(:last-child) {
      margin-bottom: 0; }
    .cart-item .product-title span {
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      text-overflow: ellipsis; }
    @media (any-hover: hover) {
      .cart-item .product-title:hover {
        color: var(--blue-main);
        text-decoration: none; } }
    @media (max-width: 991.98px) {
      .cart-item .product-title {
        font-size: 14px;
        line-height: 20px; } }
  .cart-item .product-sku {
    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: 0 4px;
    color: var(--grey-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 4px; }
    .cart-item .product-sku .product-sku-value,
    .cart-item .product-sku b {
      font-weight: 400;
      color: var(--black-color); }
    @media (max-width: 991.98px) {
      .cart-item .product-sku {
        font-size: 12px; } }
  .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;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .cart-item .cart-item-qty .qty-text {
        height: 32px;
        min-width: 32px;
        padding: 0;
        text-align: left; } }
  .cart-item .price-wrap {
    font-size: 22px;
    font-weight: 700;
    line-height: 24px; }
    .cart-item .price-wrap .old-price {
      font-size: 16px;
      line-height: 1; }
  @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;
      -ms-grid-row-align: end;
          align-self: end; } }

.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 {
  opacity: 0.6; }

.alert-warning {
  font-size: 20px; }
  @media (max-width: 991.98px) {
    .alert-warning {
      font-size: 16px; } }

.badge-warning {
  background: var(--sale-color);
  color: var(--white-color); }

.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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  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: 16px; } }
  .cart-item-remove .ic,
  .cart-item-remove .icon,
  .cart-item-set-remove .ic,
  .cart-item-set-remove .icon {
    width: 20px;
    height: 20px; }
  .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 {
      -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: -40px; }
  #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;
    min-height: 40px;
    min-width: 172px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px 8px 0 0;
    background: var(--main-50);
    -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer; }
    #cart-fast-order .fast-order-form-title .icon {
      width: 12px;
      height: 12px;
      color: var(--blue-main);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  #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: 8px;
    background: var(--main-50);
    padding: 24px var(--px);
    -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.05); }
    @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: 230px;
    font-size: 16px;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      #cart-fast-order .fast-order-form-notice {
        max-width: 100%;
        text-align: center; } }
  #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: 48px;
      border-radius: 12px;
      background: var(--white-color);
      color: var(--black-colo);
      border-color: var(--main-200);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      -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: var(--grey-color); }
      #cart-fast-order .form-wrap .form-control::-moz-placeholder {
        color: var(--grey-color); }
      #cart-fast-order .form-wrap .form-control:-ms-input-placeholder {
        color: var(--grey-color); }
      #cart-fast-order .form-wrap .form-control::-ms-input-placeholder {
        color: var(--grey-color); }
      #cart-fast-order .form-wrap .form-control::placeholder {
        color: var(--grey-color); }
      @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; }
    @media (max-width: 575.98px) {
      #cart-fast-order .btn {
        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-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
  grid-template-columns: 320px 1fr;
  gap: 0; }
  .account-grid .account-aside {
    height: 496px;
    width: 100%;
    border-radius: 12px 0 0 12px;
    padding: 12px;
    background-color: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: sticky;
    top: 150px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    @media (max-width: 992px) {
      .account-grid .account-aside {
        border-radius: 12px !important;
        margin-bottom: 16px;
        padding: 12px 12px 6px 12px;
        gap: 6px; } }
    .account-grid .account-aside .user-info-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      background-color: #edfffc;
      border-radius: 8px;
      gap: 8px;
      padding: 8px 12px; }
      .account-grid .account-aside .user-info-wrap .user-avatar-image {
        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-color: #ffffff;
        border-radius: 100%; }
        .account-grid .account-aside .user-info-wrap .user-avatar-image svg {
          color: var(--accent-color);
          display: block;
          width: 16px;
          height: 16px; }
      .account-grid .account-aside .user-info-wrap .user-fio-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0; }
        .account-grid .account-aside .user-info-wrap .user-fio-info .user-greeting {
          text-transform: uppercase;
          font-size: 14px;
          line-height: 20px;
          color: #171614; }
        .account-grid .account-aside .user-info-wrap .user-fio-info .user-full-name {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #171614; }
  @media (max-width: 992px) {
    .account-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
      .account-grid .account-aside {
        height: auto;
        border-radius: 12px 12px 0 0;
        width: 100%;
        position: relative;
        top: 0; }
      .account-grid .account-nav-wrap .btn-account-logout {
        position: relative;
        top: 0; } }

.account-nav-wrap .btn-account-logout {
  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;
  text-decoration: none;
  margin-top: 20px;
  position: absolute;
  bottom: 12px;
  right: 0;
  left: 0; }
  @media (pointer: fine) {
    .account-nav-wrap .btn-account-logout:hover {
      color: var(--theme-color-main); } }
  .account-nav-wrap .btn-account-logout .ic {
    display: block;
    margin-right: 4px;
    width: 16px;
    height: 16px; }

.account-nav-wrap .account-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: 4px;
  width: 100%; }
  .account-nav-wrap .account-nav .link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    color: var(--black-color);
    background-color: var(--bg);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px; }
    .account-nav-wrap .account-nav .link-item .ic {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 24px;
              flex: 0 0 24px;
      width: 24px;
      height: 24px;
      color: var(--blue-main); }
    .account-nav-wrap .account-nav .link-item .ic.ic-arrow-down-mini {
      color: var(--secondary-color);
      width: 12px;
      height: 12px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 12px;
              flex: 0 0 12px;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      margin-left: auto; }
    @media (pointer: fine) {
      .account-nav-wrap .account-nav .link-item:hover {
        color: var(--white-color);
        background-color: var(--accent-color); }
        .account-nav-wrap .account-nav .link-item:hover .ic {
          color: var(--white-color); }
        .account-nav-wrap .account-nav .link-item:hover .ic.ic-arrow-down-mini {
          color: var(--white-color); } }
    .account-nav-wrap .account-nav .link-item.active {
      color: var(--white-color);
      background-color: var(--accent-color); }
      .account-nav-wrap .account-nav .link-item.active .ic {
        color: var(--white-color); }
      .account-nav-wrap .account-nav .link-item.active .ic.ic-arrow-down-mini {
        color: var(--white-color); }

body:has(.header-scroll) .account-grid .account-aside {
  top: 100px; }

.header-acc-auth {
  position: relative; }
  .header-acc-auth::before {
    content: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="11" height="12" viewBox="0 0 45 32"><path fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="4" stroke-width="7.8" stroke="%23fff" d="M3.2 16l12.8 12.8 25.6-25.6"></path></svg>');
    position: absolute;
    width: 24px;
    height: 24px;
    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: var(--accent-color);
    color: var(--white-color);
    top: -6px;
    right: -6px;
    border-radius: 100%; }
    @media (max-width: 992px) {
      .header-acc-auth::before {
        display: none; } }

@media (max-width: 992px) {
  .content.account-favorites {
    padding-bottom: 48px !important; }
  body:has(.header-scroll) .account-grid .account-aside {
    top: 0; }
  .account-nav-mobile-head {
    margin-bottom: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 5px 19px;
    border-radius: 10px;
    background-color: #fafafa;
    height: 48px;
    cursor: pointer; }
    .account-nav-mobile-head a {
      color: var(--black-color);
      font-size: 14px;
      line-height: 16px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px; }
      .account-nav-mobile-head a svg {
        width: 22px;
        height: 22px;
        display: block;
        color: var(--blue-main); }
      .account-nav-mobile-head a svg.ic.ic-arrow-down-mini {
        margin-left: auto;
        width: 13px;
        height: 13px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease; }
  .account-nav-mobile-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    padding-bottom: 6px; }
    .account-nav-mobile-body a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      width: 100%;
      padding: 5px 19px;
      border-radius: 10px;
      background-color: #fafafa;
      height: 48px;
      color: var(--black-color);
      font-size: 14px;
      line-height: 16px; }
      .account-nav-mobile-body a svg {
        width: 22px;
        height: 22px;
        display: block;
        color: var(--blue-main); }
      .account-nav-mobile-body a svg.ic.ic-arrow-down-mini {
        margin-left: auto;
        width: 13px;
        height: 13px;
        display: none; } }

.account-nav-mobile.accordion-open .account-nav-mobile-head .ic.ic-arrow-down-mini {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.content.account-order .cart-item {
  -ms-grid-columns: 100px minmax(0, 1fr) 100px 120px;
  grid-template-columns: 100px minmax(0, 1fr) 100px 120px;
  overflow: hidden; }
  @media (max-width: 992px) {
    .content.account-order .cart-item {
      -ms-grid-columns: 80px 1fr 172px 1fr;
      grid-template-columns: 80px 1fr 172px 1fr; } }
  @media (max-width: 575.98px) {
    .content.account-order .cart-item {
      -ms-grid-columns: 80px 1fr 1fr;
      grid-template-columns: 80px 1fr 1fr; } }
  .content.account-order .cart-item .cart-item-info {
    min-width: 0; }
  .content.account-order .cart-item .price {
    word-break: break-all;
    min-width: 0;
    overflow: hidden; }

.account-order-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(280px, 302px) 1px 1fr;
  grid-template-columns: minmax(280px, 302px) 1px 1fr;
  gap: 24px; }
  @media (max-width: 1199.98px) {
    .account-order-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      gap: 24px; } }
  .account-order-grid .order-card {
    padding: 0; }
  .account-order-grid .order-divider {
    height: 100%;
    width: 1px;
    background-color: var(--stroke-color); }
  .account-order-grid .account-order-card:not(:last-child) {
    margin-bottom: 20px; }
  .account-order-grid .account-order-info-title {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--stroke-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--blue-main); }
  .account-order-grid .account-order-info-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--stroke-color); }
  .account-order-grid .account-order-info-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a0a0a0; }
    .account-order-grid .account-order-info-label:not(:last-child) {
      margin-bottom: 4px; }
  .account-order-grid .account-order-info-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .account-order-grid .account-order-info-value svg {
      display: block;
      width: 16px;
      height: 16px;
      color: var(--blue-main);
      cursor: pointer; }
  .account-order-grid .account-order-info-id {
    font-weight: 500; }
  .account-order-grid .account-order-info-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    padding-top: 12px; }

.account-content-name.account-content-order-content {
  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; }

.order-title-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: 12px; }

button.order-title-back {
  padding: 0;
  border: none;
  margin: 0;
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  button.order-title-back svg {
    color: var(--blue-main);
    width: 6px;
    height: 10px; }
  @media (pointer: fine) {
    button.order-title-back:hover {
      color: var(--blue-main); } }

.content.account-order .order-info-sub-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--blue-main); }
  .content.account-order .order-info-sub-title:not(:last-child) {
    margin-bottom: 12px; }

.content.account-order .order-items-heading {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: 100px 1fr 100px 120px;
  grid-template-columns: 100px 1fr 100px 120px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #a0a0a0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stroke-color); }

.content.account-order .products-table.products-table-no-edit .cart-items.order-items-cards {
  max-height: 100% !important; }
  .content.account-order .products-table.products-table-no-edit .cart-items.order-items-cards .cart-item:last-child {
    border-bottom: 0; }

.content.account-order .order-totals-block .total-item.total-item-in-total {
  border: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
  padding-top: 4px;
  padding-bottom: 0; }

.content.account-order .order-totals-block .total-item .total-item-title {
  color: #a0a0a0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.content.account-order .order-totals-block .total-item.total-item-in-total .price-wrap {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: var(--black-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.content.account-order .order-totals-block .total-item.total-item-in-total .price-wrap .price {
  color: var(--black-color); }

@media (max-width: 992px) {
  .account-order-grid .cart-item .price-wrap {
    margin-right: 5px !important; }
    .account-order-grid .cart-item .price-wrap .old-price {
      font-size: 12px !important; }
  .content.account-order .order-totals-block .total-item.total-item-in-total {
    padding-bottom: 5px !important;
    padding-right: 5px; }
  .content.account-order .cart-item .price {
    font-size: 14px;
    line-height: 16px; }
  .content.account-order .order-totals-block .total-item .total-item-title {
    font-size: 24px;
    line-height: 24px; }
  .content.account-order .order-totals-block .total-item.total-item-in-total .price-wrap .price {
    font-size: 24px;
    line-height: 24px; }
  .content.account-order .order-totals-block .total-item .total-item-title {
    font-size: 18px;
    line-height: 28px; } }

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

.account-orders .order-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  list-style: none;
  padding-left: 0;
  margin: 0;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }
  .account-orders .order-nav::-webkit-scrollbar {
    display: none; }
  .account-orders .order-nav:not(:last-child) {
    margin-bottom: 16px; }
  .account-orders .order-nav .order-nav-item.active a {
    color: var(--white-color);
    background-color: var(--blue-main); }
  .account-orders .order-nav a {
    display: block;
    color: var(--color-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid var(--stroke-color);
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    @media (pointer: fine) {
      .account-orders .order-nav a:hover {
        color: var(--white-color);
        background-color: var(--blue-main); } }

.account-orders .order-headers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke-color); }
  @media (max-width: 1150px) {
    .account-orders .order-headers {
      -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px;
      grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px; } }
  @media (max-width: 768px) {
    .account-orders .order-headers {
      display: none; } }
  .account-orders .order-headers .order-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-bottom: 0; }

.account-orders .order-item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--stroke-color); }
  @media (pointer: fine) {
    .account-orders .order-item:hover {
      color: #656565; } }
  @media (max-width: 1150px) {
    .account-orders .order-item {
      -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px;
      grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px; } }
  @media (max-width: 768px) {
    .account-orders .order-item {
      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: start; }
      .account-orders .order-item .order-item-value {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
        width: 100%; }
      .account-orders .order-item .order-item-value::before {
        content: attr(data-value);
        display: block;
        color: #a0a0a0;
        width: 50%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4; } }
  .account-orders .order-item .open.arrow-wrap.mobile {
    display: none; }
    @media (max-width: 768px) {
      .account-orders .order-item .open.arrow-wrap.mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: auto;
        gap: 8px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px; } }
  .account-orders .order-item .order-number {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: var(--accent-color); }
  .account-orders .order-item .order-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a0a0a0; }
  .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;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color); }
  .account-orders .order-item .order-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color); }
  .account-orders .order-item .order-address-text {
    padding-left: 16px;
    position: relative; }
    .account-orders .order-item .order-address-text::before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 100%;
      background: #ff8c00; }
    @media (max-width: 768px) {
      .account-orders .order-item .order-address-text {
        width: 50%; } }
  .account-orders .order-item .open.arrow-wrap {
    width: 12px;
    height: 12px;
    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-orders .order-item .open.arrow-wrap svg {
      width: 6px;
      height: 10px;
      color: var(--accent-color); }
    @media (max-width: 768px) {
      .account-orders .order-item .open.arrow-wrap {
        display: none; } }

@media (max-width: 992px) {
  .content.account-favorites .account-main-content {
    padding: 12px 0 0 0 !important; }
  .content.account-viewed .account-main-content {
    padding: 12px 0 0 0 !important; } }

.content.account-favorites .account-main-content {
  padding: 24px 0 0 0; }

.content.account-favorites .account-content-top {
  padding: 0 24px; }
  @media (max-width: 992px) {
    .content.account-favorites .account-content-top {
      padding: 0 12px; } }

@media (max-width: 992px) {
  .content.account-favorites .jq-selectbox__select {
    padding: 0; } }

.content.account-favorites .favorites-top.catalog-top {
  padding: 16px 24px; }
  @media (max-width: 992px) {
    .content.account-favorites .favorites-top.catalog-top {
      padding: 12px; } }

.favorites-top.catalog-top {
  padding: 16px 0;
  border-top: 1px solid var(--stroke-color);
  border-bottom: 1px solid var(--stroke-color); }

.content.account-viewed .account-main-content {
  padding: 24px 0 0 0; }

.content.account-viewed .account-content-top {
  padding: 0 24px 16px;
  border-bottom: 1px solid var(--stroke-color); }
  @media (max-width: 992px) {
    .content.account-viewed .account-content-top {
      padding: 0 12px 12px; } }
  .content.account-viewed .account-content-top:not(:last-child) {
    margin-bottom: 0; }

@media (max-width: 992px) {
  .account-content {
    min-width: 0; } }

.order-item-value.order-address {
  color: var(--black-color); }

.order-item-value.order-status {
  color: var(--black-color); }

.account-order-grid .price-wrap:has(.old-price) .price {
  color: var(--sale-color) !important; }

.account-content-sub-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--blue-main); }

@media (max-width: 992px) {
  .fixed-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 10px;
    background-color: var(--white-color);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(calc(100% + 10px));
        -ms-transform: translateY(calc(100% + 10px));
            transform: translateY(calc(100% + 10px));
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    .fixed-container button {
      width: 100%;
      max-width: 100%; }
  .fixed-container.active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .original-container {
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden; }
    .original-container button {
      width: 100%; }
  .original-container.active {
    visibility: visible;
    opacity: 1; }
  .original-container:not(:has(button)) {
    height: 38px;
    width: 100%;
    display: block; }
    .original-container:not(:has(button)) button {
      width: 100%;
      max-width: 100%; } }

@media (max-width: 992px) {
  body:has(.account-order) #page-footer .footer-bottom {
    padding-bottom: 90px !important; } }

.deals-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: 8px;
  margin: 0 0 16px 0; }

.deals .deals-headers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(110px, 200px) minmax(120px, 200px) minmax(220px, 1fr) 12px;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke-color); }
  @media (max-width: 1150px) {
    .deals .deals-headers {
      -ms-grid-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px;
      grid-template-columns: minmax(101px, 120px) minmax(101px, 120px) minmax(100px, 200px) minmax(110px, 200px) minmax(130px, 1fr) 12px; } }
  @media (max-width: 768px) {
    .deals .deals-headers {
      display: none; } }
  .deals .deals-headers .deals-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-bottom: 0; }

.deals .deals-item {
  position: relative;
  z-index: 1;
  padding: 12px 12px 12px 16px;
  background: white;
  border: 1px solid var(--stroke-color);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  max-width: 662px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  .deals .deals-item:has(.custom-radio input[type="radio"]:checked ~ .checkmark) {
    border: 1px solid var(--accent-color); }
  .deals .deals-item .custom-radio .checkmark {
    border-color: var(--accent-color); }
  .deals .deals-item .custom-radio input[type="radio"]:checked ~ .checkmark {
    background-color: transparent;
    border-color: var(--accent-color); }
    .deals .deals-item .custom-radio input[type="radio"]:checked ~ .checkmark::before {
      opacity: 1;
      visibility: visible; }
  .deals .deals-item .custom-radio .checkmark::before {
    background-color: var(--accent-color);
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    width: 14px;
    height: 14px; }

.deals .deals-item-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black-color); }

.deals .deals-item-currency {
  margin-left: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--black-color); }

.account-main-content {
  padding: 24px;
  background-color: #ffffff;
  border-left: 1px solid var(--stroke-color);
  border-radius: 0 12px 12px 0;
  height: 100%;
  width: 100%; }
  @media (max-width: 992px) {
    .account-main-content {
      padding: 12px !important;
      border-radius: 12px !important; } }

.account-content-top {
  width: 100%; }
  .account-content-top .account-content-name {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--black-color); }
    @media (max-width: 992px) {
      .account-content-top .account-content-name {
        font-size: 18px;
        line-height: 24px; } }
  .account-content-top:not(:last-child) {
    margin-bottom: 16px; }

.profile-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 1px minmax(0, 1fr);
  grid-template-columns: 350px 1px minmax(0, 1fr);
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start; }
  .profile-grid:not(:last-child) {
    margin-bottom: 16px; }
  .profile-grid .settings-divider {
    background: var(--stroke-color);
    width: 1px;
    height: 100%;
    display: block; }
  .profile-grid .profile-info.form-style-box,
  .profile-grid .profile-access.form-style-box {
    padding: 0;
    background-color: transparent; }
    .profile-grid .profile-info.form-style-box .form-group:not(:last-child),
    .profile-grid .profile-access.form-style-box .form-group:not(:last-child) {
      margin-bottom: 13px; }
    .profile-grid .profile-info.form-style-box .h3.info-title,
    .profile-grid .profile-access.form-style-box .h3.info-title {
      font-weight: 400;
      font-size: 20px;
      line-height: 24px;
      text-transform: uppercase;
      color: var(--black-color);
      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 var(--stroke-color);
      width: 100%;
      margin-bottom: 13px; }
    .profile-grid .profile-info.form-style-box .info-title-image,
    .profile-grid .profile-access.form-style-box .info-title-image {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 32px;
      height: 32px;
      background-color: var(--blue-main);
      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);
      border-radius: 100%; }
      .profile-grid .profile-info.form-style-box .info-title-image svg,
      .profile-grid .profile-access.form-style-box .info-title-image svg {
        display: block;
        width: 16px;
        height: 16px; }
    .profile-grid .profile-info.form-style-box .btn-submit-settings,
    .profile-grid .profile-access.form-style-box .btn-submit-settings {
      margin-top: 13px;
      padding: 16px 28px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      font-weight: 500;
      font-size: 18px;
      line-height: 24px;
      gap: 10px;
      text-transform: uppercase; }
      .profile-grid .profile-info.form-style-box .btn-submit-settings svg,
      .profile-grid .profile-access.form-style-box .btn-submit-settings svg {
        width: 20px;
        height: 20px;
        display: block; }
      .profile-grid .profile-info.form-style-box .btn-submit-settings::before,
      .profile-grid .profile-access.form-style-box .btn-submit-settings::before {
        display: none; }
    .profile-grid .profile-info.form-style-box .from-group-type-name,
    .profile-grid .profile-access.form-style-box .from-group-type-name {
      margin-top: 13px; }
    .profile-grid .profile-info.form-style-box .from-group-profile-auth,
    .profile-grid .profile-access.form-style-box .from-group-profile-auth {
      margin-top: 13px; }
    .profile-grid .profile-info.form-style-box .input-muted,
    .profile-grid .profile-access.form-style-box .input-muted {
      pointer-events: none;
      background-color: #fafafa;
      border-color: #f0f0f0; }
    .profile-grid .profile-info.form-style-box .btn.btn-default.btn-submit-settings.btn-locked,
    .profile-grid .profile-access.form-style-box .btn.btn-default.btn-submit-settings.btn-locked {
      background-color: #eafffb;
      color: #a1beb8;
      border-color: #eafffb; }
      .profile-grid .profile-info.form-style-box .btn.btn-default.btn-submit-settings.btn-locked span,
      .profile-grid .profile-access.form-style-box .btn.btn-default.btn-submit-settings.btn-locked span {
        color: #a1beb8; }
      .profile-grid .profile-info.form-style-box .btn.btn-default.btn-submit-settings.btn-locked svg,
      .profile-grid .profile-access.form-style-box .btn.btn-default.btn-submit-settings.btn-locked svg {
        color: #a1beb8; }
    .profile-grid .profile-info.form-style-box .password-view-wrap .password-view-toggle,
    .profile-grid .profile-access.form-style-box .password-view-wrap .password-view-toggle {
      bottom: initial;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 16px;
      width: 24px;
      height: 24px;
      color: #a0a0a0; }
      .profile-grid .profile-info.form-style-box .password-view-wrap .password-view-toggle svg,
      .profile-grid .profile-access.form-style-box .password-view-wrap .password-view-toggle svg {
        display: block;
        width: 24px;
        height: 24px; }
    .profile-grid .profile-info.form-style-box .password-view-wrap .form-control[type="text"] ~ .password-view-toggle,
    .profile-grid .profile-access.form-style-box .password-view-wrap .form-control[type="text"] ~ .password-view-toggle {
      color: var(--accent-color); }
    .profile-grid .profile-info.form-style-box .sub-text-password,
    .profile-grid .profile-access.form-style-box .sub-text-password {
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      color: #a0a0a0;
      margin-top: 4px; }
  @media (max-width: 1199.98px) {
    .profile-grid {
      -ms-grid-columns: 270px 1px minmax(0, 1fr);
      grid-template-columns: 270px 1px minmax(0, 1fr); } }
  @media (max-width: 992px) {
    .profile-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
      .profile-grid .settings-divider {
        width: 100%;
        height: 1px; } }

.profile-socials-bind.form-style-box {
  padding: 16px 0 0 0;
  background-color: transparent;
  border-top: 1px solid var(--stroke-color); }
  .profile-socials-bind.form-style-box .h3.info-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--black-color);
    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 var(--stroke-color);
    width: 100%;
    margin-bottom: 16px; }
  .profile-socials-bind.form-style-box .info-title-image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--blue-main);
    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);
    border-radius: 100%; }
    .profile-socials-bind.form-style-box .info-title-image svg {
      display: block;
      width: 16px;
      height: 16px; }

.profile-socials-bind-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: 16px; }

.social-card {
  -ms-flex-wrap: wrap;
      flex-wrap: 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;
  padding: 4px 15px;
  border: 1px solid var(--stroke-color);
  border-radius: 12px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }

.social-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }

.social-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.social-icon img {
  width: 22px;
  height: 22px;
  display: block; }

.social-title {
  font-weight: 500; }

.social-status {
  font-size: 13px;
  color: #a0a0a0; }

.social-status.connected {
  color: var(--accent-color); }

.social-action-btn {
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  @media (pointer: fine) {
    .social-action-btn:hover {
      color: var(--blue-main); } }
  @media (max-width: 576px) {
    .social-action-btn {
      width: 100%;
      padding: 0;
      margin-top: 5px;
      text-align: right; } }

.social-action-btn.connect {
  color: var(--accent-color); }

.social-action-btn.disconnect {
  color: #e35d5d; }

.header-search .search-form {
  margin-bottom: 0 !important; }

.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: 8px;
  margin: 0 0 16px 0; }
  .user-address .address-item {
    position: relative;
    z-index: 1;
    padding: 12px 12px 12px 16px;
    background: white;
    border: 1px solid var(--stroke-color);
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    max-width: 662px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
    @media (max-width: 576px) {
      .user-address .address-item {
        padding-bottom: 60px; } }
    .user-address .address-item:has(.custom-radio input[type="radio"]:checked ~ .checkmark) {
      border: 1px solid var(--accent-color); }
    .user-address .address-item .custom-radio .checkmark {
      border-color: var(--accent-color); }
    .user-address .address-item .custom-radio input[type="radio"]:checked ~ .checkmark {
      background-color: transparent;
      border-color: var(--accent-color); }
      .user-address .address-item .custom-radio input[type="radio"]:checked ~ .checkmark::before {
        opacity: 1;
        visibility: visible; }
    .user-address .address-item .custom-radio .checkmark::before {
      background-color: var(--accent-color);
      opacity: 0;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      visibility: hidden;
      width: 14px;
      height: 14px; }
    .user-address .address-item .addres-delivery-content-wrap {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .user-address .address-item .addres-delivery-content-wrap span.title {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: var(--black-color); }
      .user-address .address-item .addres-delivery-content-wrap .address {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #a0a0a0; }
    .user-address .address-item .actions {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 7px; }
      @media (max-width: 576px) {
        .user-address .address-item .actions {
          position: absolute;
          bottom: 0;
          right: 0; } }
      .user-address .address-item .actions .btn.btn-action {
        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: none;
        padding: 0;
        margin: 0;
        background-color: transparent;
        border-radius: 100%;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        color: #a0a0a0; }
        .user-address .address-item .actions .btn.btn-action svg {
          display: block;
          width: 24px;
          height: 24px; }
      @media (pointer: fine) {
        .user-address .address-item .actions .btn.btn-action.delete:hover {
          background-color: #e93d3114;
          color: var(--sale-color); } }
      .user-address .address-item .actions .btn.btn-action.edit {
        color: var(--accent-color); }
        @media (pointer: fine) {
          .user-address .address-item .actions .btn.btn-action.edit:hover {
            background-color: var(--main-50);
            color: var(--accent-color); } }

.address {
  width: 100%;
  height: 100%; }
  .address button.btn.btn-default.btn-big {
    width: 100%;
    max-width: 340px; }
    .address button.btn.btn-default.btn-big::before {
      display: none; }
    .address button.btn.btn-default.btn-big .icon-plus-image {
      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;
      border-radius: 100%;
      border: 1px solid #ffffff; }
      .address button.btn.btn-default.btn-big .icon-plus-image svg {
        width: 14px;
        height: 14px;
        display: block; }

.account-main-content:has(.empty-container) {
  padding: 24px !important; }
  @media (max-width: 992px) {
    .account-main-content:has(.empty-container) {
      padding: 12px !important; } }
  .account-main-content:has(.empty-container) .account-content-top {
    padding: 0 !important;
    border: none !important; }
    .account-main-content:has(.empty-container) .account-content-top:not(:last-child) {
      margin-bottom: 16px !important; }

.orders-wrapper:has(.empty-container),
.favorites-content:has(.empty-container),
.viewed-content:has(.empty-container) {
  width: 100%;
  height: 100%; }

.empty-container {
  width: 100%;
  height: calc(100% - 28px - 16px);
  border-radius: 12px;
  background-color: var(--main-50);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px; }
  @media (max-width: 992px) {
    .empty-container {
      padding: 20px; } }
  .empty-container button.btn.btn-default {
    width: 100%;
    max-width: 340px; }
    .empty-container button.btn.btn-default::before {
      display: none; }
    @media (max-width: 992px) {
      .empty-container button.btn.btn-default {
        min-height: 48px;
        font-size: 14px; } }
  .empty-container .empty-img {
    width: 56px;
    height: 56px;
    color: var(--accent-color); }
    .empty-container .empty-img svg {
      display: block;
      width: 56px;
      height: 56px; }
    @media (max-width: 992px) {
      .empty-container .empty-img {
        width: 40px;
        height: 40px; }
        .empty-container .empty-img svg {
          width: 40px;
          height: 40px; } }
  .empty-container .empty-content {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
  .empty-container .empty-title {
    color: #171614;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase; }
    @media (max-width: 992px) {
      .empty-container .empty-title {
        font-size: 16px; } }
  .empty-container .empty-description {
    color: #171614;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px; }
    @media (max-width: 992px) {
      .empty-container .empty-description {
        font-size: 12px; } }
  .empty-container .icon-plus-image {
    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;
    border-radius: 100%;
    border: 1px solid #ffffff; }
    .empty-container .icon-plus-image svg {
      width: 14px;
      height: 14px;
      display: block; }

.content.page-account,
.content.account-profile,
.content.account-favorites,
.content.account-viewed,
.content.account-orders,
.content.account-order {
  background-color: #fafafa; }

#newAddressModal {
  overflow: visible; }

form.account-delivery-form.form-style.form-style-popup .form-group.deliveries.form-group-valid:not(:last-child) {
  margin-bottom: 20px; }

form.account-delivery-form.form-style.form-style-popup .form-title:not(:last-child) {
  margin-bottom: 20px; }

form.account-delivery-form.form-style.form-style-popup .form-group.deliveries .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--black-color);
  margin-bottom: 4px; }

form.account-delivery-form.form-style.form-style-popup .delivery-type-content-list {
  margin-top: 16px; }

form.account-delivery-form.form-style.form-style-popup .examples-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--black-color);
  text-transform: capitalize;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start; }

form.account-delivery-form.form-style.form-style-popup .jq-selectbox .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
  left: 33%;
  width: 24px;
  height: 24px; }

form.account-delivery-form.form-style.form-style-popup .delivery-field-examples .examples-list {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  overflow-x: auto; }
  form.account-delivery-form.form-style.form-style-popup .delivery-field-examples .examples-list::-webkit-scrollbar {
    display: none; }

form.account-delivery-form.form-style.form-style-popup .delivery-field-examples {
  gap: 5px;
  margin-top: 8px; }

form.account-delivery-form.form-style.form-style-popup .delivery-field-examples .examples-list a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px; }

form.account-delivery-form.form-style.form-style-popup .nova_poshta_warehouse .form-group.form-group-valid {
  margin-bottom: 20px; }

@media (max-width: 992px) {
  .content.account-order .products-table.products-table-no-edit .cart-items.order-items-cards .cart-item:last-child {
    border-bottom: 1px solid var(--stroke-color); }
  .account-content-top .account-content-name {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .content.account-order .order-items-heading {
    display: none; } }

@media (max-width: 576px) {
  .account-content-top button.btn.btn-default.js-reorder {
    width: 100%;
    min-height: 38px; }
  .order-title-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%; } }

.form-popup-login.form-style.form-style-popup:has(.form-popup-login.form-style.form-style-popup) .fancybox-close-small.modal-close,
.form-popup-register.form-style.form-style-popup:has(.form-popup-login.form-style.form-style-popup) .fancybox-close-small.modal-close,
.form-popup-forgot.form-style.form-style-popup:has(.form-popup-login.form-style.form-style-popup) .fancybox-close-small.modal-close {
  width: 20px;
  height: 20px;
  top: 8px;
  right: 8px; }

.form-popup-login.form-style.form-style-popup .alert.alert-warning.form-alert,
.form-popup-login.form-style.form-style-popup .alert,
.form-popup-register.form-style.form-style-popup .alert.alert-warning.form-alert,
.form-popup-register.form-style.form-style-popup .alert,
.form-popup-forgot.form-style.form-style-popup .alert.alert-warning.form-alert,
.form-popup-forgot.form-style.form-style-popup .alert {
  font-size: 14px !important; }

.form-popup-login.form-style.form-style-popup .form-title:not(:last-child),
.form-popup-register.form-style.form-style-popup .form-title:not(:last-child),
.form-popup-forgot.form-style.form-style-popup .form-title:not(:last-child) {
  margin-bottom: 16px; }

.form-popup-login.form-style.form-style-popup .form-control:not(.jq-selectbox),
.form-popup-register.form-style.form-style-popup .form-control:not(.jq-selectbox),
.form-popup-forgot.form-style.form-style-popup .form-control:not(.jq-selectbox) {
  padding: 12px 16px; }

.form-popup-login.form-style.form-style-popup .additional-chose,
.form-popup-register.form-style.form-style-popup .additional-chose,
.form-popup-forgot.form-style.form-style-popup .additional-chose {
  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;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }
  .form-popup-login.form-style.form-style-popup .additional-chose .goto-register span,
  .form-popup-login.form-style.form-style-popup .additional-chose .forgot-password span,
  .form-popup-login.form-style.form-style-popup .additional-chose .goto-login span,
  .form-popup-register.form-style.form-style-popup .additional-chose .goto-register span,
  .form-popup-register.form-style.form-style-popup .additional-chose .forgot-password span,
  .form-popup-register.form-style.form-style-popup .additional-chose .goto-login span,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-register span,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .forgot-password span,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-login span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #171614; }
  .form-popup-login.form-style.form-style-popup .additional-chose .goto-register a,
  .form-popup-login.form-style.form-style-popup .additional-chose .forgot-password a,
  .form-popup-login.form-style.form-style-popup .additional-chose .goto-login a,
  .form-popup-register.form-style.form-style-popup .additional-chose .goto-register a,
  .form-popup-register.form-style.form-style-popup .additional-chose .forgot-password a,
  .form-popup-register.form-style.form-style-popup .additional-chose .goto-login a,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-register a,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .forgot-password a,
  .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-login a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--accent-color);
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (pointer: fine) {
      .form-popup-login.form-style.form-style-popup .additional-chose .goto-register a:hover,
      .form-popup-login.form-style.form-style-popup .additional-chose .forgot-password a:hover,
      .form-popup-login.form-style.form-style-popup .additional-chose .goto-login a:hover,
      .form-popup-register.form-style.form-style-popup .additional-chose .goto-register a:hover,
      .form-popup-register.form-style.form-style-popup .additional-chose .forgot-password a:hover,
      .form-popup-register.form-style.form-style-popup .additional-chose .goto-login a:hover,
      .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-register a:hover,
      .form-popup-forgot.form-style.form-style-popup .additional-chose .forgot-password a:hover,
      .form-popup-forgot.form-style.form-style-popup .additional-chose .goto-login a:hover {
        color: var(--main-200);
        text-decoration: none; } }

.form-popup-login.form-style.form-style-popup .password-view-wrap .password-view-toggle,
.form-popup-register.form-style.form-style-popup .password-view-wrap .password-view-toggle {
  bottom: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  width: 24px;
  height: 24px;
  color: #a0a0a0; }
  .form-popup-login.form-style.form-style-popup .password-view-wrap .password-view-toggle svg,
  .form-popup-register.form-style.form-style-popup .password-view-wrap .password-view-toggle svg {
    display: block;
    width: 24px;
    height: 24px; }

.form-popup-login.form-style.form-style-popup .password-view-wrap .form-control[type="text"] ~ .password-view-toggle,
.form-popup-register.form-style.form-style-popup .password-view-wrap .form-control[type="text"] ~ .password-view-toggle {
  color: var(--accent-color); }

.form-popup-login.form-style.form-style-popup .login-by-social,
.form-popup-register.form-style.form-style-popup .login-by-social {
  margin-top: 16px; }
  .form-popup-login.form-style.form-style-popup .login-by-social .title span,
  .form-popup-register.form-style.form-style-popup .login-by-social .title span {
    font-size: 12px;
    line-height: 16px;
    color: #a0a0a0;
    font-weight: 400; }
  .form-popup-login.form-style.form-style-popup .login-by-social .sign-in-socials-wrap,
  .form-popup-register.form-style.form-style-popup .login-by-social .sign-in-socials-wrap {
    gap: 20px;
    margin-top: 12px; }
    .form-popup-login.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social,
    .form-popup-register.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social {
      text-transform: uppercase;
      gap: 10px;
      border: 1px solid #f0f0f0;
      border-radius: 12px;
      padding: 12px;
      cursor: pointer;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      min-height: 48px; }
      .form-popup-login.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social .text,
      .form-popup-register.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social .text {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #171614; }
      @media (pointer: fine) {
        .form-popup-login.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social:hover,
        .form-popup-register.form-style.form-style-popup .login-by-social .sign-in-socials-wrap .btn-sign-in-social:hover {
          background-color: var(--main-50);
          border-color: var(--main-50); } }

.form-popup-login.form-style.form-style-popup .login-by-social .title:after,
.form-popup-register.form-style.form-style-popup .login-by-social .title:after {
  top: 56%;
  background-color: #f0f0f0; }

.form-group.my-address.form-group-valid .btn-link {
  cursor: pointer; }

.form-popup-forgot.form-style.form-style-popup .form-note:not(:last-child) {
  margin-bottom: 16px; }

.form-popup-forgot.form-style.form-style-popup .form-note {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400; }

.promo-slider .product-actions {
  position: absolute;
  top: 28px;
  right: 28px; }

.promo-slider .product-sku {
  padding-right: 30px; }

@media (max-width: 992px) {
  .promo-slider .product-actions {
    right: 19px; } }

.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; }
