/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*******************************************************************************************************************************************************/
:root {
  --color-default: #5F6163;
  --color-primary: #D9230F;
  --color-secondary: #ED2326;
  --color-dark: #272626;
  --color-medium: #616161;
  --color-light: #F7F9FB;
  --color-light-grey: #E7E9EB;
  --color-inactive: #9D9FB4;
  --color-notice: #FF6B35;
  --color-error: #D9230F;
  --color-success: #17A150;
  --color-primary-variable: #E2E6EB;
  --color-secondary-variable: #ED2326;
  --color-tertiary-variable: #BC1919;
  --color-medium-light: #BCB5B2;
  --color-text-light: #785C5C;
  --color-text-dark: #6B625F;
  --font-primary: "Manrope";
  --site-width: 1439px;
  --gutters: 24px;
}

/**
 * General
 */

.screen-reader-response {
  display: none;
}

html {
  font-size: 16px;
  line-height: 26px;
}

html,
body {
  font-kerning: auto;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

.site-content {
  flex: 1 1 auto !important;
}

.slick-arrow:not(.slick-disabled) {
  cursor: pointer;
}

.slick-arrow.slick-prev svg {
  transform: scaleX(-1);
}

.slick-arrow.slick-disabled svg rect {
  fill: #6D6F71;
  opacity: 0.5;
}

.slick-arrow:not(.slick-disabled):hover svg rect {
  fill: var(--color-notice);
}

/**
 * Images
 */
img {
  width: auto;
  height: auto;
}

/**
 * Bootstrap overrides
 */
.container {
  max-width: calc(var(--site-width) + var(--gutters) * 2);
  padding-left: var(--gutters);
  padding-right: var(--gutters);
}

.row {
  margin-left: calc(0px - var(--gutters) / 2);
  margin-right: calc(0px - var(--gutters) / 2);
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto, .col-lg-one-fifth {
  padding-left: calc(var(--gutters) / 2);
  padding-right: calc(var(--gutters) / 2);
}

@media (max-width: 767px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto, .col-lg-one-fifth {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/**
 * Full width blocks.
 */
.blocks {
  overflow: hidden;
}

.full-width {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

/**
 * Remove margins from last elements
 */
.no-last-mg-y > *:last-child {
  margin-bottom: 0 !important;
}

.no-last-mg-x > *:last-child {
  margin-right: 0 !important;
}

/**
 * Positioning
 */
.relative {
  position: relative;
}

.abs-c {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abs-c-y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Display
 */
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex--col {
  flex-direction: column;
}

@media (min-width: 768px) {
  .flex-md {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1100px) {
  .flex-lg {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/**
 * Backgrounds
 */
.bg-cover {
  background-size: cover;
  background-position: center;
}

.bgc-primary {
  background-color: var(--color-primary);
}

.bgc-secondary {
  background-color: var(--color-secondary);
}

.bgc-white {
  background-color: #fff;
}

.bgc-light {
  background-color: var(--color-light);
}

.bgc-dark {
  background-color: var(--color-dark);
}

.bgc-primary-variable {
  background-color: var(--color-primary-variable);
}

.bgc-notice {
  background-color: var(--color-notice);
}

.bgc-success {
  background-color: var(--color-success);
}

.bgc-violet {
  background-color: #6A4C93;
}

.bgc-blue {
  background-color: #0077B6;
}

/**
 * Background picture
 */
.background-picture {
  position: absolute;
  top: 0;
  left: 0;
}

.background-picture,
.background-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**
 * Aspect ratio
 */
.ar {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.ar--1 {
  padding-bottom: 100%;
}

/**
 * Misc.
 */
.on-top {
  position: relative;
  z-index: 1;
}

.w-100 {
  width: 100%;
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**
 * Text helpers.
 */
.ta-center,
.text-center,
.aligncenter,
.has-text-align-center {
  text-align: center;
}

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.tt-upp {
  text-transform: uppercase;
}

.tt-cap {
  text-transform: capitalize;
}

.c-white {
  color: #fff;
}

.c-default {
  color: var(--color-default);
}

.c-primary {
  color: var(--color-primary);
}

.c-secondary {
  color: var(--color-secondary);
}

.c-light {
  color: var(--color-light);
}

.c-medium {
  color: var(--color-medium);
}

.c-dark {
  color: var(--color-dark);
}

.c-primary-variable {
  color: #5F6163;
}

.c-text-light {
  color: var(--color-text-light);
}

.c-text-dark {
  color: var(--color-text-dark);
}

.c-medium-light {
  color: var(--color-medium-light);
}

@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-Regular.woff2) format("woff2"), url(../fonts/DMSans-Regular.woff) format("woff"), url(../fonts/DMSans-Regular.svg#DMSans-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-Medium.woff2) format("woff2"), url(../fonts/DMSans-Medium.woff) format("woff"), url(../fonts/DMSans-Medium.svg#DMSans-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-Bold.woff2) format("woff2"), url(../fonts/DMSans-Bold.woff) format("woff"), url(../fonts/DMSans-Bold.svg#DMSans-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
      url('../fonts/Manrope-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
      url('../fonts/Manrope-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
      url('../fonts/Manrope-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Light.woff2') format('woff2'),
      url('../fonts/Manrope-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2'),
      url('../fonts/Manrope-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
      url('../fonts/Manrope-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/**
 * General
 */
.btn, 
.cm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 24px !important;
  white-space: nowrap;
  text-decoration: none !important;
  background: transparent;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn[disabled] {
  cursor: not-allowed;
}

.btn .svg-icon {
  margin-right: 12px;
}

.btn .svg-icon--cart {
  width: 19px;
  height: 16px;
}

.btn .svg-icon--cart path {
  fill: #fff;
}

/**
 * Sizes
 */
.btn--100 {
  width: 100%;
}

.btn--200 {
  min-width: 200px;
}

/**
 * Styles
 */
.btn--primary, 
.cm-btn {
  color: #fff;
  background-color: var(--color-primary);
}

.btn--secondary {
  color: #fff;
  background: var(--color-secondary);
}

.btn--primary-variable {
  color: #fff;
  background: var(--color-primary-variable);
}

.btn--secondary-variable {
  color: #fff;
  background: var(--color-secondary-variable);
}

.btn:hover {
  background-color: var(--color-dark);
  color: #fff;
}

.btn--primary:hover,
.btn--secondary:hover,
.btn--primary-variable:hover,
.btn--secondary-variable:hover,
.cm-btn:hover {
  background-color: var(--color-dark);
}

.btn--secondary-border {
  color: var(--color-dark);
  box-shadow: inset 0 0 0 2px var(--color-dark);
}
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding: 15px 32px;
  }
}
/**
 * General
 */
body {
  font-family: var(--font-primary);
  color: var(--color-default);
}

a {
  color: var(--color-dark);
}

/**
 * Headings
 */
.h1,
.editor > h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.editor > h1 {
  margin-bottom: 30px;
}

.h2,
.editor > h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}

.editor > h2 {
  margin-bottom: 23px;
}

.h3,
.editor > h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 37px;
}

.editor > h3 {
  margin-bottom: 24px;
}

.h4,
.editor > h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.editor > h4 {
  margin-bottom: 16px;
}

.h5,
.editor > h5 {
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
}

.h5--sm {
  font-size: 18px;
  line-height: 28px;
}

.h6,
.editor > h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.editor > h5,
.editor > h6 {
  margin-bottom: 23px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.wp-block-heading {
  color: #272626;
}

@media (max-width: 1099px) {
  .h1,
  .editor > h1,
  .h2,
  .editor > h2,
  .h3,
  .editor > h3,
  .h4,
  .editor > h4 {
    font-size: 21px;
    line-height: 28.7px;
  }
  .h5,
  .editor > h5,
  .h6,
  .editor > h6 {
    font-size: 18px;
    line-height: 24px;
  }
}
/**
 * Font sizes
 */
body,
.fs-md,
.has-md-font-size {
  /* font-size: 16px; */
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.fs-sm,
.has-sm-font-size {
  font-size: 14px;
  line-height: 18px;
}

.fs-lg,
.has-lg-font-size {
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 767px) {
  .fs-sm-xs {
    font-size: 12px;
    line-height: 16px;
  }

  .fs-sm-md {
    font-size: 16px;
    line-height: 24px;
  }

  .fs-lg,
  .has-lg-font-size,
  body,
  .fs-md,
  .has-md-font-size,
  .fs-sm,
  .has-sm-font-size  {
    font-size: 14px;
    line-height: 22px;
  }
}
sub,
sup {
  font-size: 60%;
}

/**
 * General
 */
.editor > p:last-child,
.editor > ul:last-child,
.editor > ol:last-child {
  margin-bottom: 0 !important;
}

.editor > p {
  margin-bottom: 16px;
}

.editor > * > a,
.edutir > ul a,
.editor > ol a {
  color: var(--color-primary);
}

/**
 * Lists
 */
.editor > ul,
.editor > ol {
  margin-bottom: 25px;
}

.editor > ol {
  margin-left: 32px;
  margin-right: 10px;
}

.editor > ul {
  list-style: none;
}

.editor > ul:not(:first-child),
.editor > ol:not(:first-child) {
  margin-top: 18px;
}

.editor > ul li,
.editor > ol li {
  margin-bottom: 18px;
}

.editor > ul li {
  position: relative;
  display: block;
  padding-left: 38px;
}

.editor > ul > li:last-child,
.editor > ol > li:last-child {
  margin-bottom: 0;
}

.editor > ul li:before {
  position: absolute;
  top: 8px;
  left: 18px;
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  transform: rotate(45deg);
  content: "";
}

/**
 * Tables
 */
.wp-block-table table {
  width: 100%;
}

.wp-block-table table,
.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--color-dark);
}

.wp-block-table th,
.wp-block-table td {
  padding: 8px 12px;
}

.wp-block-table th {
  border-bottom-width: 3px;
}

/* General */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 252px;
  pointer-events: none;
}

.site-header__inner {
  background: #fff;
  pointer-events: all;
  transition: all 0.2s;
}

.site-header__bar {
  padding: 13px 0;
  transition: all 0.2s;
}

.site-header__main {
  padding-top: 16px;
  margin-bottom: 16px;
  z-index: 10;
}

.site-header__main .user-profile__item {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.site-header__main .catalog-menu > ul > li > a {
  white-space: nowrap;
  text-align: center;
  padding: 14px 0;
}

.site-header__main .catalog-menu,
.site-header__main .search__col {
  transition: all 0.3s ease-in-out;
}

.site-header__bottom {
  padding-bottom: 16px;
  z-index: 9;
  transition: margin 0.3s ease-in-out;
}

.site-header__logo {
  width: 13.8125rem;
  display: block;
}

.site-header__shop-item:not(:last-child) {
  margin-right: 1rem;
}

.site-header__main .site-header__shop-item:hover svg path:first-child,
.site-header__main .site-header__shop-item:hover svg rect {
  fill: var(--color-primary);
}

.site-header__main .site-header__shop-item:hover svg path {
  fill: #fff;
  stroke: #fff;
}

#wp-admin-bar-bapf_debug_bar img {
  display: none !important;
}

.site-header__shop-item path {
  transition: all 0.2s;
}

.site-header__shop-item:hover path {
  fill: var(--color-secondary);
}

.tab-menu-wrapper > .sub-menu-wrapper, 
.tab-menu-wrapper .sub-menu-tabs {
  display: none;
}

.catalog-menu > ul > li {
  position: relative;
}

.catalog-menu > ul > li > a {
  display: block;
  color: #fff !important;
  background-color: var(--color-primary);
  padding: 1.375rem 0;
}
.catalog-menu > ul > li > a:hover {
  background-color: var(--color-dark);
}
.catalog-menu > ul > li > a:after {
  display: none;
}

.catalog-menu > ul > li > a > img {
  margin-right: 11px;
  height: 21px;
  width: 21px;
}

.sub-menu-inner > ul > li {
  padding: 8px 17px 8px 45px;
}

.sub-menu-inner > ul > li:hover {
  background-color: #EFF1F4;
}

.sub-menu-inner > ul > li > a {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 13px;
  line-height: normal;
  text-align: unset;
}

.sub-menu-inner > ul > li > a > img {
  position: absolute;
  left: -30px;
  top: 3px;
  width: 16px;
}

.nav-menu > ul > li > a {
  color: var(--color-dark);
  background-color: #E2E6EB;
  padding: 1.375rem 1.3rem;
  letter-spacing: 0.16px;
}
@media (hover: hover) and (pointer: fine) {
  .catalog-menu li > a:hover {
    color: inherit;
    background-color: inherit;
  }
}
.mobile-language-switcher {
  display: none;
}
@media (min-width: 1100px) {
  .nav-menu {
    padding-left: 0;
    width: calc(100% - 22.2%);
  }
  .tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu {
    padding-top: 19px;
  }
  .tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu > li:not(:last-child) {
    margin-bottom: .5rem;
  }
  .catalog-menu > ul > li:hover {
    background-color: var(--color-dark);
  }
  .catalog-menu > ul > li > a > svg {
    display: none !important;
  }
}
@media (max-width: 1099px) {
  .site-header {
    height: auto;
    z-index: 4;
  }

  .site-header__main {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
  }
  .home .site-header__main {
    padding-bottom: 0;
  }

  .site-header__logo {
    width: 156px;
  }

  .site-header__shop {
    margin-right: 17px;
  }
  .site-header .shop-item__col {
    padding-right: 0;
  }
  .home .site-header .shop-item__col {
    padding-right: 8px;
    margin-left: auto;
  }
  .site-header__shop-item:not(:last-child) {
    margin-right: 17px;
  }

  .site-header__shop .svg-icon--cart {
    width: 26px;
    height: 22px;
  }

  .site-header__shop .svg-icon--search {
    width: 22px;
    height: 22px;
  }

  .site-header__menu .cart-icon svg {
    width: 40px;
    height: 40px;
  }

  .site-header__menu .site-header__shop-item:not(.cart-icon) {
    display: none;
  }

  .cart-icon__values {
    display: none;
  }

  .site-header__bottom {
    display: none;
  }
  .sub-menu-inner > ul > li {
    padding: 0;
    width: 50%;
    border-bottom: 1px solid var(--color-light-grey);
    align-content: center;
    text-align: left;
  }
  .sub-menu-inner > ul > li:nth-child(odd):last-child {
    border-bottom: none;
  }
  .sub-menu-inner > ul > li:nth-child(even) {
    border-left: 1px solid var(--color-light-grey);
  }
  .sub-menu-inner > ul > li > a {
    text-align: left;
    padding: 13px 38px 10px 43px;
  }

  .sub-menu-inner > ul > li > a {
    font-weight: 600 !important;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    display: block;
  }
  .sub-menu-inner > ul > li > a > img {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    object-fit: contain;
  }
  .sub-menu-inner > ul > li > a > svg {
    /* display: none; */
  }
  /* .home .nav-main.active .sub-menu-wrapper {
    display: block;
  } */
   .catalog-menu .open-cat .sub-menu-wrapper {
    display: block !important;
   }
  .catalog-menu .open-cat .sub-menu {
    display: flex !important;
    flex-wrap: wrap;
  }
  .catalog-menu > ul > li > a,
  .b-fss__catalog > ul > li > a {
    background-color: var(--color-primary) !important;
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    display: block;
    color: #fff;
    /* pointer-events: none; */
    /* cursor: pointer; */
  }
  .catalog-menu > svg,
  .b-fss__catalog > svg,
  .catalog-menu > ul > li > a > svg {
    width: 14px;
    height: 8px;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 0;
    transform: rotate(180deg);
    transition: all 0.3s ease;
  }
  .catalog-menu > svg path,
  .b-fss__catalog > svg path,
  .catalog-menu > ul > li > a > svg path {
    fill: #fff;
  }
  .catalog-menu .open-cat > li > a > svg {
    transform: unset;
  }
  .nav-menu>ul>li>a {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    padding: 19px 24px;
    text-align: left;
  }
  .nav-menu > ul > li {
    background-color: #e2e6eb;
  }
}
@media (min-width: 782px) {
  .admin-bar .site-header {
    top: 32px;
  }
}

.lang-switch__current > svg {
  transform: rotate(90deg);
  position: absolute;
  right: -19px;
  top: 6px;
}

/* Top bar navigation & languages */
.site-header__bar a {
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.nav-top-bar a,
.site-header .user-profile {
  color: var(--color-default);
}

.nav-top-bar a:hover {
  color: var(--color-dark);
}

.site-header .user-profile:hover {
  color: var(--color-dark);
}

.site-header .user-profile:hover svg path {
  fill: var(--color-dark);
}

.site-header .social-nav__item:not(:last-child) {
  margin-right: 12px;
}

.site-header .top .contacts li,
.lang-switch__current {
  opacity: 0.7;
}

.site-header .top .contacts li:hover,
.lang-switch__current:hover {
  opacity: 1;
}

.site-header__bar a:hover,
.lang-switch__link.is-active {
  opacity: 1;
}

.nav-top-bar {
  margin-right: auto;
}

.lang-switch__item:not(:last-child) {
  margin-right: 10px;
}

.lang-switch__link {
  text-transform: uppercase;
}

/* Lang swticher */
.lang-switch {
  position: relative;
  padding-right: 19px;
  text-transform: uppercase;
  font-size: 0.762rem;
  font-weight: 600;
}

.lang-switch__dropdown {
  display: none;
}

.site-header__bar .user-profile svg {
  margin-right: 5px;
  transform: translateY(-2px);
}

@media (min-width: 1100px) {

  .nav-top-bar li:not(:last-child) {
    margin-right: 1.625rem;
  }
}

/* Main navigation */
.nav-main a {
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  transition: color 0.2s;
}

.nav-main a::before {
  display: block;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: attr(data-title);
}

@media (hover: hover) and (pointer: fine) {
  .nav-main a:hover,
  .nav-main .current-menu-item > a,
  .nav-main .current-menu-parent > a,
  .nav-main .current-product-ancestor > a {
    color: #fff;
    background-color: var(--color-dark);
  }
}

@media (min-width: 1100px) {

  .catalog-menu {
    width: 22.2%;
  }

  .nav-main li:not(:last-child) {
    margin-right: 12px;
  }

  .nav-main a:hover::after,
.nav-main .current-menu-item > a::after,
.nav-main .current-menu-parent > a::after,
.nav-main .current-product-ancestor > a::after {
    opacity: 1;
    margin-top: 6px;
  }
}
@media (max-width: 1099px) {
  .nav-main {
    display: none;
  }
}

/* Search form */
.search-form { 
  position: relative;
}

.search-box__wrapper button {
  position: absolute;
  top: 16px;
  right: 25px;
}

.search-box__wrapper button svg {
  width: 18px;
  height: 18px;
}

.search-box__input {
  border-radius: var(--border-radius);
  padding: 17px 24px;
}

.search__col.is-open .search-form__toggle path { fill: var(--color-secondary); }

.search-box {
  box-shadow: 0 5px 8px rgba(0,0,0, .16);
  max-width: 760px;
  width: 100%;
}

.search-box__input {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background-color: #EFF1F4;
}

@media (max-width: 1099px) {
  .search__col {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .search-box__wrapper button {
    top: 13px;
    right: 24px;
  }
  .home.is-scrolled .search__col {
    height: 0;
    opacity: 0;
    margin: 0;
    display: block;
  }
  .search__col {
    width: 20px;
    margin-right: -19px;
    margin-left: 18px;
  }
  .search-form__form {
    display: none;
  }
  .home .search-form__form {
    display: block;
  }
  .search__col.is-open {
    order: 3;
    width: 100%;
    margin: 10px 0 0;
  }
  .search__col.is-open .search-form__form {
    display: block;
    order: 3;
  }
  .search-form__toggle {
    z-index: 10;
    height: 30px;
  }
  .home .search-form__toggle,
  .search__col.is-open .search-form__toggle {
    z-index: 0
  }
  .nav-open .search__col {
    display: none;
  }
}
/* Minicart */
.cart-icon {
  position: relative;
}

.cart-icon__count {
  position: absolute;
  top: -10px;
  left: 31px;
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  pointer-events: none;
  background: var(--color-dark);
}

.cart-icon__count span {
  height: 13px;
}

@media (min-width: 1100px) {
  .cart-icon {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .cart-icon__count {
    top: -10px;
    left: 31px;
    width: 20px;
    height: 20px;
  }

  .cart-icon__amount {
    /* margin-left: 6px;
    padding: 5px;
    border-radius: 4px; */
    color: var(--color-dark);
  }

  .cart-icon__name {
    color: #6B6B6B;
  }

  .cart-icon__values {
    flex-direction: column;
    font-size: 14px;
    margin-left: 16px;
  }

}
/* Burger menu */
.burger {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 4px;
}

.burger__parts,
.burger__parts::before,
.burger__parts::after {
  width: 17px;
  height: 2px;
  background: #fff;
}

.burger__parts::before,
.burger__parts::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.2s;
}

.burger__parts::before {
  top: -6px;
}

.burger__parts::after {
  bottom: -6px;
}

/* Scrolled header */
.is-scrolled .site-header__inner {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1100px) {
  .is-scrolled .site-header__bar {
    height: 0;
    padding: 0;
    transform: translateY(-42px);
  }

  .is-scrolled .site-header__bottom {
    margin-top: -89px;
  }

  .is-scrolled .site-header__main .user-profile__item {
    opacity: 1;
    visibility: visible;
  }

  .shop-item__col {
    margin-left: auto;
    transition: all 0.3s ease-in-out;
  }

  body:not(.is-scrolled) .site-header__main .catalog-menu {
    width: 0;
    padding: 0;
  }

  .is-scrolled .site-header__main .search__col {
    max-width: 34.519%;
  }

  .is-scrolled .site-header__main .shop-item__col {
    max-width: 25%;
  }

  .site-header__bottom:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 16px);
    background-color: #EFF1F4;
    display: block;
    transition: all 0.3s ease-in-out;
  }

  .is-scrolled .site-header__bottom:before {
    opacity: 0;
  }
}
/* General */
.site-footer {
  overflow: hidden;
}

.site-footer__main {
  padding-top: 70px;
  padding-bottom: 34px;
}

.site-footer__logo-wrap {
  margin-bottom: 22px;
}

.site-footer__logo {
  display: inline-block;
  width: 172px;
}

.site-footer__legal {
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.contact-inline__value {
  color: #272626;
}

.site-footer .social-nav {
  margin: 32px 0;
}

.site-footer .social-nav img {
  width: 32px;
}

.site-footer .social-nav__item:not(:last-child) {
  margin-right: 12px;
}

.footer__logos {
  margin-bottom: 26px;
}

.footer__logos-grid div:not(:last-child) {
  margin-right: 4px;
}

.footer__label {
  margin-bottom: 19px;
}

.footer__banners {
  margin-top: 46px;
}

.footer__banners-grid div:not(:last-child) {
  margin-right: 12px;
}

.legal__logo img {
  max-width: 167px;
  width: 100%;
}

.footer__legal {
  margin-top: 7px;
}

.legal__text {
  font-weight: 400;
}

.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
}

@media (max-width: 1099px) {
  .wa {
    bottom: 12px;
    right: 12px;
  }
  .wa svg {
    width: 32px;
    height: 32px;
  }
}
.tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu > li > a {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu > li > a > svg {
  margin-left: auto;
  transform: rotate(90deg);
  height: 6px;
  width: 10px;
}
  
.tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu > li > a > .ic {
  right: 16px;
}
@media (min-width: 768px) {
  .contact-inline__value:last-child span {
    padding-right: 3px;
  }
}
@media (max-width: 1099px) and (min-width: 768px) {
  .site-footer__copyright-col,
  .site-footer__copyright-col .copyright {
    text-align: right;
  }
}
@media (max-width: 1099px) {
  .site-header__main .catalog-menu {
    order: 4;
    width: 100vw;
    margin: 0 -12px;
    padding: 0;
  }
  .tab-menu-wrapper > .sub-menu-wrapper {
      position: static !important;
  }
  .site-header__main .catalog-menu .sub-menu {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .site-header__main .catalog-menu > ul > li > a {
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
  }
  .tab-menu-wrapper > .sub-menu-wrapper > .sub-menu-inner > .sub-menu > li > a > svg {
    display: none !important;
  }

  .home .search__col {
    order: 3;
    margin: 11px 0 17px;
    opacity: 1;
    width: 100%;
  }

  .search-box__input {
    font-size: 14px;
    font-weight: 500;
    padding: 16px 24px 14px;
  }
  .site-footer__logo-wrap {
    margin-bottom: 18px;
    margin-left: -8px;
  }
  .site-footer__logo-wrap img {
    height: 64px;
  }
  .nav-footer {
    margin-bottom: 21px;
  }
  .site-footer .social-nav {
    margin: 20px 0 21px;
  }
  .site-footer .social-nav__item:not(:last-child) {
    margin-right: 11px;
  }
  .site-footer .social-nav img {
    width: 25px;
  }
  .footer__label {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 14px;
  }
  .footer__legal {
    margin-top: 9px;
  }
  .legal__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin-top: 17px;
  }
  .footer__banners {
    margin-top: 23px;
  }
}
@media (max-width: 767px) {
  .site-header__main .catalog-menu {
    margin: 0 -16px;
  }

  .site-footer__main {
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .site-footer__legal {
    padding: 19px 0 15px;
  }

  .site-footer__copyright-col {
    order: 0;
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 16px;
  }

  .site-footer__legal-col {
    order: 1;
    font-size: 12px;
    line-height: 16px;
  }
}
/* Inline contact */
.contact-inline {
  position: relative;
  padding-left: 29px;
}

.contact-inline .svg-icon {
  position: absolute;
  top: 3px;
  left: 0;
}

.contact-inline__value,
.contact-inline__link {
  font-size: 14px;
  line-height: normal;
}

.contact-inline__link {
  margin-top: 9px;
}

.contact-inline__link .link:not(:last-child) {
  margin-right: 10px;
}

.site-footer__contacts .contact-inline:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contact-inline .svg-icon--waypoint {
    left: 2px;
  }
  
  .contact-inline .svg-icon--email {
    top: 6px;
  }
}
@media (max-width: 767px) {
  .contact-inline__value, .contact-inline__link {
    font-size: 12px;
  }
  .contact-inline .svg-icon {
    width: 15px;
    top: -2px;
    left: 0;
    width: 17px;
  }
  .contact-inline__link {
    margin-top: 6px;
  }
}

/* Navigation */
.nav-footer li:not(:last-child) {
  margin-bottom: 10px;
}

.nav-footer a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-dark);
}

@media (max-width: 1099px) {
  .nav-footer ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -32px;
  }

  .nav-footer li {
    width: 150px;
  }

  .nav-footer li:nth-child(odd) {
    margin-right: 14px;
  }
  .nav-footer a {
    font-size: 12px;
    line-height: 16px;
  }
}
/* Legal navigation */
.nav-legal a {
  color: var(--color-medium);
}

@media (max-width: 767px) {
  .nav-legal {
    text-align: center;
  }
}
/* Developer */
.pdg-developer__label {
  margin-right: 16px;
}

.pdg-developer__logo {
  display: block;
  width: 68px;
  height: 26px;
  background-size: 100% 100%;
}

/* General */

.c-section {
  padding: 100px 0;
}

.last-custom-block .site-content,
.no-bot-pad .site-content {
  padding-bottom: 0 !important;
}

.screen-reader-text {
  display: none;
}

.tooltip_templates {
  display: none;
}

/* Dots */

.slick-dots {
  display: flex;
  position: absolute;
}

.slick-dots button {
  width: 16px;
  height: 3px;
  transition: all 0.3s ease-in-out;
  opacity: 0.3;
  border-radius: 2px;
}

.slick-dots li:not(:last-child) {
  margin-right: 9px;
}

.slick-dots .slick-active button {
  width: 32px;
  background-color: var(--color-primary);
  opacity: 1;
}

@media (max-width: 767px) {

  .c-section {
    padding: 32px 0;
  }
  
}
/* Overlays */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay--1 {
  background: linear-gradient(270deg, rgba(39, 38, 38, 0.00) 0%, rgba(0, 0, 0, 0.80) 67.97%);
}

@media (max-width: 767px) {
  .overlay--1 {
    background: linear-gradient(87deg, #272626 61.25%, #C3200E 123.18%);
    opacity: 0.1;
  }
}

@media (max-width: 767px) {
  .page-header__img {
    min-height: 220px;
  }
}


/* Item grid */
.item-grid {
  margin-bottom: -24px;
}

@media (min-width: 1100px) {
  .item-grid__item {
    margin-bottom: 24px;
    display: block;
  }
}
@media (max-width: 767px) {
  .item-grid--sm-sm {
    margin-bottom: -16px;
  }

  .item-grid--sm-sm .item-grid__item {
    margin-bottom: 16px;
  }
}
/* Block graphic */
.block-graphic,
.block-graphic__image,
.block-graphic__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-graphic__image {
  background-size: cover;
  background-position: center;
}

.block-graphic__overlay {
  background: #f8f3f1;
  background: linear-gradient(180deg, #f8f3f1 0%, rgba(248, 243, 241, 0) 100%);
}

/* Badges */

.custom-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 4px 13px;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.badge:not(:last-child) {
  margin-right: 6px;
}

.badge--secondary {
  color: #fff;
  background: var(--color-secondary);
}

@media (max-width: 767px) {
  .badge {
    padding: 4px 8px;
    font-size: 10px;
    line-height: 14px;
  }
}
/* Link */
.link {
  color: #272626;
  text-decoration: underline;
}

.link:hover {
  color: var(--color-primary);
}

/* Page title */
.page-title {
  margin-top: 2px;
  margin-bottom: 4px;
}

.page-text {
  margin-top: 22px;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .page-text {
    margin-top: 11px;
    margin-bottom: 32px;
  }
}

/* Cookie */
#klaro {
  opacity: 0;
}

@media (max-width: 1485.98px) and (min-width:1100px) {
  html {
      font-size:14px
  }

  .shop-item__col {
    max-width: 29% !important;
    flex: 0 0 29% !important;
  }

  .is-scrolled .site-header__main .search__col {
    flex: 0 0 31%;
    max-width: 31%;
  }

  .nav-top-bar li:not(:last-child) {
    margin-right: 1.425rem;
  }

}