:root {
  --white: #ffffff;
  --white_rgb: 255, 255, 255;
  --green: #506655;
  --green-2: #78857B;
  --green-3: #0F8340;
  --black: #363636;
  --black_rgb: 54, 54, 54;
  --brown: #CBBD9A;
  --brown_rgb-2: 222, 211, 183;
  --brown_rgb: 203, 189, 154;
  --bg-light: #F4F4F4;
  --border-color: #E0E0E0;
  --grey: #5B5B5B;
  --red: #EB5757;
  --primary-color: var(--white);
  --secondary-color: var(--green);
  --text-color: var(--black);
  --green-gradient: linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  --dark-green-gradient: linear-gradient(82.12deg, #455A4E -43.96%, #3D4B3E 95.78%);
  --sand-gradient: linear-gradient(180deg, #DED3B7 0%, #CBBD9A 100%);
  --shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  --font-primary: 'Poppins', sans-serif;
  --text-base-size: 16px;
  --wrapper-width: 1320px;
  /* Animate */
  --cubic-1: cubic-bezier(0.54, -0.81, 0.57, 0.57);
  --cubic-1-1: cubic-bezier(0.645, 0.045, 0.355, 1);
  --cubic-2: cubic-bezier(.34,.615,.4,.985);
  --cubic-3: cubic-bezier(.65,.025,.67,.36);
}

/* Custom selectors */

/* Custom breakpoints */

/* for full-screen windows on mobiles */

.wrapper {
  width: 100%;
  max-width: 2000px;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-title,
.guarantee__title,
.cbdpedia__title {
  font-size: 50px;
  line-height: 1.24;
  color: #363636;
  color: var(--black);
  font-weight: 700;
  margin-top: 0;
}

.section-title strong,
.guarantee__title strong,
.cbdpedia__title strong {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: inherit;
}

.section-title strong::before,
.guarantee__title strong::before,
.cbdpedia__title strong::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 9px;
  left: -1px;
  width: 100%;
  height: 10px;
  padding-right: 3px;
  background-image: url(../img/svg/underworld.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50px;
}

.section-title--white,
.guarantee__title--white,
.cbdpedia__title--white {
  color: #ffffff;
  color: var(--white);
}

.section-title--brown,
.guarantee__title--brown,
.cbdpedia__title--brown {
  color: #CBBD9A;
  color: var(--brown);
}

.sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  color: #CBBD9A;
  color: var(--brown);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.tag:hover {
  text-decoration: underline;
}

.tag:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #ffffff;
  background: var(--white);
  opacity: 0.2;
}

.btn-green {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  min-width: 228px;
  height: 48px;
  padding: 0 32px;
  border-radius: 40px;
  border: none;
  background: #506655;
  background: var(--secondary-color);
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.225855);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* &:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(257.27deg, #4C5E4D 8.63%, #5B796B 46.29%, #4C5E4D 91.81%);
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
  } */

/* &:hover {
    &:before {
      opacity: 1;
    }
  } */

.btn-green:disabled {
  cursor: default;
  background: #84968D;
  color: rgba(255, 255, 255, 0.4);
}

.btn-brown {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  min-width: 228px;
  height: 48px;
  padding: 0 32px;
  border-radius: 40px;
  border: none;
  background: #CBBD9A;
  background: var(--brown);
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.225855);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* &:hover {
    &:before {
      opacity: 1;
    }
  }
  &:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #CBBD9A -0.72%, #DED3B7 51.57%, #CBBD9A 102.15%);
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
  } */

.btn-brown:disabled {
  cursor: default;
  background: #C3BAA4;
  color: rgba(255, 255, 255, 0.4);
}

.btn-link {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

[data-animation-title],
[data-animation-text] {
  overflow: hidden;
}

.split-parent {
  overflow: hidden;
}

/* .main-hero__content, .main-hero__swiper .main-hero__img {
  opacity: 0;
} */

/* .main-wrapper header.main-header {
  transform: translateY(-100%);
} */

/* ._sze3r0 {
  bottom: 20px !important;
  left: auto !important;
  right: 20px !important;
}

body ._sze3r0 {
  bottom: 20px !important;
  left: auto !important;
  right: 20px !important;
} */

/* &:not(.home) {
    div[id^="trustbadge-container"] {
      display: none;
    }
  } */

/* @media only screen and (min-width: 649px) {
      top: auto !important;
      bottom: 20px !important;
    } */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px,0,0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0,0,0,.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

[dir="ltr"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-left: var(--swiper-centered-offset-before);
}

[dir="rtl"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-right: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-top: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(44px/ 44 * 27);
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (44px/ 2));
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: normal,;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
  display: inline-block;
  border-radius: 50%;
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color,#000);
  opacity: .2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none!important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px,-50%,0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0,0,0,.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,.1);
}

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-theme-color);
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform,opacity,height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=tel],
.iti input[type=text] {
  position: relative;
  z-index: 0;
  margin-top: 0!important;
  margin-bottom: 0!important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0,0,0,.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: 0;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0,0,0,.05);
}

.iti__country-name,
.iti__dial-code,
.iti__flag-box {
  vertical-align: middle;
}

.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0,0,0,.05);
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0,0,0,.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0;
}

.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(../img/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

.iti__flag.iti__np {
  background-color: transparent;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

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

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff") format("woff"),
    url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}

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

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff") format("woff"),
    url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Poppins-ExtraBold.woff") format("woff"),
    url("../fonts/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

.content-box-component {
  box-sizing: content-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-family: var(--font-primary);
  font-size: 16px;
  font-size: var(--text-base-size);
  font-weight: 400;
  line-height: 1.2;
  color: #363636;
  color: var(--text-color);
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

body.body--open-menu {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body.body--no-scroll {
  overflow: hidden;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.main-wrapper__overlay {
  display: block;
  width: 100%;
  /* height: 100vh; */
  background: #ffffff;
  background: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s ease;
}

/* height: 100vh;
  overflow: hidden; */

.body--no-scroll .main-wrapper .main-wrapper__overlay {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
}

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

a {
  color: inherit;
  text-decoration: unset;
}

/*a:focus,
input:focus,
button:focus {
  outline: 3px solid rgba(12, 159, 78, 0.25);
}*/

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.visual-hidden {
  display: none!important;
}



.accordion__body {
  max-height: 0;
  padding-right: 75px;
  overflow: hidden;
  transition: max-height 0.3s ease-in, margin-top 0.3s ease-in, margin-bottom 0.3s ease-in;
}

.accordion--open .accordion__body {
  margin-top: 16px;
  margin-bottom: 16px;
  transition: max-height 0.3s ease-out, margin-top 0.3s ease-out, margin-bottom 0.3s ease-out;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.accordion__header-title {
  margin-right: 30px;
}

.accordion--open .plus-btn {
  background-color: #CBBD9A;
  background-color: var(--brown);
  border-color: (--brown);
}

.accordion--open .plus-btn:before,
.accordion--open .plus-btn:after {
  background-color: #ffffff;
  background-color: var(--white);
}

.accordion--open .plus-btn:after {
  transform: translate(-50%,-50%);
}

.plus-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(203, 189, 154,0.3);
  border: 1px solid rgba(var(--brown_rgb),0.3);
  flex-shrink: 0;
  position: relative;
  transition: all .3s ease-out;
}

.plus-btn:hover {
  transform: scale(1.1);
}

.plus-btn:before,
.plus-btn:after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: #CBBD9A;
  background: var(--brown);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.plus-btn:after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.account-edit {
  width: 100%;
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 56px 76px 87px 88px;
}

.account-edit__body {
  width: 100%;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
}

.account-edit__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.account-edit__action {
  display: flex;
  align-items: center;
  grid-gap: 33px;
  gap: 33px;
}

.account-edit__action--desk {
  display: flex;
}

.account-edit__action--mob {
  display: none;
}

.account-edit__title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.account-edit__cancel {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #506655;
  color: var(--green);
}

.account-hero.hero .hero__title {
  margin-top: 70px;
}

.my-account-page {
  position: relative;
  z-index: 1;
}

.account-info {
  padding: 64px 0;
}

.account-info .account-info__content {
  width: 100%;
}

.account-info .categories-nav {
  width: 15%;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 64px;
  flex-shrink: 0;
  padding-bottom: 80px;
}

.account-info .categories-nav__list {
  grid-gap: 12px;
  gap: 12px;
}

.account-info .categories-nav__item:before {
  height: 64px;
}

.account-info .categories-nav__item .categories-nav__link {
  height: 64px;
  display: flex;
  align-items: center;
}

.account-info__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 0 31px;
  gap: 0 31px;
}

.account-info__log-out {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #506655;
  color: var(--green);
  height: 64px;
  display: flex;
  align-items: center;
}

.account-info__blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}

.account-block {
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 64px 80px 72px 88px;
}

.account-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-block__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
}

.account-block__title a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
  color: #506655;
  color: var(--green);
}

.account-block__title a:hover {
  text-decoration: none;
}

.account-block__title--desk {
  display: flex;
}

.account-block__title--mob {
  display: none;
}

.account-block__edit a {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  color: #506655;
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.account-block__edit.shipping-edit a {
  grid-gap: 9px;
  gap: 9px;
}

.account-block__info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
}

.account-block__item {
  display: flex;
  line-height: 1.5;
}

.account-block__key {
  width: 180px;
  color: #767676;
}

.account-block__value {
  width: calc(100% - 180px);
}

.address {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  transition: .5s;
}

.address-item {
  width: calc(50% - 26px / 2);
  max-width: 350px;
  max-height: 196px;
  padding: 20px 20px 26px 26px;
  margin-right: 26px;
  margin-bottom: 26px;
  border: 1px solid #E0E0E0;
  transform: scale(1);
  overflow: hidden;
  transition: .5s;
}

.address-item--hide {
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  max-height: 0;
  max-width: 0;
  transform: scale(0);
}

.address-item__close {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.address-item__close:before,
.address-item__close:after {
  content: '';
  display: block;
  width: 90%;
  height: 2px;
  background: #363636;
  background: var(--black);
  position: absolute;
  left: 5%;
  top: calc(50% - 2px/2);
  transition: background .3s ease;
}

.address-item__close:before {
  transform: rotate(45deg);
}

.address-item__close:after {
  transform: rotate(-45deg);
}

.address-item__close::before,
.address-item__close:after {
  background-color: #5B5B5B;
  background-color: var(--grey);
}

.address-item__head {
  display: flex;
  justify-content: space-between;
}

.address-item__title {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

.address-item__text {
  padding: 16px 0 20px;
}

.address-item__text span {
  display: block;
  line-height: 1.5;
}

.address-item__info {
  display: flex;
  align-items: center;
  grid-gap: 24px;
  gap: 24px;
}

.address-item__edit a {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #506655;
  color: var(--green);
}

.address-item__state {
  cursor: pointer;
  color: #506655;
  color: var(--green);
}

.account-edit .custom-field__select {
  border: 1px solid #D3D3D3;
  border-radius: 2px;
}

.account-edit .custom-field__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #363636;
  color: var(--black);
}

.account-edit .select2-container--default .select2-selection--single .select2-selection__arrow,
.account-edit .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  background-image: url(../img/svg/arr-brown.svg);
  right: 16px;
  width: 16px;
}

.advantage__list {
  margin: 64px 0;
  padding: 72px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 20px;
  gap: 20px;
}

.advantage__item {
  width: 134px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
}

.advantage__img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CBBD9A;
  background: var(--brown);
  border-radius: 50%;
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
}

.advantage__img img {
  height: 38px;
  -o-object-fit: contain;
  object-fit: contain;
}

.advantage__img.europe img {
  height: 48px;
  width: 48px;
}

.advantage__img.satisfaction img {
  height: 37px;
  width: 40px;
  right: -2px;
  position: relative;
}

.advantage__img.gluten img {
  height: 48px;
  width: 48px;
}

.advantage__img.moneyback img {
  width: 36px;
  height: 41px;
}

.advantage__img.natural img {
  height: 38px;
  right: -1px;
  position: relative;
}

.advantage__text {
  text-transform: uppercase;
  color: #CBBD9A;
  color: var(--brown);
  text-align: center;
  line-height: 1.5;
}

.age-popup .popup__wrapper {
  max-width: 872px;
  max-height: 456px;
  overflow: hidden;
}

.age-popup .popup__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80%, at 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
  background: linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
  background-blend-mode: darken;
}

.age-popup .popup__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.age-popup .popup__bg-pattern {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 475px;
  height: 455px;
  background-repeat: no-repeat;
  background-size: contain;
}

.age-popup .popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 648px;
  margin: 0 auto;
  padding: 30px 28px;
}

.age-popup .age-popup__title {
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 64px;
}

.age-popup .age-popup__btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-popup .age-popup__confirm,
.age-popup .age-popup__exit {
  margin: 0 12px 24px;
}

.age-popup .age-popup__confirm {
  width: 279px;
}

.age-popup .age-popup__exit {
  width: 232px;
}

.article-author {
  padding: 64px calc((100% - 2000px)/2 + 60px) 64px 0;
}

.article-author__wrapper {
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.article-author__row {
  display: flex;
  flex-wrap: wrap;
}

.article-author__image {
  width: 44%;
  max-width: 600px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.article-author__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.article-author__image .crew-list__item {
  width: 100%;
}

.article-author__image .social {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.article-author__column {
  width: calc(100% - 44%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 112px 60px 64px;
}

.article-author__column .article-author__name {
  margin: 0 0 24px;
  font-size: 26px;
}

.article-author__column .article-author__text {
  margin-bottom: 48px;
  margin-top: 0;
  font-weight: 300;
  line-height: 1.5;
}

.article-author__column .btn-brown {
  min-width: 280px;
}

.article-author__state {
  display: inline-block;
  line-height: 1;
  padding: 8px 16px;
  background-color: rgba(80, 102, 85, 0.08);
  border-radius: 50px;
  color: #506655;
  color: var(--green);
  margin-bottom: 16px;
}

.article-section {
  padding: 64px 0;
}

.article-content {
  padding: 56px 19.39% 56px 8.48%;
  background-color: #ffffff;
  background-color: var(--primary-color);
  display: flex;
  grid-gap: 64px;
  gap: 64px;
}

.article-content .general-text {
  flex-grow: 1;
}

.table-contents {
  width: 33%;
  max-width: 320px;
  padding-right: 24px;
  flex-shrink: 0;
  position: relative;
}

.table-contents:before {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% + 56px + 56px);
  background: #E0E0E0;
  background: var(--border-color);
  position: absolute;
  top: -56px;
  left: 100%;
}

.table-contents.open .table-contents__list {
  display: block;
}

.table-contents.open .table-contents__burger {
  grid-gap: 0;
  gap: 0;
}

.table-contents.open .table-contents__burger span {
  width: 16px;
}

.table-contents.open .table-contents__burger span:first-child {
  position: relative;
  top: 2px;
  transform: rotate(45deg);
}

.table-contents.open .table-contents__burger span:last-child {
  transform: rotate(135deg);
}

.table-contents__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  padding-bottom: 56px;
}

.table-contents__headline {
  margin: 0 0 24px;
  font-weight: bold;
  font-size: 18px;
}

.table-contents__burger {
  display: none;
}

.table-contents__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
}

.table-contents__item {
  margin-bottom: 16px;
}

.table-contents__link {
  font-weight: 300;
  position: relative;
}

.table-contents__link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: right center;
  transition: .35s ease;
}

.table-contents__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: left center;
  transform: scale(0,1);
  transition: .35s ease .35s;
}

.table-contents__link:hover::before {
  transform: scale(0,1);
}

.table-contents__link:hover::after {
  transform: scale(1,1);
}

.table-contents__link.active {
  font-weight: 500;
  color: #506655;
  color: var(--green);
}

.article-hero.categories-item {
  min-height: 100vh;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 48px;
  color: #ffffff;
  color: var(--white);
}

.article-hero.categories-item .categories-item__text {
  padding: 48px calc((100% - 2000px)/2 + 84px);
}

.article-hero.categories-item:before {
  height: 477px;
}

.article-hero.categories-item .categories-item__title {
  font-size: 50px;
  margin-top: 0;
  margin-bottom: 64px;
}

.article-hero.categories-item .categories-item__info {
  margin-top: 0;
}

.article-hero.categories-item .social {
  grid-gap: 8px;
  gap: 8px;
}

.article-hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-biography {
  margin-top: -80px;
  padding-left: calc((100% - 2000px) / 2 + 60px);
  padding-bottom: 64px;
}

.author-biography__bg {
  position: absolute;
  bottom: -32%;
  right: -24%;
  width: 49%;
}

.author-biography__bg img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.author-biography__content {
  position: relative;
  width: 100%;
}

.author-biography__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 60px;
  gap: 60px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 120px 138px 70px 0;
  overflow: hidden;
}

.author-biography__text {
  padding-left: 8.48%;
}

.author-hero.hero {
  z-index: unset;
}

.author-hero.hero .hero__content {
  display: flex;
  grid-gap: 40px;
  gap: 40px;
}

.author-hero.hero .hero__bg-pattern {
  right: -60px;
  left: unset;
  top: 70px;
}

.author-hero.hero .hero__img {
  width: calc(50% - 40px);
  max-width: 600px;
  position: relative;
  z-index: 2;
  bottom: -20px;
  margin-top: -20px;
}

.author-hero.hero .hero__img img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center center;
  object-position: center center;
}

.author-hero.hero .crew-list__item:before {
  z-index: 3;
}

.author-hero.hero .hero__text {
  width: calc(50% + 40px);
  padding-left: 0;
  margin-left: 0;
  margin-top: 32px;
  margin-bottom: 40px;
}

.author-hero.hero .product-hero-title {
  font-size: 50px;
  line-height: 1.24;
  text-align: left;
  margin-bottom: 16px;
}

.author-hero.hero .hero__text-inner {
  padding-bottom: 32px;
}

.author-hero.hero .author-email {
  margin: 24px 0;
}

.author-hero.hero .author-email a {
  color: #CBBD9A;
  color: var(--brown);
  text-decoration: underline;
}

.author-hero.hero .author-email a:hover {
  text-decoration: none;
}

.author-hero.hero .tag {
  color: #CBBD9A;
  color: var(--brown);
  font-weight: bold;
  margin-bottom: 24px;
}

.author-hero.hero .tag:hover {
  text-decoration: none;
}

.author-list {
  padding: 64px 0 24px;
}

.author-list .section-title {
  margin-bottom: 48px;
}

.author-list .categories-item {
  overflow: hidden;
}

.author-list .categories-block {
  padding-top: 0;
}

.best-reasons {
  padding-top: 82px;
  padding-bottom: 134px;
}

.best-reasons__list {
  display: flex;
  justify-content: center;
  grid-gap: 24px;
  gap: 24px;
}

@-webkit-keyframes fly-text {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(130% + 634px));
  }
}

@keyframes fly-text {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(130% + 634px));
  }
}

@-webkit-keyframes fly-text-lg {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(210% + 634px));
  }
}

@keyframes fly-text-lg {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(210% + 634px));
  }
}

.text-line {
  height: 120px;
  font-size: 120px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  line-height: 1;
  white-space: nowrap;
  position: relative;
  transform: translateX(-634px);
}

/* animation: fly-text 5s infinite linear; */

/* transform: translateX(-267px); */

/* transform: translateX(-50%); */

.text-line span {
  display: inline-block;
  margin: 0 40px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.text-line span:first-child {
  -webkit-animation: fly-text 30s infinite 0s linear;
  animation: fly-text 30s infinite 0s linear;
}

.text-line span:nth-child(2) {
  -webkit-animation: fly-text 30s infinite 7.5s linear;
  animation: fly-text 30s infinite 7.5s linear;
}

.text-line span:nth-child(3) {
  -webkit-animation: fly-text 30s infinite 15s linear;
  animation: fly-text 30s infinite 15s linear;
}

.text-line span:nth-child(4) {
  -webkit-animation: fly-text 30s infinite 22.5s linear;
  animation: fly-text 30s infinite 22.5s linear;
}

.best-bodies {
  background: #ffffff;
  background: var(--white);
  border-radius: 0px 0px 100px 100px;
  padding: 109px 0;
  margin-bottom: 150px;
}

.best-bodies__wrapper {
  display: flex;
  justify-content: center;
}

.best-bodies__human {
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.best-bodies__list {
  width: calc((100% - 560px)/2);
  position: relative;
  z-index: 3;
}

.best-bodies__list--left .best-bodies__item {
  flex-direction: row-reverse;
  text-align: right;
}

.best-bodies__item {
  display: flex;
  grid-gap: 24px;
  gap: 24px;
}

.best-bodies__item1 {
  margin-top: 23px;
  margin-bottom: 46px;
  margin-right: -136px;
}

.best-bodies__item1 .best-bodies__img {
  margin-top: 4px;
}

.best-bodies__item2 {
  margin-bottom: 82px;
  margin-right: -56px;
}

.best-bodies__item3 {
  margin-right: -142px;
}

.best-bodies__item3 .best-bodies__img {
  margin-top: 3px;
}

.best-bodies__item3 .best-bodies__content {
  max-width: 229px;
}

.best-bodies__item4 {
  margin-top: 27px;
  margin-bottom: 92px;
  margin-left: -138px;
}

.best-bodies__item4 .best-bodies__content {
  padding-top: 20px;
}

.best-bodies__item5 {
  margin-bottom: 16px;
  margin-left: -60px;
}

.best-bodies__item5 .best-bodies__content {
  max-width: 298px;
}

.best-bodies__item6 {
  margin-left: -136px;
}

.best-bodies__item6 .best-bodies__content {
  padding-top: 20px;
}

.best-bodies__img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #506655;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.best-bodies__img img {
  opacity: 0.84;
}

.best-bodies__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #4C5E4D;
  margin-top: 0;
  margin-bottom: 8px;
}

.best-bodies__text-list {
  font-size: 16px;
  font-weight: 300;
  color: #363636;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
}

.best-bodies__text-item {
  margin-bottom: 8px;
}

.best-bodies__text-item:last-child {
  margin-bottom: 0;
}

.best-bodies__text-item:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #363636;
  background: var(--black);
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
}

.best-container {
  overflow: hidden;
}

.best-container.hero {
  padding: 0;
}

.best-container .guarantee {
  color: #ffffff;
  color: var(--white);
}

.best-container .guarantee__wrapper {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 120px;
}

.best-container .guarantee__slide {
  background: transparent;
  visibility: hidden;
  transition: visibility .3s ease;
}

.best-container .guarantee__slide.swiper-slide-active {
  visibility: visible;
}

.best-container .guarantee__title {
  color: #ffffff;
  color: var(--white);
}

.best-hero {
  position: relative;
}

.best-hero:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  left: 0;
  bottom: 0;
}

.best-hero__wrapper {
  display: grid;
  grid-template-columns: 49.1% 50.9%;
  align-items: start;
}

.best-hero__product {
  /* margin-top: -74px;
		margin-bottom: -47px; */
  display: flex;
  justify-content: center;
  position: relative;
}

/* @media (--sm) {
			margin-top: -20px;
			margin-bottom: 0;
		} */

/* pointer-events: none; */

.best-hero__product:before {
  content: '';
  display: block;
  width: 1px;
  /* height: calc(100% + 65px + 35px); */
  height: calc(100% + 139px + 82px);
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  right: 0;
  /* top: -65px; */
  top: -139px;
}

.best-hero__product .best-product__coin {
  cursor: pointer;
}

.best-hero__advantage {
  padding: 86px 0 99px 100px;
  position: relative;
}

.best-hero__advantage:before {
  content: '';
  display: block;
  width: 200%;
  height: 1px;
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  left: 0;
  top: 0;
}

.best-hero__advantage .advantage__list {
  max-width: 500px;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 28px 48px;
}

.best-hero__advantage .advantage__item {
  grid-gap: 9px;
}

.best-hero__advantage .advantage__item .advantage__img {
  width: 80px;
  height: 80px;
  background-color: #506655;
  background-color: var(--green);
  box-shadow: none;
}

.best-hero__advantage .advantage__item .advantage__text {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.125;
  text-transform: uppercase;
}

.best-hero__title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 48px;
  padding-left: 24px;
}

.best-product {
  position: relative;
  z-index: 1;
}

.best-product:before {
  content: '';
  display: block;
  width: 102.62%;
  padding-top: 103.6%;
  background-image: url('../img/best/wood-pattern.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  left: 0;
  top: -8px;
}

.best-product__coin {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #C2B289;
  border: 1px solid #CBBD9A;
  position: absolute;
  left: 69px;
  top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.best-product__coin-price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.best-product__coin-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.best-order {
  position: relative;
}

.best-order:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  left: 0;
  top: 0;
}

.best-order__wrapper {
  display: grid;
  grid-template-columns: 49.1% 50.9%;
}

.best-order__product {
  /* width: 490px; */
  width: 480px;
  max-width: 100%;
  /* margin: -33px auto -46px; */
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
}

.best-order__product .best-product__coin {
  left: 45px;
  top: 93px;
}

.best-order__text {
  position: relative;
  padding: 48px 48px 42px 24.5%;
}

.best-order__text:before {
  content: '';
  display: block;
  width: 200%;
  height: 1px;
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  right: 0;
  top: 0;
}

.best-order__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.best-order__item {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 23px;
  position: relative;
}

.best-order__item:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #506655;
  background: var(--green);
  margin-right: 12px;
  margin-bottom: -4px;
}

.best-order__right {
  padding: 122px 0 75px 112px;
  position: relative;
}

.best-order__right:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  left: 0;
  top: 0;
}

.best-order__title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 56px;
}

.best-order__form {
  width: 100%;
  max-width: 470px;
  color: #363636;
  color: var(--text-color);
}

.best-order__form .custom-field {
  margin-bottom: 16px;
}

.best-order__form .custom-field__label {
  color: #ffffff;
  color: var(--white);
  margin-bottom: 8px;
}

.best-order__form .accessory-link {
  color: rgba(255, 255, 255, 0.91);
}

.best-order__form .password-reset-term::before {
  border-bottom: 2px solid #78857B;
  border-right: 2px solid #78857B;
}

.best-order__form .password-reset-term--active {
  color: #1cb15b;
}

.best-order__form .custom-field--error .custom-field__input {
  border: none;
}

.best-order__form .custom-field__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
}

.best-order__form .btn-brown {
  width: 280px;
  height: 62px;
  font-size: 16px;
  text-transform: uppercase;
}

@-webkit-keyframes fly-text-people {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(100% + 1223px));
  }
}

@keyframes fly-text-people {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(100% + 1223px));
  }
}

@-webkit-keyframes fly-text-sm-people {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(100% + 1000px));
  }
}

@keyframes fly-text-sm-people {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(100% + 1000px));
  }
}

.text-line.text-line--people {
  height: 104px;
  /* transform: translateX(-123px); */
  /* transform: translateX(-100%); */
  transform: translateX(-1223px);
}

/* margin: 0 100px; */

.text-line.text-line--people span:first-child {
  -webkit-animation: fly-text-people 50s infinite 0s linear;
  animation: fly-text-people 50s infinite 0s linear;
}

.text-line.text-line--people span:nth-child(2) {
  -webkit-animation: fly-text-people 50s infinite 25s linear;
  animation: fly-text-people 50s infinite 25s linear;
}

.best-people {
  padding: 132px 0;
}

.best-people__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
  max-width: 1290px;
  margin: 0 auto;
}

.best-people__item {
  display: flex;
  grid-gap: 20px;
  gap: 20px;
  justify-self: center;
}

.best-people__photo {
  flex-shrink: 0;
}

.best-people__text {
  max-width: 273px;
}

.best-people__cite {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 16px;
}

.best-people__author {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.bestsellers {
  background-color: #ffffff;
  background-color: var(--white);
}

.bestsellers .section-title {
  margin-bottom: 72px;
}

.bestsellers .product-list {
  padding-top: 72px;
  padding-bottom: 72px;
}

/*.blog-hero.hero {
	@media (--lg) {
		min-height: 544px;
	}
}*/

.blog-list {
  padding: 64px 0 24px;
}

.blog-list .categories-item {
  overflow: hidden;
}

.blog-list .categories-nav {
  width: 15%;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 64px;
  flex-shrink: 0;
  padding-bottom: 80px;
}

.blog-list .categories-nav__list {
  grid-gap: 12px;
  gap: 12px;
}

.blog-list .categories-nav__item:before {
  height: 64px;
}

.blog-list .categories-nav__item .categories-nav__link {
  height: 64px;
  display: flex;
  align-items: center;
}

.blog-list__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 0 31px;
  gap: 0 31px;
}

.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  opacity: .8;
}

.breadcrumbs__item {
  position: relative;
  margin-right: 8px;
}

.breadcrumbs__item:not(:last-child):after {
  content: '\\';
  font-size: 12px;
  font-weight: normal;
  margin-left: 8px;
}

.breadcrumbs__item a:hover {
  text-decoration: underline;
}

.cart__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 20px 0 100px;
}

.cart-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  transform: scale(1);
  max-height: 500px;
  padding: 26px 0;
  height: 100%;
  max-width: 900px;
  transition: .5s;
}

.cart-product__right {
  display: flex;
  align-items: center;
  grid-gap: 40px;
  gap: 40px;
}

.cart-product--hide {
  max-height: 0;
  transform: scale(0);
  padding: 0;
}

.cart-product__info {
  display: flex;
  align-items: stretch;
  width: 50%;
}

.cart-product__description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
}

.cart-product__top {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}

.cart-product__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  padding: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}

.cart-product__img img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}

.cart-product__name {
  line-height: 1.5;
}

.cart-product__tags {
  font-size: 14px;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
}

.cart-product__subscribe {
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  color: #5B5B5B;
  color: var(--grey);
  margin-top: 16px;
}

.cart-product__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 8px;
  gap: 8px;
  min-width: 100px;
}

.cart-product__price-old {
  font-weight: 300;
  line-height: 1;
  text-decoration: line-through;
}

.cart-product__price-new {
  font-weight: 600;
  color: #506655;
  color: var(--green);
  font-size: 20px;
}

.cart-product__remove {
  position: relative;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.cart-product__remove:before,
.cart-product__remove:after {
  content: '';
  display: block;
  width: 90%;
  height: 2px;
  background: #363636;
  background: var(--black);
  position: absolute;
  left: 5%;
  top: calc(50% - 2px/2);
  transition: background .3s ease;
}

.cart-product__remove:before {
  transform: rotate(45deg);
}

.cart-product__remove:after {
  transform: rotate(-45deg);
}

.cart-product__wrapper {
  display: flex;
  flex-direction: column;
}

.cart-product__delivery {
  width: calc(100% - 100px);
  min-height: 64px;
  margin-left: 100px;
  margin-top: 8px;
  /* background-color: #ECECEC; */
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 8px 0;
  gap: 8px 0;
  /* justify-content: space-between; */
  /* flex-direction: column;
    align-items: flex-start; */
  position: relative;
}

.cart-product__delivery.cart-product__delivery--error .cart-product__delivery-day input,
.cart-product__delivery.cart-product__delivery--error .cart-product__delivery-month input {
  border-color: #EB5757;
  border-color: var(--red);
}

.cart-product__delivery-wrapper {
  display: flex;
  grid-gap: 6px 12px;
  gap: 6px 12px;
  align-items: center;
  flex-grow: 1;
  /* padding: 16px 14px; */
  padding: 8px 14px;
  /* padding: 8px 10px; */
  /* margin-left: calc(96px + 16px); */
  /* margin-top: 8px; */
  background-color: #ECECEC;
  /* background-color: var(--bg-light); */
  color: #5B5B5B;
  color: var(--grey);
  font-size: 14px;
  /* font-size: 16px; */
  line-height: 16px;
  font-weight: 500;
}

.cart-product__delivery-wrapper.subscription-set-duration {
  position: relative;
}

.cart-product__delivery-wrapper.subscription-set-duration:after {
  content: '';
  display: block;
  width: 3px;
  height: 32px;
  background: #F4F4F4;
  background: var(--bg-light);
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.cart-product__delivery-day,
.cart-product__delivery-month {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  font-weight: 300;
}

.cart-product__delivery-day p,
.cart-product__delivery-month p {
  margin: 0;
}

.cart-product__delivery-day input,
.cart-product__delivery-month input {
  width: 40px;
  border: 1px solid #E0E0E0;
  /* color: #5B5B5B; */
  /* font-size: 14px; */
  color: inherit;
  font-size: inherit;
  line-height: 20px;
  font-weight: 300;
  text-align: center;
}

.cart-product__delivery-day input:focus,
.cart-product__delivery-month input:focus {
  border-color: #506655;
  border-color: var(--green);
  outline: none;
}

.cart-product__delivery-set {
  background: #CBBD9A;
  background: var(--brown);
  border: none;
  padding: 5px 15px;
  border-radius: 50px;
  color: #ffffff;
  color: var(--white);
  /* font-size: 14px; */
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.cart-product__delivery-duration {
  background: #ffffff;
  background: var(--white);
  border-radius: 100px;
  display: flex;
}

.subscription-duration {
  display: none;
}

.subscription-duration__label {
  /* display: inline-block; */
  display: flex;
  justify-content: center;
  flex-grow: 1;
  height: 32px;
  background: #ffffff;
  background: var(--white);
  border-radius: 100px;
  cursor: pointer;
}

.subscription-duration__label:last-of-type .subscription-duration__text:after {
  display: none;
}

.subscription-duration__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  /* display: inline-block; */
  font-size: 14px;
  font-weight: 300;
  padding: 8px 12px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.subscription-duration__text:before {
  content: '';
  display: block;
  width: calc(100% + 5px);
  height: 100%;
  background: inherit;
  border-radius: inherit;
  position: absolute;
  left: -2px;
  top: 0;
  z-index: -1;
}

.subscription-duration__text:after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: #C4C4C4;
  position: absolute;
  z-index: -2;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.subscription-duration:checked ~ .subscription-duration__text {
  background: #CBBD9A;
  background: var(--brown);
  color: #ffffff;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.08px;
}

.subscription-error {
  display: none;
  margin-top: 0;
  margin-bottom: 0;
  /* margin-left: calc(96px + 16px); */
  font-size: 13px;
  color: #EB5757;
  color: var(--red);
  position: absolute;
  left: 0;
  top: 100%;
}

.subscription-error.subscription-error--show {
  display: block;
}

.subscription-set {
  /* margin-left: calc(96px + 16px); */
  /* margin-top: 8px; */
  padding-top: 8px;
  padding-left: 14px;
  font-size: 14px;
  /* font-size: 16px; */
  font-weight: 300;
}

.subscription-set p {
  margin: 0 0 8px;
}

/* .cart-page {
  .cart-product {
    &__delivery-wrapper {
      padding-left: 0;
      padding-right: 0;
      @media (--xs) {
        padding: 9px 15px;
      }
    }
  }
} */

.my-account-page .cart-product__delivery {
  width: calc(100% - 80px);
  margin: 15px 0 16px 80px;
  /* width: auto;
    min-width: 395px; */
  /* @media (--xxlg) {
      order: 3;
      margin: 10px auto;
    } */
}

/* @media (--xs) { */

/* @media (--sm) {
      margin: 10px 0;
      min-width: 0;
    } */

.my-account-page .cart-product__delivery-wrapper {
  /* margin: 0; */
  /* background-color: #f9f9f9; */
  background: #F5F5F5;
  padding: 8px 25px;
}

.my-account-page .cart-product__delivery-wrapper.subscription-set-duration:after {
  /* background: #EAEAEA; */
  background: #ffffff;
  background: var(--white);
}

.my-account-page .subscription-error {
  font-size: 12px;
  margin-left: 0;
}

.my-account-page .subscription-set {
  font-weight: normal;
  margin: 0;
  padding-left: 0;
}

.cartpopup_delivery-time {
  position: absolute;
  margin: 0;
  padding: 5px 24px 0;
  font-size: 14px;
}

.cart-info-delivery {
  margin: 0;
  padding: 26px 0;
}

.cart-page {
  display: flex;
}

.cart-list__wrapper {
  margin-top: 96px;
  width: 100%;
  max-width: calc(2000px - 484px);
}

.cart-total {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 484px;
  min-width: 484px;
  overflow: hidden;
  z-index: 2;
  min-height: 100vh;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.cart-total p {
  margin: 0;
}

.cart-total__earn {
  text-align: center;
  padding: 88px 26px 32px;
  background-color: #F0F0F0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.cart-total__earn--brown {
  color: #CBBD9A;
  color: var(--brown);
  font-weight: 600;
  padding-bottom: 10px;
}

.cart-total__middle {
  background: #F0F0F0;
}

.cart-total .loyalty {
  padding: 32px 40px;
  background: #ffffff;
  background: var(--primary-color);
}

.cart-total .loyalty__title {
  font-size: 20px;
  font-weight: 700;
}

.cart-total .loyalty__sub-title {
  font-weight: 300;
  margin: 8px 0 16px;
}

.cart-total .loyalty__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.cart-total .loyalty__input {
  display: none;
}

.cart-total .loyalty__input.active {
  display: block;
}

.cart-total .coupon {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
  border-top: 2px solid #ffffff;
  border-top: 2px solid var(--primary-color);
}

.cart-total .coupon__title {
  font-size: 20px;
  font-weight: 700;
}

.cart-total .coupon input {
  width: 100%;
}

.cart-total__price {
  padding: 40px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  flex-grow: 1;
}

.cart-total__subtotal,
.cart-total__discount,
.cart-total__total,
.cart-total__shipping {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-total__subtotal,
.cart-total__discount,
.cart-total__shipping {
  font-weight: 300;
}

.cart-total__subtotal,
.cart-total__shipping {
  margin-bottom: 16px;
}

.cart-total__discount {
  margin-bottom: 32px;
}

.cart-total__total {
  font-size: 22px;
  font-weight: 700;
  color: #506655;
  color: var(--green);
  margin-bottom: 16px;
}

.cart-total__shipping {
  font-size: 14px;
}

.cart-total .btn-green {
  margin: 20px 0 16px;
  width: 100%;
  max-width: unset;
}

.cart-total__info {
  text-align: center;
  color: #5B5B5B;
  color: var(--grey);
}

.cart-total__checkout-btn.cart-total__checkout-btn--disabled {
  cursor: default;
  background: #84968D;
  color: rgba(255, 255, 255, 0.4);
}

.cart-total__checkout-btn.cart-total__checkout-btn--disabled:hover .animate-hover__span {
  top: -100%;
}

.cart-total__checkout-btn.cart-total__checkout-btn--disabled:hover .animate-hover__span:first-child {
  opacity: 0;
}

.cart-total__checkout-btn.cart-total__checkout-btn--disabled:hover .animate-hover__span:last-child {
  opacity: 1;
}

.cart-total__checkout-btn.load {
  pointer-events: none;
}

.cart-total__checkout-btn.load .animate-hover,
.cart-total__checkout-btn.load .animate-hover__span {
  pointer-events: none;
}

.catalog-controls {
  padding: 48px 0;
  /* padding-top: 50px;
	padding-bottom: 24px; */
}

/* @media (--sm-only) {
		flex-grow: 1;
		display: flex;
		padding-top: 40px;
		padding-bottom: 32px;
	} */

.catalog-controls__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* @media (--sm-only) {
		flex-direction: column-reverse;
		align-items: flex-start;
		flex-grow: 1;
	} */
}

.catalog-controls__left {
  display: flex;
  align-items: center;
  /* @media (--sm-only) {
		width: 100%;
		justify-content: space-between;
	} */
}

.catalog-controls__right {
  /* @media (--sm-only) {
		margin-bottom: 48px;
		width: 100%;
	} */
}

.catalog-controls__filter {
  display: flex;
  align-items: center;
  grid-gap: 40px;
  gap: 40px;
}

.catalog-controls__filter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 30px;
  gap: 30px;
  padding-right: 40px;
}

.catalog-controls__filter-item {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
}

.catalog-controls__filter-close {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.catalog-controls__filter-close:before,
.catalog-controls__filter-close:after {
  content: '';
  display: block;
  width: 90%;
  height: 2px;
  background: #363636;
  background: var(--black);
  position: absolute;
  left: 5%;
  top: calc(50% - 2px/2);
  transition: background .3s ease;
}

.catalog-controls__filter-close:before {
  transform: rotate(45deg);
}

.catalog-controls__filter-close:after {
  transform: rotate(-45deg);
}

.catalog-controls__filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  /* background: rgba(80, 102, 85, 0.08); */
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.catalog-controls__filter-btn:hover:before {
  transform: scale(1.1);
}

.catalog-controls__filter-btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(80, 102, 85, 0.08);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform-origin: 50% 50%;
  transition: transform .2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform .2s var(--cubic-1-1);
}

.catalog-controls__filter-btn.active:before {
  background: #506655;
  background: var(--green);
}

.catalog-controls__filter-btn.active svg path {
  fill: #ffffff;
  fill: var(--white);
}

.catalog-controls__filter-btn svg {
  pointer-events: none;
}

.catalog-controls__filter-btn svg path {
  fill: #506655;
  fill: var(--green);
}

/* .catalog-controls__finder {
	font-size: 20px;
	font-weight: bold;
	color: var(--brown);
	text-decoration: underline;
	&:hover {
		text-decoration: none;
	}
} */

.catalog-controls__sort {
  width: 194px;
}

.catalog-controls__sort .select2-container .select2-selection--single {
  /* background: rgba(var(--white_rgb), 0.2); */
  background: rgba(80, 102, 85, 0.08);
}

.catalog-controls__sort .select2-container--default .select2-selection--single .select2-selection__rendered {
  /* color: var(--white); */
  color: #506655;
  color: var(--green);
  text-transform: capitalize;
}

.catalog-controls__sort .select2-container {
  width: 194px !important;
}

.catalog-controls__sort .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 60px;
}

.catalog-controls__sort .select2-results__option.select2-results__option--disabled {
  display: none;
}

.catalog-controls__sort .select2-container--default .select2-selection--single .select2-selection__arrow {
  /* background-image: url(../img/svg/arr-white.svg); */
  background-image: url(../img/svg/arr-green.svg);
  right: 22px;
}

.catalog-controls__sort .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  right: 25px;
}

.catalog-controls__sort .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #506655;
  background-color: var(--green);
}

.catalog-filters {
  display: grid;
  grid-template-rows: auto 1fr;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 520px;
  max-width: 100%;
  height: 100vh;
  padding: 0;
  background: #ffffff;
  background: var(--white);
  transform: translateX(-100%);
  transition: .3s;
}

.catalog-filters--open {
  transform: none;
}

.catalog-filters__top {
  height: 90px;
  background: #ffffff;
  background: var(--white);
  position: absolute;
  left: 0;
  right: 4px;
  top: 0;
  z-index: 2;
}

.catalog-filters__close {
  background: transparent;
  border: none;
  position: absolute;
  left: 60px;
  top: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.catalog-filters__close:before,
.catalog-filters__close:after {
  content: '';
  display: block;
  width: 90%;
  height: 3px;
  background: #363636;
  background: var(--black);
  position: absolute;
  left: 5%;
  top: calc(50% - 3px/2);
  transition: background .3s ease;
}

.catalog-filters__close:before {
  transform: rotate(45deg);
}

.catalog-filters__close:after {
  transform: rotate(-45deg);
}

.catalog-filters__close:before,
.catalog-filters__close:after {
  width: 100%;
  left: 0;
}

.catalog-filters__close:hover:before,
.catalog-filters__close:hover:after {
  background: #CBBD9A;
  background: var(--brown);
}

.catalog-filters__bottom {
  padding: 20px 60px 40px;
}

.catalog-filters__submit {
  width: 100%;
  max-width: 100%;
}

.catalog-filters__row {
  height: calc(100vh - 110px);
  padding: 105px 60px 20px;
  overflow: auto;
  scrollbar-color: #CBBD9A #F4F4F4;
  scrollbar-width: thin;
}

.catalog-filters__row::-webkit-scrollbar {
  width: 4px;
}

.catalog-filters__row::-webkit-scrollbar-track {
  background: #F4F4F4;
  border: 0px;
}

.catalog-filters__row::-webkit-scrollbar-thumb {
  background: #CBBD9A;
}

.filter-item {
  padding-top: 24px;
  border-top: 1px solid #E0E0E0;
  border-top: 1px solid var(--border-color);
}

.filter-item__title {
  font-size: 16px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0 0 24px;
}

.filter-item__link {
  font-weight: 300;
  margin-bottom: 24px;
}

.catalog-hero.hero {
  /*min-height: 585px;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.catalog-hero.hero .hero__bg-pattern {
  right: -60px;
  left: unset;
  top: 70px;
}

.catalog-hero.hero .hero__img {
  position: absolute;
  /*left: 0;*/
  right: 0;
  top: 0;
  bottom: -16px;
  width: calc(50% - 60px);
  z-index: -1;
}

.catalog-hero.hero .hero__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center center;
  object-position: center center;
}

.catalog-hero.hero .hero__text {
  width: calc(50% + 53px);
  padding-left: 0;
  /*margin-left: calc(50% - 53px);*/
  margin-left: 0;
  margin-top: 32px;
  margin-bottom: 40px;
}

/* @media (--l) { */

/* @media (--lg) {
			width: calc(50% + 60px);
		} */

.catalog-list {
  background: #ffffff;
  background: var(--white);
  overflow: hidden;
}

.catalog-list .product-list {
  padding-top: 42px;
  padding-bottom: 54px;
}

.catalog-list .pagination {
  position: relative;
}

.catalog-list .pagination:before {
  content: '';
  display: block;
  width: 200%;
  height: 1px;
  background: #E0E0E0;
  background: var(--border-color);
  position: absolute;
  left: -50%;
  top: 0;
}

.catalog-list__wrapper.wrapper {
  padding-bottom: 24px;
  position: relative;
}

.categories-block {
  flex-grow: 1;
}

.categories-block__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  margin-bottom: 16px;
}

.categories-item {
  height: 480px;
  position: relative;
  z-index: 1;
}

.categories-item:before {
  content: '';
  display: block;
  width: 100%;
  height: 232px;
  background: linear-gradient(180deg, rgba(25, 27, 28, 0) 0%, #191B1C 100%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.categories-item__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  z-index: -2;
}

.categories-item__text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}

.categories-item__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* a {
		transition: .3s ease;
		&:hover {
			color: var(--brown);
		}
	} */
}

.categories-item__title a {
  display: block;
}

.categories-item__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.categories-item__info {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px 24px;
  gap: 10px 24px;
  margin-top: 32px;
}

.categories-item__info span {
  display: block;
}

.categories-item__info span:not(:first-child) {
  position: relative;
  padding-left: 35px;
}

.categories-item__info span:not(:first-child):before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #CBBD9A;
  background: var(--brown);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.categories-nav {
  min-width: 200px;
}

.categories-nav__list {
  display: flex;
  flex-direction: column;
  grid-gap: 56px;
  gap: 56px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.categories-nav__item {
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  color: rgba(54, 54, 54, 0.79);
  color: rgba(var(--black_rgb), 0.79);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.categories-nav__item:before {
  content: '';
  display: block;
  width: 264%;
  /* height: 96px; */
  /* height: 80px; */
  height: 72px;
  background: linear-gradient(270.11deg, #FFFFFF 0.13%, #F4F4F4 53.77%);
  box-shadow: 3px 3px 30px #EFEFEF;
  border-radius: 200px;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  opacity: 0;
  transition: opacity .3s ease;
}

.categories-nav__item.current {
  font-weight: bold;
  color: #506655;
  color: var(--green);
}

.categories-nav__item.current:before {
  opacity: 1;
}

.categories-nav__link {
  display: block;
}

.categories-nav__item-text {
  display: inline-block;
}

.categories-slider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.categories-slider .swiper-pagination {
  bottom: 24px;
}

.categories-slider .categories-nav {
  width: 34%;
  padding-left: 8.56%;
  /* padding-right: 70px; */
  padding-right: 5.3%;
}

.categories-slider .categories-nav__item {
  font-size: 20px;
}

/* @media (--xlg) {
			font-size: 20px;
		} */

/* @media (--sm) {
			font-size: 16px;
		} */

.categories-slider__wrapper {
  width: 66%;
  position: relative;
  margin-top: -87px;
}

/* position: absolute;
	left: 34%;
	top: -87px;
	bottom: 0; */

.categories-slider__swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.categories-slider__item {
  height: 560px;
}

/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(82.12deg, #5B796B -43.96%, #4C5E4D 95.78%); */

/* height: auto;
	padding-top: 64.281%; */

/* min-height: 560px; */

.categories__swiper-nav {
  bottom: 40px;
  right: 50px;
}

.categories-slider__link {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.categories-slider__item-text {
  max-width: 300px;
  margin: 0;
  position: absolute;
  z-index: 5;
  left: 90px;
  top: 80px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
  color: var(--white);
  text-decoration: none;
}

.categories-slider__item-img {
  width: 70%;
  height: 85%;
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.categories-slider__bg-pattern {
  width: 63%;
  padding-top: 60.2%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 1%;
  z-index: -1;
}

.cbdpedia {
  padding: 72px 0 0;
  background-color: #363636;
  background-color: var(--black);
  color: #ffffff;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.cbdpedia::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.cbdpedia::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: calc((100% - 2000px) / 2 + 60px);
  z-index: 1;
  /* width: calc(100% - 60px); */
  /* height: 64px; */
  /* height: 70px; */
  height: 56px;
  background-color: #ffffff;
  background-color: var(--white);
  /* @media (--sm) {
      margin-left: 0;
    } */
}

/* margin-left: calc((100% - 2000px) / 2 + 60px); */

/* @media (--xxlg) {
      height: 56px;
    } */

.cbdpedia__row {
  position: relative;
  display: flex;
  justify-content: space-between;
}

/*.sub-title {
    position: absolute;
    top: 0;
    @media (--md) {
      position: relative;
      top: unset;
    }
  }

  .section-title {
    position: absolute;
    top: 32px;
    z-index: 2;
    @media (--md) {
      position: relative;
      top: unset;
    }
    @media (--sm) {
      margin-bottom: 24px;
    }
  }*/

.cbdpedia__column:first-child {
  /* width: 100%;
      max-width: 470px; */
  /* width: 35.65%; */
  /* padding-right: 40px; */
  width: 39%;
}

.cbdpedia__slider {
  position: relative;
  padding: 0;
  width: 100%;
}

.cbdpedia__pagination.swiper-pagination {
  position: relative;
  justify-content: flex-start;
  bottom: 13vw;
}

/* @media (--xlg) {
      bottom: 100px;
    }
    @media (--xlg) {
      bottom: 70px;
    } */

.cbdpedia__slide {
  background-color: #363636;
  background-color: var(--black);
  z-index: 1;
}

.cbdpedia__slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.cbdpedia__slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  /* height: 58px; */
  /* height: 70px; */
  height: 56px;
  background-color: #ffffff;
  background-color: var(--white);
}

/* @media (--xxlg) {
        height: 56px;
      } */

.cbdpedia__image {
  position: relative;
  /* width: 50vw; */
  width: 55.45%;
}

.cbdpedia__image-wrap {
  /* width: 50vw; */
  width: 100%;
  max-width: 732px;
  /* height: 46vw;
      max-height: 662px; */
  height: 662px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cbdpedia__image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  /* @media (--md) {
        height: 420px;
      } */
}

.cbdpedia .section-title {
  /* margin-bottom: 40px; */
  margin-bottom: 32px;
  /* @media (--lg) {
      margin-bottom: 32px;
    } */
  /* @media (--sm) {
      margin-bottom: 24px;
    } */
}

.cbdpedia .swiper-wrapper {
  align-items: flex-start;
  overflow: hidden;
}

.cbdpedia__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  min-height: 300px;
}

/* @media (--xlg) {
      margin-top: 80px;
    }
    @media (--sm) {
      margin-top: 0;
    } */

.cbdpedia__text p {
  /* margin: 0 0 8px; */
  margin: 0;
  /* @media (--xxlg) {
        margin-bottom: 0;
      } */
}

/* display: flex;
    flex-direction: column;
    gap: 15px; */

.cbdpedia__text ul,
.cbdpedia__text ol {
  margin: 0;
  /* margin: 0 0 8px; */
  padding: 0 0 0 10px;
  list-style-type: none;
}

/* @media (--xxlg) {
        margin-bottom: 0;
      } */

.cbdpedia__text ul li:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  background-color: var(--white);
  margin-right: 6px;
  margin-bottom: 3px;
}

.cbdpedia__text ol {
  counter-reset: numbers;
}

.cbdpedia__text ol li:before {
  content: counter(numbers) ".";
  counter-increment: numbers;
  font-size: 20px;
  font-weight: bold;
  margin-right: 4px;
}

.cbdpedia__swiper-nav.swiper-nav {
  /* bottom: 185px; */
  /* bottom: 126px; */
  /* bottom: 134px; */
  bottom: 104px;
  left: 60px;
  flex-direction: row;
  width: 182px;
  height: 80px;
}

/* @media (--xxlg) {
    bottom: 104px;
  } */

/* @media (--md) {
    display: none;
  } */

.cbdpedia__swiper-nav.swiper-nav .slider-button-prev::before,
.cbdpedia__swiper-nav.swiper-nav .slider-button-prev::after {
  transform: rotate(90deg);
  top: 0;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-prev::before {
  left: -2px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-prev::after {
  left: 7px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-prev:hover::before {
  left: -11px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-prev:hover::after {
  left: -2px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-next::before,
.cbdpedia__swiper-nav.swiper-nav .slider-button-next::after {
  transform: rotate(-90deg);
  top: 0;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-next::before {
  left: 2px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-next::after {
  left: -7px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-next:hover::before {
  left: 11px;
}

.cbdpedia__swiper-nav.swiper-nav .slider-button-next:hover::after {
  left: 2px;
}

/* padding-left: calc((100% - 2000px) / 2 + 60px); */

/* margin-top: -80px; */

.cbdpedia-news__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
}

.cbdpedia-news__bg img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cbdpedia-news__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 60px; */
  grid-gap: 36px;
  gap: 36px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  /* padding: 168px 130px 80px 0; */
  padding: 15px 130px 32px 0;
}

.cbdpedia-news__container > div {
  /* width: calc(50% - 60px / 2); */
  width: calc(50% - 36px / 2);
}

.cbdpedia-news__text {
  margin: 32px 0 72px;
  line-height: 1.5;
}

.cbdpedia-news__img img {
  margin-left: auto;
  margin-right: auto;
}

.cbdpedia-news .section-title {
  margin-bottom: 32px;
}

.certificate-hero.hero {
  padding-bottom: 45px;
}

.certificate-hero.hero .hero__text {
  margin-bottom: 0;
}

.certificate-hero.hero .btn-brown {
  margin-top: 36px;
}

.certificate-item {
  position: relative;
  padding: 48px 12px;
}

.certificate-item__head {
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 32px;
}

.certificate-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.certificate-item__img {
  width: 128px;
  height: 128px;
  background: #F4F4F4;
  background: var(--bg-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-item__img img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.certificate-item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 16px 0;
  gap: 16px 0;
  padding-top: 12px;
}

.certificate-item__name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.certificate-item__tag {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #CBBD9A;
  color: var(--brown);
  text-decoration: none;
}

.certificate-item__tag:hover {
  text-decoration: underline;
}

.certificate-item__body-title {
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-transform: uppercase;
}

.certificate-ingredients {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 0 40px;
  line-height: 1.5;
}

.certificate-ingredients__item {
  font-weight: 300;
  margin-bottom: 16px;
}

.certificate-ingredients__item:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}

.certificate-ingredients__item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 3/4;
}

.certificate-ingredients__item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 1/2;
}

.certificate-ingredients__item:nth-child(5) {
  grid-column: 2/3;
  grid-row: 2/3;
}

.certificate-ingredients__item:nth-child(6) {
  grid-column: 2/3;
  grid-row: 3/4;
}

.certificate-analysis {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.certificate-analysis__item {
  margin-bottom: 16px;
}

.certificate-analysis__link {
  color: #506655;
  color: var(--green);
  display: flex;
  align-items: center;
}

.certificate-analysis__link:hover .certificate-analysis__text::before {
  transform: scale(0,1);
}

.certificate-analysis__link:hover .certificate-analysis__text::after {
  transform: scale(1,1);
}

.certificate-analysis__link svg {
  margin-top: -2px;
  margin-left: 8px;
}

.certificate-analysis__text {
  position: relative;
}

.certificate-analysis__text::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: right center;
  transition: .35s ease;
}

.certificate-analysis__text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: left center;
  transform: scale(0,1);
  transition: .35s ease .35s;
}

.certificate-catalog {
  background: #ffffff;
  background: var(--white);
  overflow: hidden;
}

.certificate-catalog .pagination__list {
  justify-content: center;
}

.certificate-list__wrapper.wrapper {
  padding-bottom: 26px;
  position: relative;
}

.certificate-list__wrapper.wrapper:before {
  content: '';
  display: block;
  width: 200%;
  height: 1px;
  background: #E0E0E0;
  background: var(--border-color);
  position: absolute;
  left: -50%;
  top: 0;
}

.certificate-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  grid-gap: 0 48px;
  position: relative;
}

.checkout-group {
  padding-left: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  /* .form__row {
		@media (--ssm) {
			flex-direction: column;
			gap: 24px;
		}
	}
	.form__column {
		@media (--ssm) {
			width: 100%;
			gap: 8px;
		}
	} */
}

.checkout-group p {
  margin: 0;
}

.checkout-group a {
  font-weight: normal;
  text-decoration: underline;
}

.checkout-group a:hover {
  text-decoration: none;
}

.checkout-group .custom-radio {
  width: 80%;
  margin-bottom: 24px;
}

.checkout-group .custom-radio__text {
  margin-left: 34px;
}

.checkout-group .custom-radio__details {
  font-size: 14px;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
  margin-left: 34px;
  margin-top: 8px;
}

.checkout-group .custom-radio__text-img {
  display: inline-block;
  margin-right: 4px;
}

.checkout-group__title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #506655;
  color: var(--green);
  line-height: 1.5;
  margin-top: 44px;
  margin-bottom: 24px;
}

.checking-guest .checkout-group__title {
  margin-bottom: 8px;
}

.shipping-info__form {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
  width: 82.5%;
}

.shipping-info__form .custom-field input:not(input[type="submit"]) {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-color: transparent;
}

.shipping-info__form .custom-field input:not(input[type="submit"]):focus {
  border-bottom-color: #506655;
  border-bottom-color: var(--green);
}

.shipping-info__form .custom-field input:not(input[type="submit"]):disabled {
  background: #eee;
}

.shipping-info__form .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(../img/svg/arr-brown.svg);
  right: 16px;
}

.shipping-info__form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  right: 19px;
}

.shipping-info__form .select2-container .select2-selection--single,
.shipping-info__form .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.shipping-info__form .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.shipping-info__form .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.shipping-info__form .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-radius: 2px;
}

.shipping-info__form .select2-container--open .select2-dropdown--below {
  border-radius: 0 0 2px 2px;
}

.shipping-info__form .select2-container--open .select2-dropdown--above {
  border-radius: 2px 2px 0 0;
}

.custom-field__group .custom-field.custom-field--state {
  width: 57%;
}

.custom-field__group .custom-field.custom-field--postcode {
  width: 43%;
}

.checkout-personal__email-info {
  position: absolute;
  top: 34px;
  left: 100%;
  min-width: 250px;
  margin-left: 18px;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.6;
}

.checkout-personal__email-info:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/info.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}

.checkout-personal__email-info.hidden {
  display: none !important;
}

.checkout-main {
  width: 91%;
}

.checkout-main__row {
  padding: 52px 0;
}

.checkout-main__row:not(:last-child) {
  border-bottom: 1px solid #E8E8E8;
}

.checkout-main__row:not(:last-child) .checkout-main__title {
  width: 34%;
}

/* .checkout-main__count, .checkout-main__edit {
		display: none;
	} */

.checkout-shipping .checkout-main__body {
  display: none;
}

/* .checkout-main__body {
		display: none;
	} */

.checkout-personal .checkout-main__count,
.checkout-personal .checkout-main__edit {
  display: none;
}

.checkout-main__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-main__title {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  min-width: 260px;
}

.checkout-main__count {
  flex-grow: 1;
  margin-right: 20px;
}

.checkout-main__edit-btn {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
  line-height: 1.5;
}

.checkout-main__edit-btn svg {
  height: 24px;
}

.checkout-main__btns {
  padding-top: 28px;
}

.checkout-main__btns .btn-green {
  max-width: 100%;
}

.checkout-main__btns .checkout-main__user-btn .animate-hover,
.checkout-main__btns .checkout-main__user-btn .animate-hover__span {
  pointer-events: none;
}

.checkout-main__btns .checkout-main__user-message {
  color: #EB5757;
  color: var(--red);
  margin: 10px 0 0;
}

.checkout-main__btns .custom-field__error {
  display: block;
}

.checkout__send-btn.checkout__send-btn--disabled {
  cursor: default;
  background: #84968D;
  color: rgba(255, 255, 255, 0.4);
}

.checkout__send-btn.checkout__send-btn--disabled:hover .animate-hover__span {
  top: -100%;
}

.checkout__send-btn.checkout__send-btn--disabled:hover .animate-hover__span:first-child {
  opacity: 0;
}

.checkout__send-btn.checkout__send-btn--disabled:hover .animate-hover__span:last-child {
  opacity: 1;
}

.form-group.custom-field--error input:not(input[type="submit"]),
.form-group.custom-field--error textarea {
  border-bottom-color: #EB5757;
  border-bottom-color: var(--red);
}

.form-group.custom-field--error .select2-container--default .select2-selection--single {
  border-bottom: 2px solid #EB5757;
  border-bottom: 2px solid var(--red);
}

.form-group .select2-container--default.select2-container--open .select2-selection--single,
.form-group .select2-container--default.select2-container--focus .select2-selection--single {
  border: none;
}

/* .payment-system-logo {
	margin-top: 40px;
	&.desk {
		@media (--ssm) {
			display: none;
		}
	}
	&.mob {
		display: none;
		@media (--ssm) {
			display: block;
		}
	}
} */

.checkout-form__content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
}

.checkout-form__content .checkout-page__wrapper,
.checkout-form__content .checkout-main__wrapper {
  width: 100%;
  max-width: calc(2000px - 484px);
}

.checkout-form__content .checkout-page__wrapper {
  margin-top: 96px;
}

.checkout-form__content .breadcrumbs {
  margin-bottom: 0;
}

.checkout-form__content .order-summary {
  grid-column: 2/3;
  grid-row: 1/3;
}

.contact-us-page {
  margin: 96px 0 64px;
}

.contact-us__wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.contact-us__left {
  padding: 5.5vw 7.7vw;
  font-weight: 300;
}

.contact-us__right {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 388px;
  overflow: hidden;
  /* background: var(--dark-green-gradient); */
  color: #ffffff;
  color: var(--primary-color);
  padding: calc(40px + 5.5vw) 50px 0 50px;
  margin: -40px 88px 72px 0;
  display: flex;
  flex-direction: column;
  grid-gap: 64px;
  gap: 64px;
}

.contact-us__right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 220%;
  height: 100%;
  background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
  background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
  background-blend-mode: darken;
}

.contact-us__right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.contact-us__text {
  padding: 32px 0;
  line-height: 1.5;
}

.contact-us p {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}

.contact-us .address-block__container {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}

.contact-us .block__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-us__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-gap: 24px;
  gap: 24px;
}

.contact-us__form-top .form__column {
  width: 50%;
}

.contact-us__form textarea {
  height: 185px;
}

.contact-us__form [type="submit"] {
  min-width: 280px;
  margin: 16px 0 64px;
}

.contact-us .contact-us__right .social {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contact-us .contact-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.contact-us .contact-bg img {
  -o-object-fit: contain;
  object-fit: contain;
}

.copy {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
}

.copy__icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.copy__tooltip {
  position: absolute;
  right: -75px;
  padding: 10px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transition: 1s;
  z-index: -1;
}

.copy__tooltip::before {
  position: absolute;
  left: -5px;
  top: 15px;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  transform: rotate(45deg);
}

.copy__tooltip.show {
  opacity: 1;
  z-index: 1;
}

.counter {
  display: flex;
  align-items: center;
}

.counter__btn {
  width: 48px;
  height: 40px;
  position: relative;
  border: none;
  background-color: #ffffff;
  background-color: var(--primary-color);
  cursor: pointer;
}

.counter__btn--plus {
  border-radius: 0 60px 60px 0;
}

.counter__btn--plus::before,
.counter__btn--plus::after {
  width: 16px;
  border-radius: 2px;
  content: '';
  height: 2px;
  background-color: #506655;
  background-color: var(--green);
  position: absolute;
  /* top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); */
  top: 19px;
  left: 15px;
}

.counter__btn--plus::after {
  /* top: 47%;
        left: 34%; */
  transform: rotate(90deg);
}

.counter__btn--minus {
  border-radius: 60px 0 0 60px;
}

.counter__btn--minus::before {
  width: 16px;
  border-radius: 2px;
  content: '';
  height: 2px;
  background-color: #506655;
  background-color: var(--green);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.counter__input {
  width: 80px;
  height: 40px;
  border: none;
  outline: unset;
  text-align: center;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.create-account__check-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 48px;
  gap: 48px;
}

.create-account__check-email .btn-green {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.crew-popup .popup__wrapper {
  max-width: 872px;
  max-height: 456px;
  overflow: hidden;
}

.crew-popup .popup__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80%, at 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
  background: linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
  background-blend-mode: darken;
}

.crew-popup .popup__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.crew-popup .popup__bg-pattern {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 475px;
  height: 455px;
  background-repeat: no-repeat;
  background-size: contain;
}

.crew-popup .popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 648px;
  margin: 0 auto;
  padding: 30px 28px;
}

.crew-popup .crew-popup__title {
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 64px;
}

.crew-popup .crew-popup__title p {
  margin: 0;
}

.crew-popup .crew-popup__btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crew-popup .crew-popup__close {
  margin: 0 12px 24px;
  width: 279px;
}

.crew {
  padding: 56px 0 64px;
}

.crew .section-title {
  margin-bottom: 56px;
}

.crew-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  margin-bottom: 64px;
}

.crew-list__item {
  padding-top: 83.02%;
  overflow: hidden;
  position: relative;
}

.crew-list__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(25, 27, 28, 0) 0%, #191B1C 100%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  position: absolute;
  left: 0;
  top: 68.18%;
  z-index: 1;
}

.crew-list__photo {
  width: 100%;
  height: 100%;
}

.crew-list__photo img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.crew-list__text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  color: var(--white);
}

.crew-list__name {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}

.crew-list__position {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

.crew-jobs {
  text-align: center;
}

/* .crew-jobs__link {
	font-size: 20px;
	font-weight: bold;
	color: var(--green);
	line-height: 1;
	text-decoration: underline;
	transition: .3s ease;
	&:hover {
		color: var(--brown);
	}
} */

.custom-checkbox {
  position: relative;
}

.custom-checkbox__label {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  flex-wrap: wrap;
}

.custom-checkbox__input {
  opacity: 0;
  position: absolute;
}

.custom-checkbox__input:checked ~ .custom-checkbox__indicator::before {
  content: '';
}

.custom-checkbox__indicator {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #C5C5C5;
  background-color: #ffffff;
  background-color: var(--primary-color);
  cursor: pointer;
}

.custom-checkbox__indicator::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 10px;
  border-bottom: 2px solid #CBBD9A;
  border-bottom: 2px solid var(--brown);
  border-left: 2px solid #CBBD9A;
  border-left: 2px solid var(--brown);
  transform: rotate(-45deg);
}

.custom-checkbox.custom-checkbox--error .custom-checkbox__indicator {
  border-color: #EB5757;
  border-color: var(--red);
}

.custom-checkbox--link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0 8px;
  align-items: center;
}

.custom-checkbox--link .custom-checkbox__text a {
  text-decoration: underline;
}

.custom-checkbox--link .custom-checkbox__text a:hover {
  text-decoration: none;
}

.custom-field {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  position: relative;
}

.custom-field .password-input__wrap {
  position: relative;
}

.custom-field .password-input__wrap input {
  width: 100%;
}

.custom-field .password__icon {
  position: absolute;
  top: 9px;
  right: 15px;
  width: 30px;
  height: 31px;
  cursor: pointer;
}

.custom-field__label {
  margin-bottom: 16px;
  color: #5B5B5B;
  color: var(--grey);
}

.custom-field__input {
  height: 48px;
  width: 100%;
  padding: 15px;
  border: 1px solid #D3D3D3;
  border-radius: 2px;
  font-weight: 300;
  outline: none;
  box-shadow: none;
}

.custom-field__input:focus {
  outline: none;
  box-shadow: none;
}

.custom-field__input.focus-visible {
  /* border-color: var(--grey); */
  border-bottom: 2px solid #506655;
  border-bottom: 2px solid var(--green);
  outline: none;
}

.custom-field__input:focus-visible {
  /* border-color: var(--grey); */
  border-bottom: 2px solid #506655;
  border-bottom: 2px solid var(--green);
  outline: none;
}

.custom-field__input[type="password"] {
  padding-right: 50px;
}

.custom-field__submit--disable {
  pointer-events: none;
}

.custom-field__submit--disable button {
  background-color: #84968D;
  color: #b6bbb9;
}

.custom-field__error {
  color: #EB5757;
  color: var(--red);
  margin-top: 5px;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  line-height: 1.2;
  transition: .5s;
}

/* .custom-field__label{
    color: var(--red);
  } */

.custom-field--error .custom-field__input {
  border-bottom: 2px solid #EB5757;
  border-bottom: 2px solid var(--red);
}

.custom-field--error .custom-field__error {
  max-height: 15px;
  margin-bottom: 10px;
}

.custom-field--password.custom-field--error .custom-field__error {
  max-height: 0;
  margin-bottom: 0;
}

.custom-field--password.custom-field--error .custom-field__error.custom-field__error--show {
  max-height: 15px;
  margin-bottom: 10px;
}

.custom-field__group {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
}

.custom-field__group > .custom-field {
  width: calc(50% - 16px / 2);
}

.custom-field__info {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 300;
  color: #78857B;
  color: var(--green-2);
}

.custom-field__input::-webkit-input-placeholder {
  opacity: 0.5;
}

.custom-field__input::-moz-placeholder {
  opacity: 0.5;
}

.custom-field__input:-moz-placeholder {
  opacity: 0.5;
}

.custom-field__input:-ms-input-placeholder {
  opacity: 0.5;
}

.iti__selected-flag .iti__flag {
  background-image: url("/img/flags/flags.png");
  transform: scale(1.25);
  width: 20px;
  height: 12px;
}

.iti__selected-flag .iti__selected-dial-code {
  color: #BDBDBD;
  font-size: 16px;
}

.iti--separate-dial-code .iti__selected-flag {
  display: grid;
  grid-template-columns: 25px 15px 32px;
  padding-left: 18px;
  padding-top: 2px;
  padding-right: 15px;
}

.iti--separate-dial-code .iti__selected-flag .iti__flag {
  grid-column: 1/2;
  grid-row: 1;
}

.iti--separate-dial-code .iti__selected-flag .iti__arrow {
  grid-column: 2/3;
  grid-row: 1;
  margin-left: 3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 3px solid #5B5B5B;
}

.iti--separate-dial-code .iti__selected-flag .iti__arrow.iti__arrow--up {
  border-top: 0;
  border-bottom: 3px solid #5B5B5B;
}

.iti--separate-dial-code .iti__selected-flag .iti__selected-dial-code {
  grid-column: 3/4;
  grid-row: 1;
  margin-top: -2px;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--separate-dial-code .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti-mobile .iti--container {
  top: 80px;
}

.iti__hide {
  display: none;
}

pre {
  margin: 0 !important;
  display: inline-block;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  background: none;
}

.custom-input__wrapper {
  position: relative;
  height: 48px;
}

.custom-input__wrapper input {
  width: 100%;
  height: 48px;
  padding: 12px 24px;
  border-radius: 60px;
  border: none;
  /* outline: unset; */
  outline: none;
  box-shadow: none;
}

.custom-input__wrapper input:focus {
  outline: none;
  box-shadow: none;
}

.custom-input__wrapper .alert {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-input__wrapper .alert.active {
  display: block;
}

.custom-input__wrapper .alert.error {
  cursor: pointer;
}

.custom-input__alert-text-error {
  max-height: 0;
  height: 100%;
  overflow: hidden;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.3;
  color: #EB5757;
  color: var(--red);
  transition: .5s;
}

.custom-input.error .custom-input__alert-text-error {
  max-height: 50px;
  margin-top: 10px;
}

.custom-radio__label {
  cursor: pointer;
}

.custom-radio__label:hover .custom-radio__text:before {
  border-color: #CBBD9A;
  border-color: var(--brown);
}

.custom-radio__input {
  display: none;
}

.custom-radio__input:checked ~ .custom-radio__text:after {
  opacity: 1;
}

.custom-radio__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
  position: relative;
}

.custom-radio__text:before,
.custom-radio__text:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.custom-radio__text:before {
  width: 18px;
  height: 18px;
  border: 2px solid #BDBDBD;
  left: -30px;
}

.custom-radio__text:after {
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #DED3B7 0%, #CBBD9A 100%);
  left: -26px;
  opacity: 0;
}

.custom-radio__text-desc {
  font-weight: 300;
  margin-right: 20px;
}

.custom-radio__text-price {
  font-size: 20px;
  font-weight: bold;
  color: #CBBD9A;
  color: var(--brown);
}

.custom-range__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-range__input {
  width: 130px;
  height: 48px;
  border: 1px solid #C5C5C5;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 10px 16px;
  outline: none;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
}

.custom-range__slider {
  width: 100%;
  height: 24px;
  margin-top: 10px;
  margin-bottom: 19px;
  position: relative;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.range-slider__track {
  width: 100%;
  height: 6px;
  /* background-color: var(--bg-light); */
  border-radius: 20px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 6px;
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 6px;
}

input[type=range]::-ms-track {
  appearance: none;
  height: 6px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background-color: #CBBD9A;
  background-color: var(--brown);
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
  margin-top: -9px;
}

input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  background-color: #CBBD9A;
  background-color: var(--brown);
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
}

input[type=range]::-ms-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: #CBBD9A;
  background-color: var(--brown);
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
}



.custom-select {
  width: 100%;
  outline: none;
  box-shadow: none;
}

.custom-select:focus {
  outline: none;
  box-shadow: none;
}

.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 48px;
  border-radius: 40px;
  border: none;
  background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #5B5B5B;
  color: var(--grey);
  line-height: 48px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 26px;
  padding-right: 70px;
}

.select2-results__option {
  padding: 5px 0 3px 24px;
  line-height: 1.5;
  color: #5B5B5B;
  color: var(--grey);
}

.select2-results__option.select2-results__option--selected {
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.select2-container--default .select2-results>.select2-results__options {
  scrollbar-color: #CBBD9A #F4F4F4;
  scrollbar-width: thin;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #F4F4F4;
  border: 0px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #CBBD9A;
}

.select2-dropdown {
  overflow: hidden;
}

.select2-container--open .select2-dropdown--below {
  border: none;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.16);
  margin-top: 3px;
}

.select2-container--open .select2-dropdown--above {
  border: none;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px -4px 14px rgba(0, 0, 0, 0.16);
  margin-bottom: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 40px;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-radius: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 24px;
  height: 11px;
  background-image: url(../img/svg/arr-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 20px;
  right: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
  top: 18px;
  right: 39px;
}

.default-page {
  margin: 96px 0 64px;
}

.earn-for-friends {
  padding: 64px calc((100% - 2000px)/2 + 60px) 64px 0;
}

.earn-for-friends__wrapper {
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.earn-for-friends__row {
  display: flex;
  flex-wrap: wrap;
}

.earn-for-friends__image {
  width: 44%;
  max-width: 600px;
  display: flex;
  overflow: hidden;
}

.earn-for-friends__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.earn-for-friends__column {
  width: calc(100% - 44%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 112px 60px 64px;
}

.earn-for-friends__column h3 {
  margin: 0 0 24px;
}

.earn-for-friends__column .earn-for-friends__text {
  margin-bottom: 48px;
  margin-top: 0;
  font-weight: 300;
  line-height: 1.5;
}

.earning-easy {
  padding: 64px 0 64px calc((100% - 2000px)/2 + 60px);
}

.earning-easy__wrapper {
  display: flex;
  background-color: #ffffff;
  background-color: var(--primary-color);
  min-height: 656px;
  padding: 64px 19.39% 72px 8.48%;
}

.earning-easy__wrapper .section-title {
  margin-bottom: 54px;
}

.error-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(97.05deg, #202F27 23.03%, #233029 54.45%, #1D2C23 84.07%);
  position: relative;
  z-index: 1;
}

.error-block__img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.error-block__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top right;
  object-position: top right;
}

.error-block__text {
  padding-left: calc((100% - 2000px)/2 + 84px);
  box-sizing: border-box;
  color: #fff;
}

.error-block__title {
  font-size: 50px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 28px;
}

.error-block__title .split-parent,
.error-block__title .split-child {
  display: inline-block;
}

.error-block .text {
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 46px;
  max-width: 361px;
}

.faqs-hero.hero .hero__title {
  margin-top: 70px;
}

.faqs-section {
  padding: 64px 0;
}

.faqs-section .categories-nav {
  width: 15%;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 64px;
  flex-shrink: 0;
  padding-bottom: 80px;
}

.faqs-section .categories-nav__list {
  grid-gap: 12px;
  gap: 12px;
}

.faqs-section .categories-nav__item:before {
  height: 64px;
}

.faqs-section .categories-nav__item .categories-nav__link {
  height: 64px;
  display: flex;
  align-items: center;
}

.faqs-section__wrapper {
  display: flex;
  justify-content: space-between;
  grid-gap: 0 31px;
  gap: 0 31px;
}

.faqs-list {
  width: 100%;
  background: #ffffff;
  background: var(--primary-color);
  padding: 56px 88px 72px;
  /* .questions-block__list {
		padding: 0;
	} */
}

.favorites-list {
  width: 100%;
  overflow: hidden;
}

.favorites-list .product-list {
  /*grid: none;
    display: flex;
    flex-wrap: wrap;*/
  background: #ffffff;
  background: var(--white);
  margin-bottom: 16px;
  transition: .5s;
}

.favorites-list .product-list:before,
.favorites-list .product-list:after {
  display: none;
}

.favorites-list .product-item {
  max-height: 700px;
  max-width: 600px;
  /*width: calc(100% / 4);*/
  transform: scale(1);
  transition: .5s;
}

/*@media (--xxlg) {
      width: calc(100% / 3);
    }
    @media (--xlg) {
      width: calc(100% / 3);
    }
		@media (--el) {
			padding: 8px 8px 48px;
      width: calc(100% / 3);
		}*/

.favorites-list .product-item:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #E0E0E0;
  background: var(--border-color);
  position: absolute;
  top: 0;
  left: 100%;
}

.favorites-list .product-item--removed {
  max-height: 0;
  max-width: 0;
  min-width: 0;
  transform: scale(0);
  padding: 0;
  margin: 0;
}

.favorites-list .product-item__wishlist {
  top: -375px;
}

.favorites-list .product-item__top {
  margin-top: 40px;
}

.follow-us {
  padding: 56px 0;
}

.follow-us__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 32px;
  gap: 32px;
  margin-bottom: 48px;
}

.follow-us__head .social {
  grid-gap: 24px;
  gap: 24px;
}

.follow-us__wrapper {
  width: 100%;
  padding-left: calc((100% - 2000px) / 2 + 60px);
}

.follow-us__wrapper img {
  min-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.footer-best {
  padding-top: 90px;
  padding-bottom: 49px;
  position: relative;
}

.footer-best:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  background: var(--white);
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-best__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-best__logo {
  margin-bottom: 20px;
}

.footer-best__copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

@-webkit-keyframes underline-anim {
  0% {
    transform: scale(0,1);
    transform-origin: left center;
  }

  40% {
    transform: scale(1,1);
    transform-origin: left center;
  }

  60% {
    transform: scale(1,1);
    transform-origin: right center;
  }

  100% {
    transform: scale(0,1);
    transform-origin: right center;
  }
}

@keyframes underline-anim {
  0% {
    transform: scale(0,1);
    transform-origin: left center;
  }

  40% {
    transform: scale(1,1);
    transform-origin: left center;
  }

  60% {
    transform: scale(1,1);
    transform-origin: right center;
  }

  100% {
    transform: scale(0,1);
    transform-origin: right center;
  }
}

.footer {
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 50px 0 56px;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__row.reserve {
  margin: 72px 0 48px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
}

.footer__row.menu {
  grid-gap: 20px;
  gap: 20px;
}

.footer hr {
  border: unset;
  height: 1px;
  background-color: #E0E0E0;
  background-color: var(--border-color);
  margin: 33px 0 63px;
}

.footer hr.mob {
  display: none;
}

.footer .lang {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.footer .lang ~.lang-popup {
  right: 0;
  top: 60px;
}

.footer .lang img {
  width: 40px;
  height: 40px;
}

.footer .lang > span {
  position: relative;
}

.footer .lang > span.desc {
  display: inline;
  line-height: 1.6;
}

.footer .lang > span.mob {
  display: none;
}

.footer .lang > span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: right center;
  transition: .35s ease;
}

.footer .lang > span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: left center;
  transform: scale(0,1);
  transition: .35s ease .35s;
}

.footer .f-menu {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.footer .f-menu.active ul {
  max-height: 300px;
}

.footer .f-menu.active .f-menu__head::after {
  transform: rotate(135deg);
  top: 30%;
}

.footer .f-menu__head {
  position: relative;
  color: #506655;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 24px;
}

.footer .f-menu ul {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__contacts .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 8px;
  gap: 8px;
}

.footer__contacts .social {
  padding: 24px 0 0 0;
}

/* gap: 24px; */

.footer__contacts .social__item {
  width: 48px;
  height: 48px;
}

.footer .documents {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 24px;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .documents__item a {
  position: relative;
}

.footer .documents__item a:hover::before {
  -webkit-animation: underline-anim .7s ease;
  animation: underline-anim .7s ease;
}

.footer .documents__item a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
  transform-origin: left center;
  transform: scale(0,1);
  transition: .3s ease;
}

.footer .bottom-info {
  padding: 25px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}

.footer .bottom-info__text {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
  width: 100%;
  max-width: 1020px;
  margin: auto;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}

.footer .bottom-info__text p {
  margin: 0;
}

.general-text h1,
.general-text h2,
.general-text h3,
.general-text h4,
.general-text h5,
.general-text h6 {
  font-weight: bold;
  color: #506655;
  color: var(--green);
  margin: 40px 0 32px;
}

.general-text h1 {
  font-size: 26px;
}

.general-text h2 {
  font-size: 24px;
}

.general-text h3 {
  font-size: 22px;
}

.general-text h4 {
  font-size: 20px;
}

.general-text h5 {
  font-size: 18px;
}

.general-text h6 {
  font-size: 16px;
}

.general-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 24px;
}

.general-text strong {
  font-weight: bold;
}

.general-text a {
  text-decoration: underline;
}

.general-text a:hover {
  text-decoration: none;
}

.general-text ul,
.general-text ol {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding: 0;
  list-style-type: none;
}

.general-text ul li,
.general-text ol li {
  margin-bottom: 24px;
}

.general-text ul li:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #363636;
  background-color: var(--text-color);
  margin-right: 6px;
  margin-bottom: 3px;
}

.general-text ol {
  counter-reset: numbers;
}

.general-text ol li:before {
  content: counter(numbers) ".";
  counter-increment: numbers;
  font-size: 20px;
  font-weight: bold;
  margin-right: 4px;
}

.general-text img {
  margin-top: 48px;
  margin-bottom: 48px;
}

.general-text blockquote {
  border: 1px solid #CBBD9A;
  border: 1px solid var(--brown);
  padding: 25px 38px 25px 30px;
  margin: 48px 0;
}

.general-text blockquote p {
  margin-bottom: 16px;
}

.general-text blockquote cite {
  font-weight: normal;
  font-style: normal;
}

.general-text blockquote cite:before {
  content: '—';
  margin-right: 12px;
}

.general-text table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #E0E0E0;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid #E0E0E0;
  border-left: 1px solid var(--border-color);
  margin: 48px 0;
}

.general-text table td,
.general-text table th {
  text-align: center;
  padding: 15px 10px;
  border-bottom: 1px solid #E0E0E0;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid #E0E0E0;
  border-right: 1px solid var(--border-color);
}

.general-text table th {
  font-size: 16px;
  font-weight: 300;
}

.general-text table td {
  font-size: 14px;
  font-weight: 300;
}

.guarantee {
  /* padding: 64px 0 0 calc((100% - 2000px)/2 + 60px); */
  padding: 64px 0 0 0;
}

.guarantee__swiper {
  position: relative;
  height: 100%;
}

.guarantee .wrapper {
  padding: 0;
  height: 100%;
}

.guarantee__wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  background-color: var(--primary-color);
  /* min-height: 656px; */
  /* padding: 40px 0 112px; */
  /* padding: 40px 0 80px; */
  /* height: 592px; */
  padding: 60px 0;
}

/* @media (--lg) {
      padding: 56px 0;
    } */

/* @media (--sm){
      padding: 20px 0 80px;
    } */

.guarantee__slide {
  display: flex;
  /* align-items: flex-start; */
  justify-content: space-between;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.guarantee__img {
  width: 46.74%;
  /* width: calc(50% - 80px); */
  /* max-width: 645px; */
  /* height: 471px; */
  padding-top: 34.1%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.guarantee__img img {
  /* object-fit: contain; */
  width: 100%;
  /* max-width: 645px; */
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.guarantee__text {
  /* width: 50%; */
  width: 49.4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-top: 9vw; */
  padding-bottom: 40px;
  padding-left: 13px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
}

/* @media (--md) {
      margin-bottom: 40px;
    } */

/* @media (--lg) {
      margin-top: 0;
      padding-bottom: 0;
    } */

.guarantee__text p {
  margin-top: 0;
  margin-bottom: 1em;
}

.guarantee__text .section-title,
.guarantee__text .guarantee__title {
  max-width: 580px;
  /* padding-bottom: 32px; */
  /* line-height: 1.24; */
  padding-bottom: 26px;
  margin-bottom: 0;
  /* strong:before {
        bottom: 9px;
      } */
}

.guarantee__desc {
  max-width: 580px;
  padding-right: 40px;
}

.guarantee .guarantee__title {
  font-size: 32px;
  padding-right: 40px;
}

.guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* left: calc(50% + 5px); */
  /* bottom: 5.5vw; */
  left: 50.6%;
  //bottom: 90px;
}

.guarantee.guarantee--black {
  padding-left: 0;
  padding-top: 0;
  margin-left: 0;
  color: #ffffff;
  color: var(--white);
}

.guarantee.guarantee--black .guarantee__wrapper {
  background-color: #363636;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.guarantee.guarantee--black .guarantee__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.guarantee.guarantee--black .guarantee__slide {
  background-color: #363636;
  background-color: var(--black);
}

.guarantee.guarantee--black .guarantee__slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.guarantee.guarantee--black .guarantee__title {
  color: #ffffff;
  color: var(--white);
}

.guarantee.guarantee--black .wrapper {
  padding-left: 0;
}

.guarantee.guarantee--black .guarantee__img {
  width: 44.8%;
  padding-top: 32.7%;
}

.guarantee.guarantee--black .guarantee__text {
  width: 48.85%;
}

.guarantee.guarantee--black .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 51.15%;
}

.home-page .guarantee__wrapper {
  padding-top: 56px;
  padding-bottom: 129px;
}

/* .guarantee {
    @media (--sm) {
      padding-top: 56px;
    }
  } */

.home-page .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  /* bottom: 67px; */
  bottom: 4.65vw;
}

.header-best {
  padding-top: 36px;
  padding-bottom: 41px;
}

.header-best__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-best .btn-brown {
  min-width: 165px;
  width: auto;
  /* min-width: 188px; */
  /* width: 188px; */
  height: 62px;
  /* padding: 0 15px; */
  padding: 0 44px;
  font-size: 16px;
  text-transform: uppercase;
}

.header-cabinet {
  width: 100%;
  background: linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  background: var(--green-gradient);
  color: #ffffff;
  color: var(--white);
  padding: 8px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1100;
  height: 56px;
  transition: .5s;
}

.header-cabinet.header--hide {
  top: -100%;
}

.header-cabinet__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-cabinet__logo {
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 105px;
}

.header-cabinet__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.header-cabinet__info {
  display: flex;
  grid-gap: 40px;
  gap: 40px;
}

.header-cabinet__page-title {
  color: #CBBD9A;
  color: var(--brown);
}

.header-cabinet__details {
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.header-cabinet__details:hover {
  text-decoration: unset;
}

.cart .header-cabinet__page-title--checkout {
  display: none;
}

.checkout .header-cabinet__page-title--cart {
  display: none;
}

.checkout .header-cabinet__details {
  display: none;
}

.main-header {
  width: 100%;
  background: linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  background: var(--green-gradient);
  color: #ffffff;
  color: var(--white);
  padding: 8px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1100;
  height: 56px;
  transition: .5s;
}

.main-header.header--hide {
  top: -100%;
}

.main-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.main-header__logo {
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 105px;
}

.main-header__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.main-header .menu {
  display: flex;
  align-items: center;
}

.main-header .menu__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
  gap: 6px;
  width: 33px;
  height: 30px;
  padding-right: 20px;
  cursor: pointer;
  box-sizing: content-box;
}

.main-header .menu__btn span {
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  background-color: var(--white);
  transition: .5s;
}

.main-header .menu__list {
  display: flex;
  align-items: center;
  grid-gap: 48px;
  gap: 48px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-header .menu__list .icon__bag-counter {
  color: #ffffff;
  color: var(--white);
}

.main-header .menu__item {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.main-header .menu__item.active {
  font-weight: 700;
  line-height: 1.2;
}

.main-header .menu__item.on-page {
  position: relative;
}

.main-header .menu__item.on-page::after {
  content: '';
  bottom: -16px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.main-header .menu__container {
  position: fixed;
  z-index: 1;
  top: 0;
  left: -105%;
  height: 100%;
  padding: 7.7vw 0 0 63px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
  transition: .5s;
}

.main-header .menu__container-top {
  width: 100%;
  overflow-y: scroll;
  overflow-x: visible;
  padding-bottom: 5vw;
}

.main-header .menu__container-top::-webkit-scrollbar {
  width: 3px;
}

.main-header .menu__container-top::-webkit-scrollbar-thumb {
  background-color: #506655;
  background-color: var(--green);
}

.main-header .menu__container-icons.icon {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  background: #ffffff;
  background: var(--primary-color);
  padding: 8px;
}

.main-header .menu__container-icons.icon .lang-wrap .lang {
  display: flex;
  align-items: center;
}

.main-header .menu__container-icons.icon .lang-wrap .lang--open ~ .lang-popup {
  top: 58px;
  /* left: 0; */
  right: 0;
}

.main-header .menu__container-icons.icon > div {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
}

.main-header .menu__container-icons.icon > div > span:not(.lang) {
  position: relative;
}

.main-header .menu__container-icons.icon > div > span:not(.lang)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: #363636;
  background-color: var(--text-color);
}

.main-header .menu__container-icons.icon svg path {
  fill: #363636;
  fill: var(--text-color);
}

.main-header .menu--active .menu__btn-wrap {
  overflow: visible;
}

.main-header .menu--active .menu__btn-wrap .animate-hover__span {
  top: 0;
  opacity: 1;
}

.main-header .menu--active .menu__btn-wrap .animate-hover__span:last-child {
  display: none;
}

.main-header .menu--active .menu__btn {
  grid-gap: 0;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
}

/*top: 20px;
          left: 7px;
          @media (--xlg){
            left: 23px;
          }
          @media (--lg){
            top: 4px;
          }
          @media (--sm){
            left: 10px;
          }*/

.main-header .menu--active .menu__btn span {
  height: 2px;
  width: 22px;
  background-color: #363636;
  background-color: var(--black);
}

.main-header .menu--active .menu__btn span:first-child {
  position: relative;
  top: 2px;
  transform: rotate(45deg);
}

.main-header .menu--active .menu__btn span:last-child {
  transform: rotate(135deg);
}

.main-header .menu--active .menu__container {
  left: 0;
}

.main-header .menu--active .menu__container-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.main-header .menu--active .menu__container-bg::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  background-color: var(--primary-color);
  opacity: .5;
}

.main-header .icon {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
}

.main-header .icon > div {
  cursor: pointer;
}

.main-header .icon__glob {
  position: relative;
  margin-right: 16px;
}

.main-header .icon__glob .desc {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.main-header .icon__glob ~ .lang-popup {
  top: 45px;
  /* left: 6px; */
  left: -16px;
  color: #363636;
  color: var(--text-color);
}

.main-header .icon__favorites {
  /* @media (--lg) {
        display: none;
      } */
}

.main-header .icon__bag {
  display: flex;
  align-items: center;
}

.main-header .icon__bag-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  //background-color: rgba(255,255,255,0.2);
  font-size: 12px;
  line-height: 1;
}

.main-header .menu__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 33.33vw;
  color: #363636;
  color: var(--black);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

.main-header .menu__container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-header .menu__container ul .sub-menu {
  opacity: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
  position: absolute;
  top: 2.5%;
  left: 0;
  height: 0;
  width: 0;
  padding: 0;
  /* background-color: var(--black); */
  color: #ffffff;
  color: var(--white);
  transition: opacity 0s;
  overflow: hidden;
}

.main-header .menu__container ul .sub-menu__head {
  color: #CBBD9A;
  color: var(--brown);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.main-header .menu__container ul .sub-menu__item {
  font-weight: 300;
  line-height: 1.45;
  text-transform: none;
}

.main-header .menu__container ul li {
  cursor: pointer;
}

.main-header .menu__container ul li:hover,
.main-header .menu__container ul li.active {
  color: #506655;
  color: var(--green);
  font-weight: 700;
}

.main-header .menu__container ul li:hover .sub-menu,
.main-header .menu__container ul li.active .sub-menu {
  visibility: visible;
  opacity: 1;
}

.main-header .menu__container ul li .sub-menu {
  visibility: hidden;
  width: 34.5vw;
  max-width: 500px;
  height: 95%;
  left: 33vw;
  padding: 5vw 5vw 0 5vw;
  opacity: 0;
  overflow-y: scroll;
}

.main-header .menu__container ul li .sub-menu::-webkit-scrollbar {
  width: 3px;
}

.main-header .menu__container ul li .sub-menu::-webkit-scrollbar-thumb {
  background-color: #506655;
  background-color: var(--green);
}

.main-header .menu__container ul li .sub-menu li:hover,
.main-header .menu__container ul li .sub-menu li.active {
  color: unset;
}

.main-header .menu__container ul li .animate-hover {
  width: 100%;
}

.main-header .menu__container .categories {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.main-header .menu__container .categories__item {
  display: block;
  padding: 15px 0;
  text-transform: uppercase;
  line-height: 1.1;
}

.main-header .menu__container .pages {
  margin-top: 4vw;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
}

.main-header .menu__container .pages__item {
  line-height: 1.45;
  color: #5B5B5B;
  color: var(--grey);
}

.main-header .social {
  padding-top: 120px;
  padding-left: 3px;
}

.hero {
  min-height: 480px;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%); */
  /* background: #40554B; */
  background: rgba(0, 0, 0, 0.16);
  /* background-image: url("../../../img/gradient/bg_gradient.jpg"); */
  padding-top: 96px;
  padding-bottom: 55px;
  color: #ffffff;
  color: var(--white);
  position: relative;
  z-index: 5;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.16), transparent), linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at bottom center, #40544A, transparent), #C4C4C4; */
  /* background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655; */
  background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80%, at 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
  background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
  background-blend-mode: darken;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.hero__title {
  font-size: 140px;
  font-weight: 800;
  line-height: 1.24;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.hero__title .text-clip {
  display: block;
  background: -webkit-linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-wrap: break-word;
}

.hero__title .split-parent {
  display: inline-block;
}

.hero__title .split-child {
  display: block;
}

.hero__text {
  width: 50%;
  margin-left: 50%;
  margin-top: -35px;
  margin-bottom: 32px;
  padding-left: 125px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hero__text p {
  margin: 0;
}

.hero__text-inner {
  max-width: 505px;
}

/* @media (--lg) { */

.hero__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 614px;
  height: 583px;
  background-repeat: no-repeat;
  background-size: contain;
}

.animate-hover {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
}

.animate-hover__span {
  position: relative;
  left: 0;
  top: -100%;
  display: block;
  height: 100%;
  transition: .5s;
}

.animate-hover--fast .animate-hover__span {
  transition: .3s;
}

.animate-hover:hover .animate-hover__span {
  top: 0;
}

.animate-hover:hover {
  text-decoration: none;
}

.animate-hover .animate-hover__span:last-child,
.animate-hover:hover .animate-hover__span:first-child {
  opacity: 1;
}

.animate-hover .animate-hover__span:first-child,
.animate-hover:hover .animate-hover__span:last-child {
  opacity: 0;
}

.btn-green:hover .animate-hover__span,
.btn-brown:hover .animate-hover__span,
.account-block__edit:hover .animate-hover__span {
  top: 0;
}

.btn-green .animate-hover__span:last-child,
.btn-green:hover .animate-hover__span:first-child,
.btn-brown .animate-hover__span:last-child,
.btn-brown:hover .animate-hover__span:first-child,
.account-block__edit .animate-hover__span:last-child,
.account-block__edit:hover .animate-hover__span:first-child {
  opacity: 1;
}

.btn-green .animate-hover__span:first-child,
.btn-green:hover .animate-hover__span:last-child,
.btn-brown .animate-hover__span:first-child,
.btn-brown:hover .animate-hover__span:last-child,
.account-block__edit .animate-hover__span:first-child,
.account-block__edit:hover .animate-hover__span:last-child {
  opacity: 0;
}

.btn-green > span,
.btn-brown > span,
.account-block__edit > span {
  top: 2px;
}

.checkout-main__edit-btn:hover .animate-hover__span {
  top: 0;
}

.checkout-main__edit-btn .animate-hover__span:last-child,
.checkout-main__edit-btn:hover .animate-hover__span:first-child {
  opacity: 1;
}

.checkout-main__edit-btn .animate-hover__span:first-child,
.checkout-main__edit-btn:hover .animate-hover__span:last-child {
  opacity: 0;
}

.animate-hover-arrow {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.animate-hover-arrow__span {
  position: relative;
  left: -9%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  transition: left .5s, opacity .3s;
}

.animate-hover-arrow:hover .animate-hover-arrow__span {
  left: 12%;
}

.animate-hover-arrow .animate-hover-arrow__span:last-child,
.animate-hover-arrow:hover .animate-hover-arrow__span:first-child {
  opacity: 1;
}

.animate-hover-arrow .animate-hover-arrow__span:first-child,
.animate-hover-arrow:hover .animate-hover-arrow__span:last-child {
  opacity: 0;
}

.select2-selection.select2-selection--single > .select2-selection__arrow {
  display: none;
}

.select-animate-hover {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.select-animate-hover__span {
  position: relative;
  top: -100%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: .5s;
}

.select-animate-hover__container {
  position: relative;
  display: block;
  width: 25px;
  height: 20px;
  float: right;
  right: 30px;
  top: 40%;
}

.select-animate-hover__container .select2-selection__arrow {
  right: 0!important;
  top: 0!important;
}

.select-animate-hover:hover .select-animate-hover__span {
  top: 0;
}

.select-animate-hover .select-animate-hover__span:last-child,
.select-animate-hover:hover .select-animate-hover__span:first-child {
  opacity: 1;
}

.select-animate-hover .select-animate-hover__span:first-child,
.select-animate-hover:hover .select-animate-hover__span:last-child {
  opacity: 0;
}

.form__row {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
}

.form__column {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form__column--half {
  width: 50%;
}

.form input:not(input[type="submit"]),
.form textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 10px 16px;
  outline: none;
  color: #363636;
  color: var(--black);
  outline: none;
  box-shadow: none;
}

.form input:not(input[type="submit"]):focus,
.form textarea:focus {
  border-bottom-color: #363636;
  border-bottom-color: var(--black);
  outline: none;
  box-shadow: none;
}

.form input {
  height: 48px;
}

.form textarea::-moz-placeholder {
  opacity: .5;
}

.form textarea::placeholder {
  opacity: .5;
}

.lab-results {
  padding-top: 64px;
  padding-bottom: 64px;
}

.lab-results .section-title {
  margin-bottom: 32px;
}

.lab-results .btn-green {
  margin-top: 16px;
}

.lab-results__wrapper {
  background: #ffffff;
  background: var(--white);
  margin-left: calc((100% - 2000px)/2 + 60px);
  padding-right: calc((100% - 2000px) / 2 + 60px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lab-results__bg-pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 464px;
  height: 305px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.lab-results__content {
  padding: 56px 26% 112px 8.48%;
}

.lab-results__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.lab-results__text p {
  margin-top: 0;
  margin-bottom: 1em;
}

#lang-popup-container {
  display: none;
}

.lang-wrap {
  position: relative;
}

.lang-wrap .lang--open ~ .lang-popup {
  display: block;
}

.lang-popup {
  position: absolute;
  width: 297px;
  min-height: 240px;
  top: 0;
  right: 0;
  display: none;
  padding: 24px 16px 26px;
  z-index: 999;
  background-color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
  border-radius: 0 0 10px 10px;
}

.lang-popup__title {
  color: #506655;
  color: var(--green);
  font-weight: 700;
  line-height: 1.5;
}

.lang-popup__country {
  margin: 16px 0;
}

.lang-popup__country .select2-container .select2-selection--single .select2-selection__rendered {
  border: 2px solid #CBBD9A;
  border: 2px solid var(--brown);
  border-radius: 60px;
  height: 48px;
}

.lang-popup__country .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(../img/svg/arr-brown.svg);
}

.lang-popup__lang {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
  /* padding: 16px 0 40px; */
  padding: 16px 0;
}

.lang-popup__btn {
  margin-top: 24px;
}

.lang-popup__btn button {
  max-width: 100%;
  width: 100%;
}

.lang-popup .custom-radio__text {
  margin-left: 0;
  padding-left: 30px;
}

.lang-popup .custom-radio__text:before {
  left: 0;
}

.lang-popup .custom-radio__text:after {
  left: 4px;
}

.loading {
  position: relative;
}

.loading::before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 100;
  position: absolute;
  background-image: url(/img/animated-spinner.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}

.loading > * {
  opacity: 0.5;
  pointer-events: none;
}

.login {
  padding-top: 96px;
  padding-bottom: 64px;
}

.login__container {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.login__container .section-title,
.login__container .text {
  text-align: center;
}

.login__container .section-title {
  margin-bottom: 24px;
}

.login__container .text {
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.login__form {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  max-width: 610px;
  margin: 32px auto 0;
}

.login__form .custom-field__submit {
  margin-top: 8px;
  text-align: center;
}

.login__form .custom-field__submit button {
  min-width: 280px;
}

.login-links .back-link {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
}

.login-links .back-link a {
  margin-left: 5px;
  font-weight: 700;
  color: #506655;
  color: var(--green);
  text-decoration: underline;
}

.login-links .back-link a:hover {
  text-decoration: none;
}

.login-links p:nth-child(2) {
  margin: 24px 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.82;
  font-weight: 700;
}

.login-with {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 610px;
  margin: auto;
}

.login-with__btn {
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 3px;
  width: calc(50% - 16px / 2);
  min-width: 250px;
  padding: 5px;
  color: #ffffff;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.125;
  cursor: pointer;
}

.login-with__btn span {
  width: 100%;
  text-align: center;
}

.login-with__btn.fb {
  background-color: #4267B2;
}

.login-with__btn.fb img {
  padding-left: 11px;
}

.login-with__btn.google {
  background-color: #4285F4;
}

.login__patterns {
  position: absolute;
  width: 100%;
  height: 100%;
}

.login__patterns img {
  position: absolute;
  bottom: 0;
}

.login__patterns .login__pattern-left {
  left: 0;
  width: 40vw;
  min-width: 350px;
}

.login__patterns .login__pattern-right {
  right: 0;
  width: 27vw;
  min-width: 260px;
}

.login__content {
  position: relative;
  padding: 80px 80px 168px;
}

.login__content .custom-field__label {
  margin-bottom: 8px;
}

.password-reset-terms {
  display: flex;
  align-items: center;
  grid-gap: 0 20px;
  gap: 0 20px;
  flex-wrap: wrap;
}

.password-reset-term {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-weight: 300;
}

.password-reset-term::before {
  content: '';
  width: 9px;
  height: 13px;
  display: block;
  position: absolute;
  left: 4px;
  top: -1px;
  border-bottom: 2px solid #78857B;
  border-bottom: 2px solid var(--green-2);
  border-right: 2px solid #78857B;
  border-right: 2px solid var(--green-2);
  transform: rotate(45deg);
}

.password-reset-term--active {
  color: #0F8340;
  color: var(--green-3);
}

.password-reset-term--active::before {
  border-color: #0F8340;
  border-color: var(--green-3);
}

.password-reset-term--error {
  color: #EB5757;
  color: var(--red);
}

.password-reset-term--error::before {
  border-color: #EB5757;
  border-color: var(--red);
}

.accessory-link {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 400;
  color: #78857B;
  color: var(--green-2);
}

.accessory-link.link {
  text-decoration: underline;
}

.accessory-link.link:hover {
  text-decoration: none;
}

.login-page .section-title {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.3;
}

.login-page-wrapper .login__content,
.password-reset .login__content {
  padding: 65px 80px 160px;
}

.login-page-wrapper .login__form,
.password-reset .login__form {
  grid-gap: 16px;
  gap: 16px;
  margin: 24px auto 0;
}

.loyalty-program {
  position: relative;
  padding: 64px 0;
  color: #ffffff;
  color: var(--primary-color);
}

.loyalty-program__bg {
  background-color: #363636;
  background-color: var(--black);
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 64px 0;
}

.loyalty-program__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.loyalty-program__row {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.loyalty-program .section-title {
  position: absolute;
  top: 32px;
}

.loyalty-program__column {
  padding: 0 8.48% 100px 8.48%;
}

.loyalty-program__image {
  position: relative;
  margin-top: -75px;
  width: 45vw;
  padding: 0;
}

.loyalty-program__image-wrap {
  width: 45vw;
  height: 46vw;
  max-height: 662px;
  display: flex;
  position: relative;
  bottom: calc(-64px - 13px);
  z-index: 2;
  overflow: hidden;
}

.loyalty-program__image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.loyalty-program__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  gap: 15px;
  padding-top: 150px;
}

.loyalty-program__text p {
  margin: 0;
}

.how-it-work {
  margin-top: -80px;
  padding-left: calc((100% - 2000px) / 2 + 60px);
}

.how-it-work__bg {
  position: absolute;
  bottom: -32%;
  right: -24%;
  width: 49%;
}

.how-it-work__bg img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.how-it-work__mark {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background-color: #CBBD9A;
  background-color: var(--brown);
  color: #ffffff;
  color: var(--white);
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 30px;
  margin-left: 8%;
  text-align: center;
  transform: translateY(-50%);
}

.how-it-work__desc {
  position: relative;
  width: 100%;
}

.how-it-work__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 60px;
  gap: 60px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 140px 138px 90px 0;
  overflow: hidden;
}

.how-it-work__text {
  margin: 32px 0 72px;
  line-height: 1.5;
}

.how-it-work__table {
  display: flex;
  flex-direction: column;
  padding-left: 8.48%;
}

.how-it-work__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #E0E0E0;
}

.how-it-work__column {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 24px 50px 24px 0;
  width: calc((100% - 140px) / 3);
  min-width: 286px;
  font-size: 14px;
  font-weight: 300;
}

.how-it-work__column:first-child {
  min-width: 140px;
  width: 140px;
  font-size: 16px;
  font-weight: 400;
}

.how-it-work__column p {
  margin: 0;
  text-align: left;
}

.how-it-work__column p span {
  font-weight: 400;
}

.loyalty-progress {
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.loyalty-progress__wrapper {
  position: relative;
  padding: 64px 98px 84px 86px;
  margin-bottom: 40px;
  margin-top: 32px;
}

.loyalty-progress__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.loyalty-progress__head {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.loyalty-progress__lines {
  display: flex;
  flex-direction: row;
  grid-gap: 16px;
  gap: 16px;
}

.loyalty-progress__line {
  width: calc(100% / 3 - 16px / 2);
}

.loyalty-progress__bar {
  position: relative;
  padding: 19px 0;
}

.loyalty-progress__bar .bar-line {
  height: 15px;
  width: 100%;
  display: block;
  background: rgba(222, 211, 183, 0.4);
  background: rgba(var(--brown_rgb-2), 0.4);
  border-radius: 15px;
}

.loyalty-progress__bar .bar-line--current {
  position: absolute;
  top: 50%;
  display: block;
  height: 15px;
  width: calc(100% - 32px);
  transform: translateY(-50%);
}

.loyalty-progress__bar .bar-line--current > span {
  position: absolute;
  z-index: 0;
  height: 100%;
  max-width: 100%;
  display: block;
  background: rgb(222, 211, 183);
  background: rgb(var(--brown_rgb-2));
  border-radius: 15px;
}

.loyalty-progress__bar .bar-star {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  background-color: var(--primary-color);
  transform: translateY(-50%);
}

.loyalty-progress__bar .bar-star svg {
  position: relative;
  z-index: 1;
  fill: rgb(222, 211, 183);
  fill: rgb(var(--brown_rgb-2));
}

.loyalty-progress__bar .bar-star::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(222, 211, 183, 0.4);
  background-color: rgba(var(--brown_rgb-2), 0.4);
  border-radius: 50%;
}

.loyalty-progress__bar--fill .bar-star::after {
  background-color: rgb(222, 211, 183);
  background-color: rgb(var(--brown_rgb-2));
}

.loyalty-progress__bar--fill .bar-star svg {
  fill: #ffffff;
  fill: var(--primary-color);
}

.loyalty-progress__bar--fill .bar-line--current {
  width: calc(100% - 32px + 2px);
}

.loyalty-progress__bar--fill .bar-line--current span {
  width: 100%;
  border-radius: 15px 0 0 15px;
}

.loyalty-progress__percent {
  font-weight: 700;
  text-align: center;
  color: #CBBD9A;
  color: var(--brown);
}

.loyalty-progress__point {
  position: relative;
  bottom: -72px;
  text-align: right;
  color: #CBBD9A;
  color: var(--brown);
}

.loyalty-progress__current {
  position: absolute;
  top: -40px;
  display: none;
}

.loyalty-progress__current span {
  position: absolute;
  display: block;
  padding: 4px 10px;
  font-size: 12px;
  color: #8B8167;
  background-color: #F2EDE2;
  border-radius: 50px;
  z-index: 1;
  transform: translateX(calc(-50% - 5px));
}

.loyalty-progress__current span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #F2EDE2;
  transform: translate(-50%, 15%) rotate(45deg);
  z-index: -1;
}

.cart-total__loyalty .loyalty-progress__top {
  margin-bottom: 40px;
}

.cart-total__loyalty .loyalty-progress__line {
  width: 100%;
}

.cart-total__loyalty .loyalty-progress__bar {
  padding: 10px;
}

.cart-total__loyalty .loyalty-progress__points,
.cart-total__loyalty .loyalty-progress__percents {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 64px);
  margin: auto;
}

.cart-total__loyalty .loyalty-progress__percents {
  padding-left: 10px;
}

.cart-total__loyalty .loyalty-progress__point {
  bottom: -10px;
}

.cart-total__loyalty .loyalty-progress__current {
  top: -47px;
}

.cart-total__loyalty .loyalty-progress__current span {
  background-color: rgb(222, 211, 183);
  background-color: rgb(var(--brown_rgb-2));
}

.cart-total__loyalty .loyalty-progress__current span::before {
  background-color: rgb(222, 211, 183);
  background-color: rgb(var(--brown_rgb-2));
}

.main-categories {
  padding-top: 48px;
  padding-bottom: 64px;
}

.main-categories__slider .categories-slider__item {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.16), transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80%, at 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.16), transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(80% 180% ellipse at 80% 0%, #40544A, transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
  background-blend-mode: darken;
}

.main-categories__slider .categories-slider__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../../../img/gradient/nois.png");
}

.main-hero {
  position: relative;
}

.main-hero .swiper-pagination {
  left: calc((100% - 2000px)/2 + 60px);
  bottom: 48px;
  width: auto;
}

.main-hero__wrapper {
  position: relative;
}

.main-hero__swiper {
  width: 100%;
  height: 100vh;
  background-color: #506655;
  background-color: var(--green);
  overflow: hidden;
  position: relative;
}

.main-hero__swiper .swiper-slide {
  /* background-color: var(--green); */
  overflow: hidden;
}

/* &::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 621px;
      background: linear-gradient(180deg, rgba(10, 15, 10, 0) 0%, #0A0F0A 100%);
      backdrop-filter: blur(1px);
      top: 72.88%;
      left: 0;
      z-index: 1;
    } */

.main-hero__swiper .swiper-slide:not(.swiper-slide-active) .main-hero__content {
  opacity: 0;
  transition: opacity .3s ease-out;
}

.main-hero__swiper .main-hero__img-wrap {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-hero__swiper .main-hero__img-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 621px;
  background: linear-gradient(180deg, rgba(10, 15, 10, 0) 0%, #0A0F0A 100%);
  /* backdrop-filter: blur(1px); */
  top: 72.88%;
  left: 0;
  z-index: 2;
}

.main-hero__swiper .main-hero__img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
}

.main-hero__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 2000px;
  height: 100%;
  margin: 0 auto;
  padding: 56px 60px;
  box-sizing: border-box;
}

.main-hero__title {
  width: 60%;
  font-size: 100px;
  font-weight: bold;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 24px;
}

.main-hero__title h1,
.main-hero__title h2,
.main-hero__title h3,
.main-hero__title h4,
.main-hero__title h5,
.main-hero__title h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.main-hero__desc,
.main-hero__content-wrapper p {
  max-width: 477px;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 25px;
}

.main-hero__link {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  color: #506655;
  color: var(--green);
}

.main-hero__link:hover {
  text-decoration: none;
}

.main-hero__content--white {
  color: #ffffff;
  color: var(--white);
}

.main-hero__content--white .main-hero__title,
.main-hero__content--white .main-hero__desc,
.main-hero__content--white .main-hero__link {
  color: #ffffff;
  color: var(--white);
}

.main-hero__content--white .main-hero__title {
  text-shadow: 0px 2px 18px rgba(0, 0, 0, 0.18);
}

.main-hero__swiper-nav {
  bottom: 48px;
  right: calc((100% - 2000px)/2 + 60px);
}

.more-information {
  /* padding-top: 64px; */
  padding-top: 105px;
  padding-bottom: 56px;
  overflow: hidden;
}

.more-information .section-title {
  /* margin-bottom: 64px; */
  margin-bottom: 48px;
}

.more-information__wrapper {
  position: relative;
  z-index: 2;
}

.more-information__slider {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.more-information__slider .categories-slider__wrapper {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  margin-top: 0;
  margin-bottom: -40px;
}

.more-information__slider .categories-slider__item {
  height: 560px;
  /* height: auto;
		padding-top: 64.281%; */
  /* background: var(--white); */
  background: transparent;
}

/* &::after {
      content: '';
      position: absolute;
      width: 100%;
      background: linear-gradient(180deg, rgba(25, 27, 28, 0) 0%, #191B1C 100%);
      backdrop-filter: blur(1px);
      top: 46.78%;
      bottom: 0;
      left: 0;
      z-index: 2;
      @media (--sm) {
      	z-index: -1;
      }
      @media (--xs) {
      	top: auto;
      	height: 422px;
      }
    } */

.more-information__slider .categories-slider__img-wrap {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.more-information__slider .categories-slider__img-wrap::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(25, 27, 28, 0) 0%, #191B1C 100%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  top: 46.78%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* @media (--sm) {
      	z-index: -1;
      } */

.more-information__slider .categories-slider__img-wrap:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #fff;
}

.more-information__slider .categories-slider__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  z-index: 1;
}

.more-information__slider .categories-slider__item-text {
  width: 100%;
  max-width: 100%;
  left: 0;
  bottom: 0;
  top: auto;
  padding: 56px 150px 56px 56px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.more-information__slider .categories-slider__item-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.more-information__slider .categories-slider__item-title {
  font-size: 32px;
  font-weight: bold;
  color: inherit;
  line-height: 1.25;
  text-decoration: none;
  margin-bottom: 32px;
}

.more-information__slider .categories-slider__item-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px 48px;
  gap: 10px 48px;
}

.more-information__slider .categories-slider__item-info span {
  display: block;
  position: relative;
}

.more-information__slider .categories-slider__item-info span:not(:last-child):before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #CBBD9A;
  background: var(--brown);
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.more-information__slider .categories-slider__item-title {
  display: block;
}

.more-information__slider .categories-nav {
  padding-top: 8px;
  padding-right: 0;
  padding-left: 10.3%;
}

.more-information__slider .categories-nav__item:before {
  right: auto;
  left: -26.5%;
  /* left: -83px; */
  background: linear-gradient(269.64deg, #FFFFFF 0.25%, rgba(255, 255, 255, 0) 72.16%);
  transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
  box-shadow: none;
  filter: drop-shadow(3px 3px 30px #EFEFEF);
  /* @media (--sm) {
			right: 0;
			left: 0;
			top: 50%;
			transform: translate(0,-50%);
			background: linear-gradient(270.11deg, #FFFFFF 0.13%, #F4F4F4 53.77%);
			box-shadow: none;
		} */
}

.my-orders {
  width: 100%;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.03922);
  border-radius: 2px;
}

.order-list {
  display: flex;
  flex-direction: column-reverse;
  transition: .5s;
}

.order-item {
  max-height: 80px;
  position: relative;
  transform: scale(1);
  transition: .5s;
  margin-bottom: 8px;
}

.order-item:first-child {
  margin: 0;
}

.order-item--removed {
  max-height: 0;
  transform: scale(0);
  padding: 0;
  margin: 0;
}

.order-item__wrap {
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 24px 72px;
  overflow: hidden;
}

.order-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.order-item__head-right,
.order-item__head-left {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.order-item__head-right {
  width: 100%;
  max-width: 350px;
  min-width: 250px;
  justify-content: space-between;
  grid-gap: 0 8px;
  gap: 0 8px;
}

.arrow__icon {
  width: 16px;
  height: 14px;
}

.order-info {
  padding: 0 16px 0 24px;
  font-weight: 700;
}

.order-item__total {
  color: #5B5B5B;
  color: var(--grey);
}

.order-item__cost {
  padding-left: 8px;
  color: #506655;
  color: var(--green);
  font-weight: 700;
}

.order-item__state {
  line-height: 1;
  padding: 8px 16px;
  background-color: rgba(80, 102, 85, 0.08);
  border-radius: 50px;
  color: #506655;
  color: var(--green);
}

.order-item__body {
  max-height: 0;
  overflow: hidden;
  transition: .5s;
}

.order-item__body-top {
  border-bottom: 1px solid #E0E0E0;
}

.order-info__wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.order-item--open {
  max-height: 100%;
}

.order-item--open .order-info__wrap svg {
  transform: rotate(180deg);
}

.order-item__details-wrap {
  padding: 40px 16px 25px;
  /* display: flex; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 85px;
  gap: 85px;
}

.order-item__details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  grid-gap: 16px;
  gap: 16px;
  /* min-width: 230px; */
  line-height: 1.4;
}

.order-item__value {
  color: #5B5B5B;
  color: var(--grey);
}

.order-item-time {
  margin-left: 10px;
}

.order-item__products {
  padding: 40px 0 56px;
  border-bottom: 1px solid #E0E0E0;
}

.my-orders .product,
.subscription .product {
  padding: 0 16px;
}

.my-orders .product .product__top,
.subscription .product .product__top {
  color: #5B5B5B;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 32px;
}

.my-orders .product .product__top,
.my-orders .product .product__item,
.subscription .product .product__top,
.subscription .product .product__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* @media (--xxlg) {
        flex-wrap: wrap;
      } */

.my-orders .product .product__list,
.subscription .product .product__list {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}

.my-orders .product .product__right,
.subscription .product .product__right {
  width: 330px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  flex-shrink: 0;
}

.my-orders .product .product__right strong,
.subscription .product .product__right strong {
  color: #506655;
  color: var(--green);
}

.my-orders .product .product__name,
.subscription .product .product__name {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
  margin-right: 16px;
  max-width: 345px;
}

.my-orders .product .product__name span,
.subscription .product .product__name span {
  /* width: 245px; */
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.my-orders .product .product__img,
.subscription .product .product__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.my-orders .product .product__img img,
.subscription .product .product__img img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}

.order-item__body-bottom {
  display: flex;
  grid-gap: 50px;
  gap: 50px;
  padding: 32px 16px 8px;
}

.order-item__action {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #506655;
  color: var(--green);
  cursor: pointer;
  grid-gap: 4px;
  gap: 4px;
}

.order-item__action svg {
  width: 24px;
  height: 24px;
}

.order-item__pay {
  padding: 24px 0 17px;
  display: flex;
  justify-content: flex-end;
}

.order-item__pay .order-item__pay-btn {
  font-size: 16px;
  min-width: 200px;
  height: 40px;
}

.notification {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  position: fixed;
  top: 10px;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 0 29px rgba(75, 73, 76, 0.44);
  -webkit-backdrop-filter: blur(55px);
  backdrop-filter: blur(55px);
  visibility: hidden;
  transition: 0.3s;
  color: #363636;
  color: var(--text-color);
}

.notification a {
  text-decoration: underline;
  color: #ffffff;
  color: var(--white);
}

.notification__wrapper {
  padding: 25px 50px 25px 25px;
  display: flex;
  align-items: center;
  height: 100%;
}

.notification__icon {
  margin-right: 15px;
  width: 30px;
  height: 30px;
  display: none;
}

.notification__desc {
  margin: 0;
  font-size: 12px;
}

.notification--show {
  visibility: visible;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.notification--hide {
  -webkit-animation: fadeOut 0.5s ease-in-out forwards;
  animation: fadeOut 0.5s ease-in-out forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  50% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  50% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut-desktop {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  50% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut-desktop {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  50% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes fadeIn-desktop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn-desktop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-summary .cart-total__price {
  flex-grow: 0;
  padding-top: 48px;
}

.order-summary__top {
  padding: 96px 40px 40px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(224, 224, 224, 0.68);
}

.order-summary__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.cart-total__checkbox {
  flex-grow: 1;
  /* padding: 48px 40px 32px 40px; */
  padding: 48px 40px 0 40px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  border-top: 1px solid rgba(224, 224, 224, 0.68);
  font-weight: 300;
}

.cart-total__checkbox .custom-checkbox {
  margin-bottom: 32px;
}

.payment-system-logo {
  margin-top: 40px;
}

.payment-system-logo.desk {
  display: none;
}

.pagination {
  padding: 40px 0;
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  grid-gap: 4px 30px;
  gap: 4px 30px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pagination__link {
  padding: 3px;
  font-size: 22px;
  color: #5B5B5B;
  color: var(--grey);
  transition: color .3s ease;
}

.pagination__link:hover {
  color: #CBBD9A;
  color: var(--brown);
}

.pagination__item.active .pagination__link {
  text-decoration: underline;
  color: #CBBD9A;
  color: var(--brown);
}

.pagination__arr a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(var(--black_rgb), 0.3);
}

/*.pagination__arr.prev a {
	padding-right: 2px;
}

.pagination__arr.next a {
	padding-left: 2px;
}*/

.partners {
  padding: 64px 0;
  background: #ffffff;
  background: var(--white);
}

.partners__swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners__swiper .swiper-pagination {
  bottom: 8px;
}

.partners__logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.payment-edit {
  width: 100%;
}

.payment-edit .account-edit__top {
  margin-bottom: 0;
}

.payment-edit .payment-item__head {
  padding-bottom: 24px;
}

.payment-edit .profile-edit__cancel {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #506655;
  color: var(--green);
}

.credit-cart-form {
  background: linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  background: var(--green-gradient);
  border-radius: 6px;
  color: #ffffff;
  color: var(--white);
  max-width: 490px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
}

.credit-cart-form input {
  width: 100%;
  background: transparent;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  color: var(--white);
  font-weight: 300;
}

.credit-cart-form input::-moz-placeholder {
  color: #ffffff;
  color: var(--white);
}

.credit-cart-form input::placeholder {
  color: #ffffff;
  color: var(--white);
}

.credit-cart-form input.focus-visible {
  outline: none;
}

.credit-cart-form input:focus-visible {
  outline: none;
}

.credit-cart-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.credit-cart-form__bottom input {
  width: 100px;
  text-align: center;
}

.points {
  width: 100%;
}

.points__wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}

.points__container {
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 64px 88px;
}

.point-item,
.points__head,
.point-item__date-wrap,
.point-item__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.points__head {
  margin-bottom: 24px;
}

.points__head-left {
  font-size: 22px;
  font-weight: 700;
}

.points__head-right {
  font-weight: 700;
  font-size: 16px;
  color: #CBBD9A;
  color: var(--brown);
}

.point-item {
  height: 72px;
  border-bottom: 1px solid #E0E0E0;
}

.point-item__value {
  font-size: 20px;
  font-weight: 700;
}

.point-item__right {
  width: 100%;
  max-width: 270px;
}

.point-item__date-wrap {
  color: #5B5B5B;
  color: var(--grey);
  grid-gap: 8px;
  gap: 8px;
  font-weight: 300;
}

.points__pagination.pagination {
  padding: 48px 0 0;
}

.referral-head {
  margin-bottom: 48px;
}

.points-block__title {
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
}

.points-block__sub-title {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
}

.points-block {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}

.points-blocks {
  display: flex;
  flex-direction: column;
  grid-gap: 32px;
  gap: 32px;
  margin-bottom: 16px;
}

.points-block__link {
  padding: 17px 16px 12px;
  height: 48px;
  width: 100%;
  max-width: 610px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  border-radius: 2px;
  line-height: 1;
}

.points-block__link .copy {
  height: 100%;
}

.points-block__link .copy__icon {
  position: absolute;
  right: 0;
}

.points-block__link .copy__tooltip {
  right: -100px;
}

.points-block__link .order__value {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 90%;
  height: 100%;
}

.points__text {
  width: 100%;
  max-width: 885px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.points__text strong {
  display: block;
  margin-top: 24px;
  font-weight: 700;
}

.points__details {
  margin-top: 48px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 815px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 65px 0;
  gap: 65px 0;
  text-align: center;
}

.points__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
  font-size: 16px;
}

.points__detail-title {
  color: #8B8167;
  text-transform: uppercase;
}

.points__detail-subtitle {
  font-weight: 300;
  margin-top: 8px;
  line-height: 1.5;
}

.popup {
  position: fixed;
  width: 100vw;
  /* height: 100vh; */
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.popup__wrapper {
  position: absolute;
  z-index: 1;
  width: 95%;
  max-width: 975px;
  height: 95%;
  max-height: 672px;
  background-color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
  border-radius: 8px;
  top: -100%;
  opacity: 0;
  transition: .5s;
}

.popup__close {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  right: 24px;
  top: 24px;
  z-index: 3;
  cursor: pointer;
}

.popup__close::before,
.popup__close::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: #363636;
  background-color: var(--black);
}

.popup__close::before {
  transform: rotate(45deg);
}

.popup__close::after {
  transform: rotate(135deg);
}

.popup__content {
  padding: 16px;
  width: 100%;
  height: 100%;
}

.popup--active {
  display: flex;
}

.popup--active .popup__wrapper {
  opacity: 1;
}

.privacy-popup {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  top: auto;
  top: initial;
  left: auto;
  left: initial;
  z-index: 1100;
  width: 545px;
  padding: 32px 24px 40px;
  background: #ffffff;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.225855);
}

.privacy-popup.privacy-popup--active {
  display: block;
}

.privacy-popup__title {
  font-size: 22px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
  margin: 0 0 24px;
}

.privacy-popup__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 32px;
}

.privacy-popup__text a {
  text-decoration: underline;
  font-weight: 400;
}

.privacy-popup__text a:hover {
  text-decoration: none;
}

.privacy-popup__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-popup__btns .btn-green {
  min-width: 248px;
}

.privacy-popup__btns .btn-link {
  font-size: 20px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
  text-decoration: none;
}

.popup__lang {
  position: absolute;
  right: 34px;
  top: 34px;
  z-index: 3;
}

.popup__lang.show .lang-popup__lang {
  display: flex;
}

.popup__lang-button {
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}

.popup__lang .lang-popup__lang {
  display: none;
  position: absolute;
  right: -4px;
  top: 28px;
  z-index: 2;
  min-width: 165px;
  max-height: 260px;
  padding: 34px 16px;
  background: #ffffff;
  background: var(--white);
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.225855);
  overflow: hidden;
  /* button {
  		background: var(--white);
  		border: none;
  		outline: none;
  		padding: 12px 16px;
  		font-size: 14px;
  		font-weight: 300;
  		margin: 0;
  		cursor: pointer;
  	}
  	button[aria-selected="true"] {
  		font-weight: normal;
  	} */
}

.popup__lang .lang-popup__lang .custom-radio__text-desc {
  font-weight: normal;
  margin-right: 0;
}

.product-comments {
  margin-top: 64px;
  margin-bottom: 64px;
}

.product-comments__wrapper {
  background: #ffffff;
  background: var(--white);
}

.product-comments__row {
  padding: 120px 19.39% 90px 8.48%;
}

.product-comments__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-gap: 24px;
  gap: 24px;
}

.product-comments__form-top {
  display: flex;
  grid-gap: 64px;
  gap: 64px;
}

.product-comments__form-top .form__column {
  width: 50%;
}

.product-comments__form textarea {
  height: 185px;
}

.product-comments__form [type="submit"] {
  min-width: 280px;
  margin: 16px 0;
  /* @media (--sm){
      margin: 16px 0 40px;
    } */
}

.product-comments__rating {
  height: 40px;
  display: flex;
  align-items: center;
}

.product-comments__rating .rating__wrapper > label {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.product-comments__rating .rating__icon {
  width: unset;
  height: unset;
}

.product-comments__add-rating {
  margin-bottom: 30px;
}

.product-comments__add-rating .rating__wrapper > label {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.product-comments__add-rating .rating__value {
  font-size: 14px;
  margin-left: 10px;
}

.product-comments__item-rating .rating__wrapper > label {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.product-comments__item-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 10px 40px;
  gap: 10px 40px;
  margin-bottom: 20px;
}

.product-comments__item {
  padding: 32px 0;
  margin-bottom: 20px;
  border-top: 1px solid #E0E0E0;
}

.product-comments__item-name {
  font-weight: bold;
}

.product-comments__item-date {
  font-size: 14px;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
}

.product-comments__list {
  margin-bottom: 90px;
  border-bottom: 1px solid #E0E0E0;
}

.product-comments__item-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.product-comments__verified {
  font-size: 10px;
  color: #CBBD9A;
  color: var(--brown);
}

.product-info-block {
  position: relative;
  z-index: 5;
  padding-bottom: 64px;
}

.product-info-block__wrapper {
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.product-info-block__content {
  padding-top: 48px;
  padding-bottom: 56px;
}

.product-info-block__nav {
  overflow: auto;
  scroll-snap-type: x mandatory;
  margin: 0 0 64px calc(8.48% - 24px);
}

.product-info-block__nav::-webkit-scrollbar {
  height: 3px;
}

.product-info-block__nav::-webkit-scrollbar-thumb {
  background-color: #506655;
  background-color: var(--green);
}

.product-info-block__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.product-info-block__item {
  cursor: pointer;
}

.product-info-block__item:first-child .product-info-block__link {
  padding: 16px 24px!important;
}

.product-info-block__link {
  padding: 16px 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 200px;
  font-weight: 300;
  color: #506655;
  color: var(--green);
  transition: color .3s;
}

.product-info-block__link--current {
  padding: 16px 18px;
  background-color: #506655;
  background-color: var(--green);
  font-weight: 700;
  color: #ffffff;
  color: var(--white);
  pointer-events: none;
  text-align: center;
}

.product-info-block__container {
  padding: 0 19.39% 90px 8.48%;
}

.product-info-block__container-item {
  display: none;
}

.product-info-block__container-item p {
  margin-bottom: 16px;
}

.product-info-block__container-item ul {
  padding-left: 10px;
  margin: 0;
}

.product-info-block__container-item ul li {
  margin: 0;
  padding: 0;
}

.product-info-block__container-item .warning {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  font-weight: 300;
  margin-top: 8px;
}

.product-info-block__container-item .warning img {
  margin: 0;
  display: inline;
}

.product-info-block__container-item.table {
  flex-direction: column;
}

.product-info-block__container-item.table .table__column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  grid-gap: 24px;
  gap: 24px;
}

.product-info-block__container-item.table .table__column:last-child .table__row {
  border: none;
}

.product-info-block__container-item.table .table__row {
  width: calc(50% - 24px / 2);
  padding: 16px 0;
  border-bottom: 1px solid rgba(54, 54, 54, 0.12);
}

.product-info-block__container-item--current {
  display: block;
}

.product-info-block__container-item--current.table {
  display: flex;
}

.product-item {
  position: relative;
}

.product-item__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
  /* box-sizing: border-box; */
  position: relative;
  overflow: hidden;
}

.product-item__top {
  height: 335px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.product-item__img-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-item__img-wrapper:hover .product-item__img {
  opacity: 0;
  visibility: hidden;
}

.product-item__img-wrapper:hover .product-item__img-hover {
  opacity: 1;
  visibility: visible;
}

.product-item__img,
.product-item__img-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center center;
  object-position: center center;
  transition: .3s ease;
}

.product-item__img {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.product-item__img-hover {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.product-item__bottom {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-item__tag {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #CBBD9A;
  color: var(--brown);
  text-decoration: none;
  margin-bottom: 16px;
  margin-right: 45px;
}

.product-item__tag:hover {
  text-decoration: underline;
}

.product-item__wishlist label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-item__wishlist label:hover .wishlist-btn__icon {
  fill: #CBBD9A;
  fill: var(--brown);
}

.wishlist-btn__icon {
  fill: rgba(203, 189, 154, 0.37);
  fill: rgba(var(--brown_rgb), 0.37);
  transition: fill .3s ease;
}

.wishlist-btn__checkbox:checked ~ .wishlist-btn__icon {
  fill: #CBBD9A;
  fill: var(--brown);
}

.product-item__bottom-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 10px;
  gap: 10px;
}

.product-item__title {
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}

.product-item__title a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: all .3s ease;
}

.product-item__bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-item__rating {
  margin-bottom: 18px;
}

.product-item__price {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-item__price-old {
  font-weight: normal;
  color: #5B5B5B;
  color: var(--grey);
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  margin-right: 11px;
}

.product-item__buy {
  padding-bottom: 4px;
}

.buy-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  /* background: var(--brown);
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12); */
  cursor: pointer;
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
  padding: 0;
  line-height: 0;
}

.buy-btn:hover:before {
  transform: scale(1.1);
}

.buy-btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #CBBD9A;
  background: var(--brown);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform-origin: 50% 50%;
  transition: transform .2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform .2s var(--cubic-1-1);
}

.addToCart__btn {
  display: flex;
  width: 100%;
  max-width: 100%;
}

.product-item__subscribe .custom-radio {
  margin-bottom: 24px;
}

.product-item__characteristic {
  padding-bottom: 16px;
}

.product-item__characteristic .custom-select__wrapper {
  margin-bottom: 16px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  grid-gap: 56px 48px;
  position: relative;
}

.product-page-hero {
  position: relative;
  min-height: 100vh;
  /* background-image: url("../../../img/product/product-page-bg.png"); */
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 115px;
}

/* &::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../../img/gradient/nois.png");
  } */

.product-page-hero .hero__bg-pattern {
  margin-top: 96px;
  margin-bottom: 55px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  height: 35vw;
  width: 35vw;
}

.product-hero-title {
  font-size: 38px;
  color: #ffffff;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
  padding-bottom: 16px;
}

.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: 405px 1fr 425px;
}

.product-hero .custom-radio__text:before {
  border-color: #ffffff;
  border-color: var(--white);
}

.product-hero .custom-radio__text-desc {
  font-size: 22px;
}

.product-hero .custom-radio__text-desc-info {
  padding: 8px 0 16px;
  font-size: 14px;
  font-weight: 300;
}

.product-hero .custom-radio__text-desc-more-info {
  font-size: 14px;
  font-weight: 300;
  color: #CBBD9A;
  color: var(--brown);
  text-decoration: underline;
  cursor: pointer;
}

.product-hero .custom-radio__text-desc-more-info:hover {
  text-decoration: unset;
}

.product-hero .custom-radio__details {
  margin-left: 30px;
}

.product-hero .hero__bg {
  overflow: visible;
  top: 70px;
}

.product-hero .advantage__list {
  padding: 0;
  margin: 160px 0 0;
  flex-direction: column;
  grid-gap: 40px;
  gap: 40px;
}

.product-hero .advantage__list--left {
  margin-left: 120px;
}

.product-hero .advantage__list--right {
  margin-right: 120px;
  align-items: flex-end;
}

.product-hero .advantage__item {
  grid-gap: 8px;
}

.product-hero .advantage__item .advantage__img {
  width: 90px;
  height: 90px;
  background-color: #506655;
  background-color: var(--green);
  box-shadow: none;
}

.product-hero .advantage__item .advantage__text {
  color: #ffffff;
  color: var(--white);
}

.product-hero__info {
  position: relative;
  z-index: 2;
  margin-top: calc(13vh - 10px);
}

.product-hero__add {
  position: relative;
  z-index: 2;
  margin-top: 13vh;
  overflow: hidden;
}

.product-hero__add .custom-radio__text-price {
  margin-top: 8px;
}

.product-hero__description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 24px 0 56px;
}

.product-hero__subscribe {
  display: flex;
  flex-direction: column;
  grid-gap: 36px;
  gap: 36px;
  margin-bottom: 90px;
}

.product-hero__add-to-cart {
  display: flex;
}

.product-hero__add-to-cart .counter__btn,
.product-hero__add-to-cart .counter__input {
  height: 48px;
}

.product-hero__add-to-cart .counter__btn::before,
.product-hero__add-to-cart .counter__btn::after {
  width: 18px;
  top: 23px;
  border-radius: 0;
}

.product-hero__add-to-cart .counter__btn--minus {
  width: 65px;
}

.product-hero__add-to-cart .counter__btn--minus::before {
  left: 70%;
}

.product-hero__add-to-cart .counter__btn--plus {
  border-radius: 0;
}

.product-hero__add-to-cart .counter__btn--plus::after {
  left: 32%;
}

.product-hero__add-to-cart .addToCart__btn {
  border-radius: 0 60px 60px 0;
  padding: 0;
  width: 230px;
}

.product-gallery {
  position: absolute;
  height: 134%;
  left: 50%;
  transform: translateX(-50%);
}

.product-gallery__main-img {
  position: -webkit-sticky;
  position: sticky;
  top: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30vw;
  max-width: 430px;
  margin: auto;
  transform: translateY(-50%);
}

.product-gallery__main-img img {
  transition: transform .5s, max-width .5s, width .5s, max-height .5s;
  width: 90%;
  max-height: 680px;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-gallery__main-img--zoom img {
  width: 100%;
  max-height: 715px;
}

.product-gallery__other-imgs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 8px;
  gap: 8px;
}

.product-gallery__other-imgs--desk {
  display: flex;
}

.product-gallery__other-imgs--mob {
  display: none;
}

.product-gallery__other-img {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #536C5D;
  cursor: pointer;
}

.product-gallery__other-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top center;
  object-position: top center;
  /*height: 130%;*/
}

.product-hero__tags a {
  text-transform: capitalize;
  font-weight: 700;
  color: #CBBD9A;
  color: var(--brown);
}

.product-hero__modifications {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 70px;
}

.product-hero__modifications .custom-select__wrapper {
  width: calc(50% - 16px / 2);
}

.product-hero__modifications .custom-select__wrapper .select2-selection--single {
  position: relative;
  background: none;
}

.product-hero__modifications .custom-select__wrapper .select2-selection--single::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-color: var(--white);
  opacity: .2;
  border-radius: 60px;
}

.product-hero__modifications .custom-select__wrapper .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  color: var(--white);
}

.product-hero__modifications .custom-select__wrapper .select2-selection--single .select2-selection__arrow {
  background-image: url(../img/svg/arr-white.svg);
}

.product-gallery__main {
  position: relative;
  height: calc(100% - 86px - 50px);
}

.popup__content.product-gallery {
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-gallery__top {
  height: 100%;
  width: calc(100% - 80px * 2 - 20px);
  max-width: 700px;
}

.product-gallery__slide {
  display: flex;
}

.product-gallery__pagination-btns {
  position: absolute;
  top: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.product-gallery__pagination-btns .product-gallery__pagination {
  position: relative;
  z-index: 2;
}

.product-gallery__slide img {
  margin: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-gallery__pagination-dots.swiper-pagination-bullets {
  display: none;
}

.product-gallery__pagination {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(var(--black_rgb), 0.3);
  transition: all .3s ease;
  cursor: pointer;
  /* &:hover {
    background-color: var(--brown);
    border-color: var(--brown);

    svg path {
      stroke: var(--white);
    }
  } */
}

.product-gallery__pagination svg {
  width: auto;
  height: 22px;
}

.product-gallery__thumbs {
  max-width: calc((56px + 6px) * 5);
  margin: auto;
}

.product-gallery__thumbs .product-gallery__thumb {
  width: 56px!important;
  height: 56px;
  display: flex;
  justify-content: center;
  border: 3px solid transparent;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
}

.product-gallery__thumbs .product-gallery__thumb--active {
  border: 3px solid #CBBD9A;
  border: 3px solid var(--brown);
}

.product-gallery__thumbs .product-gallery__thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  /*width: 100%;*/
}

.product-reviews {
  padding: 56px 0 64px;
}

.product-reviews__wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  margin-top: 45px;
}

.product-reviews__wrapper img {
  height: 178px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.questions-block__wrapper {
  background: #ffffff;
  background: var(--white);
  margin-right: calc((100% - 2000px)/2 + 60px);
  padding-left: calc((100% - 2000px)/2 + 60px);
  position: relative;
  z-index: 1;
}

.questions-block__bg-pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 248px;
  height: 453px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.questions-block__content {
  padding: 120px 19.39% 100px 8.48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 16px;
  gap: 16px;
}

.questions-block__list {
  /* padding-top: 16px; */
  will-change: transform;
  overflow: hidden;
  padding-right: 3px;
  padding-top: 3px;
  /* @media (--xs) {
		padding-top: 24px;
	} */
}

.questions-block__item:not(:last-child) {
  margin-bottom: 8px;
}

.questions-block__text {
  font-size: 16px;
  font-weight: 300;
}

.questions-block__text p {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1.5;
}

.questions-block__btn-title {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

.questions-block__show-all {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.questions-block__show-all.hidden {
  display: none;
}

.questions-block__show-all .btn-link {
  font-size: 20px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
}

.quick-add-popup .popup__title {
  padding: 32px 24px 18px;
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
}

.quick-add-popup .popup__content {
  padding: 0 24px;
  max-height: calc(100% - 77px - 128px);
  overflow: auto;
  scrollbar-color: #CBBD9A transparent;
  scrollbar-width: thin;
}

.quick-add-popup .popup__content::-webkit-scrollbar {
  width: 4px;
}

.quick-add-popup .popup__content::-webkit-scrollbar-track {
  background: transparent;
  border: 0px;
}

.quick-add-popup .popup__content::-webkit-scrollbar-thumb {
  background: #CBBD9A;
}

.quick-add-popup .cart__list {
  margin: 0;
}

.quick-add-popup .cart-product {
  max-width: 100%;
  padding: 40px 12px 40px 0;
  border-bottom: 1px solid #E0E0E0;
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
}

.quick-add-popup .cart-product__img {
  background: #F4F4F4;
  background: var(--bg-light);
}

.quick-add-popup .counter__btn,
.quick-add-popup .counter__input {
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}

.quick-add-popup .btn-link {
  font-size: 20px;
  font-weight: bold;
  color: #506655;
  color: var(--green);
}

.quick-add-popup .popup__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 45px;
  gap: 45px;
  padding: 40px 24px;
}

.quick-add {
  display: grid;
  /* display: none; */
  grid-template-rows: 1fr auto;
  opacity: 0;
  pointer-events: none;
  background: #F4F4F4;
  background: var(--bg-light);
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 88px 32px 40px;
  box-sizing: border-box;
  transform: translateY(-100%);
  transition: opacity .1s ease, transform .3s ease;
}

.quick-add--open {
  /* display: grid; */
  opacity: 1;
  pointer-events: auto;
  transform: none;
  overflow-y: scroll;
}

.quick-add--open::-webkit-scrollbar {
  width: 3px;
}

.quick-add--open::-webkit-scrollbar-thumb {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.quick-add__close {
  position: absolute;
  right: 32px;
  top: 30px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.quick-add__close:before,
.quick-add__close:after {
  content: '';
  display: block;
  width: 90%;
  height: 2px;
  background: #363636;
  background: var(--black);
  position: absolute;
  left: 5%;
  top: calc(50% - 2px/2);
  transition: background .3s ease;
}

.quick-add__close:before {
  transform: rotate(45deg);
}

.quick-add__close:after {
  transform: rotate(-45deg);
}

.quick-add__close:hover:before,
.quick-add__close:hover:after {
  background: #CBBD9A;
  background: var(--brown);
}

.quick-add__img-wrapper {
  display: none;
  height: 144px;
}

.quick-add__img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center center;
  object-position: center center;
}

.quick-add__title {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

.quick-add__title a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}

.quiz-main {
  padding: 0;
  overflow: hidden;
}

.quiz-main .breadcrumbs {
  position: absolute;
  top: 0;
}

.quiz-main__content .section-title {
  font-size: 38px;
  line-height: 1.3;
}

.quiz-main__content .text {
  font-size: 20px;
  line-height: 1.6;
  padding: 40px 0 67px;
}

.quiz-main__row {
  display: flex;
  align-items: stretch;
  grid-gap: 20px;
  gap: 20px;
  max-height: 100vh;
  min-height: 570px;
  height: 100%;
}

.quiz-main__column {
  position: relative;
  width: calc(50% - 10px);
  margin-top: 96px;
  padding-bottom: 55px;
  display: flex;
  align-items: center;
}

.quiz-main-img {
  width: 50vw;
  height: 100%;
}

.quiz-main-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.quiz__progressbar {
  position: relative;
  height: 3px;
  margin: 40px 0 73px;
}

.quiz__progressbar::after {
  content: '';
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 1px;
}

.quiz__progressbar-val {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-weight: 300;
}

.quiz__progressbar-line {
  position: absolute;
  bottom: 2px;
  display: block;
  width: 0;
  height: 3px;
  background-color: #CBBD9A;
  background-color: var(--brown);
  border-radius: 2px;
  transition: .5s;
}

.quiz {
  min-height: 100vh;
  padding-bottom: 90px;
  transition: .5s;
}

.quiz .question {
  max-width: 865px;
  min-height: 500px;
  margin: auto;
  text-align: center;
  transform: scale(1);
  overflow: hidden;
  transition: 0.3s;
}

.quiz .question.question-hide {
  transform: scale(0);
}

.quiz .question__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.quiz .question__variations {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
  padding: 64px 0 80px;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.quiz input[type="radio"]:checked ~ .answer__label {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.quiz .answer__label {
  display: flex;
  align-items: center;
  padding: 16px 72px 16px 42px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  transition: .3s;
}

.quiz .answer__label:hover {
  background-color: #CBBD9A;
  background-color: var(--brown);
  cursor: pointer;
}

.quiz .answer__character {
  font-weight: 700;
  padding-right: 28px;
}

.quiz .quiz__steps {
  display: flex;
  justify-content: space-between;
}

.quiz .quiz__back {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.quiz .quiz__next.quiz__next--disabled {
  cursor: default;
  background: #84968D;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.rating {
  display: flex;
  align-items: center;
}

.rating__value {
  font-size: 16px;
  font-weight: 300;
  margin-left: 6px;
}

.rating__wrapper {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

.rating__wrapper > input {
  display: none;
}

.rating__wrapper > label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  opacity: 0.37;
  transition: .3s;
}

.rating__icon {
  fill: #CBBD9A;
  fill: var(--brown);
}

.rating__wrapper--no-hover {
  pointer-events: none;
}

.rating__wrapper--no-hover > label {
  cursor: default;
}

.rating__wrapper input:checked ~ label,
.rating__wrapper input:checked ~ label ~ label {
  opacity: 1;
}

.rating__wrapper:not(.rating__wrapper--no-hover) > input:not(:checked) ~ label:hover,
.rating__wrapper:not(.rating__wrapper--no-hover) > input:not(:checked) ~ label:hover ~ label {
  opacity: 1;
}

.related-articles {
  padding: 64px 0;
}

.related-articles .section-title {
  margin-bottom: 48px;
}

.related-articles .categories-item {
  overflow: hidden;
}

.related-articles .categories-block {
  padding: 0;
}

.related-articles .categories-block__list {
  margin: 0;
}

.related-products {
  position: relative;
  margin-top: 64px;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.related-products__row {
  display: flex;
}

.related-products__row.related--fixed .related-products__swiper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: var(--primary-color);
  padding-left: 20px;
  padding-right: 20px;
}

.related-products__row.related--fixed .product-item__top,
.related-products__row.related--fixed .product-item__bottom {
  opacity: 0;
  pointer-events: none;
}

.related-products__about {
  width: 33.33%;
  border-right: 1px solid #E0E0E0;
  border-right: 1px solid var(--border-color);
  padding-top: 72px;
  padding-right: 52px;
}

.related-products__about .section-title {
  margin-bottom: 72px;
}

.related-products__swiper {
  width: 66.66%;
  overflow: hidden;
}

.related-products__swiper article {
  border-top: unset;
  height: 520px;
  padding: 72px 0 90px;
}

.related-products__swiper article.swiper-slide-active {
  border-right: 1px solid #E0E0E0;
  border-right: 1px solid var(--border-color);
}

.related-products__pagination-btns {
  align-items: center;
  grid-gap: 22px;
  gap: 22px;
  margin-bottom: 68px;
}

.related-products__pagination-btns.desktop {
  display: flex;
}

.related-products__pagination-dots.swiper-pagination.mob {
  display: none;
}

.related-products__pagination {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(var(--black_rgb), 0.3);
  transition: all .3s ease;
  cursor: pointer;
  /* &:hover {
    background-color: var(--brown);
    border-color: var(--brown);

    svg path {
      stroke: var(--white);
    }
  } */
}

.related-products__pagination svg {
  width: auto;
  height: 22px;
}

.reviews {
  padding: 56px 0 64px;
}

/* @media (--ssm) { */

.reviews__wrapper {
  width: 100%;
  padding-left: calc((100% - 2000px) / 2 + 60px);
}

.reviews__wrapper img {
  min-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.rewards-hero.hero .hero__title {
  margin-top: 70px;
}

.search-block {
  height: 40px;
}

.search-block__input {
  display: none;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  background-color: var(--white);
  padding: 0 0 0 10px;
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
}

.search-block__input input {
  padding: 13px 10px;
  border: none;
  outline: none;
  line-height: 1.5;
  font-weight: 300;
}

.search-block__input--show {
  display: flex;
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.search-block__input--hide {
  -webkit-animation: fadeOut 0.5s ease-in-out forwards;
  animation: fadeOut 0.5s ease-in-out forwards;
}

.search-block__btn {
  background-color: #ffffff;
  background-color: var(--white);
  border: none;
  border-left: 1px solid #E0E0E0;
  border-left: 1px solid var(--border-color);
  width: 40px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  display: flex;
  margin-top: 10px;
}

.search-block__btn img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  50% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut-desktop {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  50% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeIn-desktop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.shipping-and-returns-hero.hero .hero__title {
  margin-top: 70px;
}

.shipping-and-returns__wrapper {
  margin: 64px 0 60px;
  padding: 8px 19.39% 72px 8.48%;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.shipping-and-returns__content {
  width: 100%;
}

.shipping-and-returns__content h3 {
  margin-bottom: 24px;
  margin-top: 48px;
}

.shipping-and-returns__content ul {
  margin: 8px 0;
}

.shipping-and-returns__content ul li {
  margin-bottom: 22px;
}

.shipping-and-returns__content .accordion--open .accordion__body {
  margin: 0;
}

.swiper-nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 80px;
  height: 182px;
  position: absolute;
  z-index: 10;
}

.slider-button {
  width: 80px;
  height: 80px;
  background-color: transparent;
  border: 3px solid rgba(255, 255, 255, 0.39);
  border-radius: 50%;
  position: relative;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-clip-path: circle(48% at 50% 50%);
  clip-path: circle(48% at 50% 50%);
}

.slider-button:hover::before {
  opacity: 0;
  transition: left .5s, top .5s, opacity .3s;
}

.slider-button:hover::after {
  opacity: 1;
  transition: left .5s, top .5s, opacity 0s;
}

.slider-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/svg/slider-arr.svg);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  transition: left .5s, top .5s, opacity 0s;
}

.slider-button::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/svg/slider-arr.svg);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  opacity: 0;
  transition: left .5s, top .5s, opacity .3s;
}

.slider-button .progress {
  position: absolute;
}

.slider-button .progress__path {
  stroke: #CBBD9A;
  stroke: var(--brown);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.slider-button .progress__circle,
.slider-button .progress__path {
  fill: none;
  stroke: #CBBD9A;
  stroke: var(--brown);
  stroke-width: 0;
}

.slider-button--active .progress__path {
  stroke-dashoffset: 0;
  stroke-width: 3;
  transition: stroke-dashoffset 10.5s linear;
}

.slider-button-prev::before,
.slider-button-prev::after {
  transform: rotate(180deg);
}

.slider-button-prev::after {
  top: 9px;
}

.slider-button-prev:hover::before {
  top: -9px;
}

.slider-button-prev:hover::after {
  top: 0;
}

.slider-button-next::after {
  top: -9px;
}

.slider-button-next:hover::before {
  top: 9px;
}

.slider-button-next:hover::after {
  top: 0;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 24px;
  gap: 24px;
}

.swiper-pagination span {
  position: relative;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  background-color: var(--white);
  border-radius: 50%;
  opacity: .5;
  transition: background-color .3s ease, transform .3s ease;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #ffffff;
  background-color: var(--white);
  opacity: 1;
}

.swiper-pagination--brown span {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.swiper-pagination--brown span.swiper-pagination-bullet-active {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  padding: 0;
  margin: 0;
}

.social {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
}

.social__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background-color: #506655;
  background-color: var(--green);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.social__item:hover:before {
  transform: scale(1.1);
}

.social__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #506655;
  background: var(--green);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform-origin: 50% 50%;
  transition: transform .2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform .2s var(--cubic-1-1);
}

.social__item--brown {
  background-color: #CBBD9A;
  background-color: var(--brown);
}

.social__item--brown:before {
  background: #CBBD9A;
  background: var(--brown);
}

.story-about {
  padding-top: 64px;
}

.story-about .section-title {
  margin-bottom: 32px;
}

.story-about__wrapper {
  background: #ffffff;
  background: var(--white);
  margin-left: calc((100% - 2000px)/2 + 60px);
  padding-right: calc((100% - 2000px) / 2 + 60px);
}

.story-about__content {
  padding: 56px 26% 104px 8.48%;
}

.story-about__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.story-about__text p {
  margin-top: 0;
  margin-bottom: 1em;
}

.story-cbdpedia.cbdpedia {
  padding: 48px 0;
}

.story-cbdpedia .cbdpedia__text {
  display: block;
  font-weight: 300;
}

.story-cbdpedia .cbdpedia__text h1,
.story-cbdpedia .cbdpedia__text h2,
.story-cbdpedia .cbdpedia__text h3,
.story-cbdpedia .cbdpedia__text h4,
.story-cbdpedia .cbdpedia__text h5,
.story-cbdpedia .cbdpedia__text h6 {
  margin-top: 0;
  font-weight: 300;
}

.story-cbdpedia .cbdpedia__text h2,
.story-cbdpedia .cbdpedia__text h1 {
  font-size: 26px;
  margin-bottom: 24px;
}

.story-cbdpedia .cbdpedia__text h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.story-cbdpedia .cbdpedia__text h4 {
  font-size: 22px;
  margin-bottom: 24px;
}

.story-cbdpedia .cbdpedia__text h5,
.story-cbdpedia .cbdpedia__text h6 {
  font-size: 20px;
  margin-bottom: 24px;
}

.story-cbdpedia .cbdpedia__text p {
  margin-bottom: 16px;
}

.story-cbdpedia .cbdpedia__image {
  margin-top: -80px;
}

.story-cbdpedia .cbdpedia__image-wrap {
  bottom: 0;
}

.story-hero.hero .hero__title {
  margin-top: 70px;
}

.subscribe-page .questions-block {
  margin-bottom: 64px;
}

.subscribe-about {
  padding-top: 64px;
  padding-bottom: 64px;
}

.subscribe-about .section-title {
  margin-bottom: 48px;
}

.subscribe-about .subscribe-about__text-bottom {
  margin-top: 48px;
  margin-bottom: 64px;
}

.subscribe-about__wrapper {
  background: #ffffff;
  background: var(--white);
  margin-left: calc((100% - 2000px)/2 + 60px);
  padding-right: calc((100% - 2000px) / 2 + 60px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.subscribe-about__content {
  padding: 64px 26% 90px 8.48%;
}

.subscribe-hero.hero .hero__title {
  margin-top: 70px;
}

.subscription-payment {
  width: 100%;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.03922);
  border-radius: 2px;
}

.payment-item__back {
  font-weight: 700;
  color: #506655;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.payment-item {
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 36px 72px 50px;
}

.payment-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 0 16px 32px;
}

.payment-item__head .order__value {
  font-weight: 300;
}

.payment-item__head-left {
  display: flex;
  align-items: center;
}

.payment-item__text {
  margin-right: 16px;
  font-weight: 700;
}

.payment-item__container {
  padding: 64px 16px;
}

.payment-item__title {
  font-weight: 600;
  font-size: 16px;
  color: #506655;
  color: var(--green);
}

.payment-item__box {
  margin-top: 24px;
  margin-bottom: 48px;
  font-weight: 300;
}

.credit-cart {
  background: linear-gradient(254.46deg, #5B796B 6.51%, #4C5E4D 101.47%);
  background: var(--green-gradient);
  border-radius: 6px;
  color: #ffffff;
  color: var(--white);
  max-width: 490px;
  padding: 10px 33px 33px;
}

.credit-cart__number {
  letter-spacing: 2px;
  font-size: 24px;
  line-height: 1.1;
  display: flex;
  grid-gap: 26px;
  gap: 26px;
  padding: 47px 0 57px;
}

.credit-cart__segment.show-number {
  padding-left: 6px;
}

.credit-cart__segment:not(.show-number) {
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
}

.credit-cart__segment:not(.show-number) span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  background-color: var(--white);
  opacity: .4;
}

.credit-cart__holder-title {
  font-size: 10px;
  text-transform: uppercase;
  opacity: .8;
}

.credit-cart__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
}

.credit-cart__holder {
  line-height: 1;
  letter-spacing: 0.1px;
}

.credit-cart__edit a {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  font-weight: 700;
  line-height: 1.5;
}

.subscription {
  width: 100%;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.03922);
  border-radius: 2px;
}

.order-item.active .order-item__more-menu {
  display: block;
}

.order-item__more {
  position: relative;
  right: -12px;
}

.order-item__more.active .more__icon {
  -webkit-animation: .5s rotateIn forwards;
  animation: .5s rotateIn forwards;
}

.more__icon {
  display: flex;
  flex-direction: column;
  height: 24px;
  width: 24px;
  cursor: pointer;
  grid-gap: 3px;
  gap: 3px;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  -webkit-animation: .5s rotateOff forwards;
  animation: .5s rotateOff forwards;
}

.more__icon:hover {
  -webkit-animation: .5s rotateIn forwards;
  animation: .5s rotateIn forwards;
}

.more__icon span {
  width: 2px;
  height: 2px;
  background-color: #506655;
  background-color: var(--green);
  border: 2px solid #506655;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.order-item__more-menu {
  display: none;
  position: absolute;
  z-index: 3;
  right: 72px;
  top: 52px;
  background: #ffffff;
  background: var(--primary-color);
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.22745);
  box-shadow: var(--shadow);
  border-radius: 0px 0px 10px 10px;
  padding: 20px 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
}

.order-item__more-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
  gap: 14px;
}

.order-item__more-menu ul li {
  list-style: none;
  font-weight: 400;
  cursor: pointer;
}

.order-item__more-menu ul li::before {
  content: unset;
}

.order-item__more-menu ul li.disabled {
  color: #BDBDBD;
}

@-webkit-keyframes rotateIn {
  from {
    transform: rotate(0deg);
    grid-gap: 3px;
    gap: 3px;
  }

  50% {
    grid-gap: 1px;
    gap: 1px;
  }

  to {
    transform: rotate(90deg);
    grid-gap: 3px;
    gap: 3px;
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(0deg);
    grid-gap: 3px;
    gap: 3px;
  }

  50% {
    grid-gap: 1px;
    gap: 1px;
  }

  to {
    transform: rotate(90deg);
    grid-gap: 3px;
    gap: 3px;
  }
}

@-webkit-keyframes rotateOff {
  from {
    transform: rotate(90deg);
    grid-gap: 3px;
    gap: 3px;
  }

  50% {
    grid-gap: 1px;
    gap: 1px;
  }

  to {
    transform: rotate(0deg);
    grid-gap: 3px;
    gap: 3px;
  }
}

@keyframes rotateOff {
  from {
    transform: rotate(90deg);
    grid-gap: 3px;
    gap: 3px;
  }

  50% {
    grid-gap: 1px;
    gap: 1px;
  }

  to {
    transform: rotate(0deg);
    grid-gap: 3px;
    gap: 3px;
  }
}

.subscription .order-item__details-wrap {
  grid-gap: 72px;
  gap: 72px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.subscription .order-item__details .order-item__detail {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 270px;
}

.subscription .order-item__products {
  border: unset;
  padding-bottom: 31px;
}

.product .product__name .product__name-details .order-item__detail {
  margin-top: 10px;
}

.product .product__name .product__name-details .order-item__detail span {
  font-size: 14px;
}

.thank-for-purchase .header-cabinet__page-title--cart {
  display: none;
}

.thank-for-purchase .header-cabinet__details {
  display: none;
}

.thank__wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  height: 100%;
  background-color: #ffffff;
  background-color: var(--primary-color);
}

.thank__row {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  height: calc(100% - 120px);
}

.thank__row > div {
  width: 50%;
}

.thank__col {
  max-width: 588px;
  display: flex;
  flex-direction: column;
  grid-gap: 48px;
  gap: 48px;
  padding-right: 40px;
}

.thank__subtitle {
  margin-top: 48px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}

.thank__subtitle span {
  color: #506655;
  color: var(--green);
}

.thank__text-top p {
  margin: 16px 0 0;
}

.thank__text-bottom {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}

.thank__text-bottom p {
  margin: 0;
  line-height: 1.5;
}

.thank__text-bottom p a {
  color: #506655;
  color: var(--green);
  text-decoration: underline;
}

.thank__text-bottom p a:hover {
  text-decoration: none;
}

.thank__text-bottom a.btn-green {
  margin-top: 36px;
}

.thank__image {
  position: relative;
  width: 50%;
  float: right;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.thank__image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom right;
  object-position: bottom right;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 570px;
}

.tracking {
  width: 100%;
  background-color: #ffffff;
  background-color: var(--primary-color);
  padding: 36px 72px 135px;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.03922);
}

.tracking__top {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 30px;
}

.tracking__wrapper {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  grid-gap: 45px;
  gap: 45px;
}

.tracking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tracking__info {
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.5;
}

.tracking__info p {
  margin: 0;
}

.tracking__info span.copy {
  font-weight: 300;
  margin-left: 16px;
}

.tracking__back {
  font-weight: 700;
  color: #506655;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
  margin-right: 25px;
}

.tracking__details {
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
}

.tracking__details-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tracking__details-left .copy__icon--wrap {
  position: relative;
}

.tracking__details-right {
  width: 270px;
}

.tracking__value {
  color: #5B5B5B;
  color: var(--grey);
  padding-left: 5px;
}

.tracking__copy {
  margin-left: 16px;
}

.tracking__share {
  margin-left: 4px;
}

.share__icon {
  width: 32px;
  height: 32px;
}

.tracking__body {
  margin-top: 40px;
}

.tracking__body .tracking__wrapper {
  grid-gap: 32px;
  gap: 32px;
}

.tracking__title {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 300;
  color: #5B5B5B;
  color: var(--grey);
}

.point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.point__left {
  display: grid;
  grid-template-columns: 80px 40px 120px 1fr;
  grid-gap: 16px;
  gap: 16px;
  line-height: 1.5;
  height: 100%;
  align-items: center;
}

.point__time {
  color: #5B5B5B;
  color: var(--grey);
}

.point__track {
  position: relative;
  height: 100%;
}

.point__track::before {
  content: '';
  position: absolute;
  left: 38%;
  top: 0;
  width: 2px;
  height: 100%;
  background-image: url("/img/svg/dashed.svg");
}

.point__track::after {
  content: '';
  position: absolute;
  left: calc(39% - 1px);
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid #CBBD9A;
  border: 1px solid var(--brown);
  border-radius: 50px;
  background-color: #ffffff;
  background-color: var(--white);
  transform: translate(-50%, -50%);
}

.point__status {
  font-weight: 300;
}

.point--current .point__track::after {
  background: #506655;
  background: var(--green);
  border: unset;
}

.point:nth-child(even) .point__track::before {
  top: -4px;
}

.point__img--mob {
  display: none;
}

.trust {
  background: #ffffff;
  background: var(--white);
}

.trust__wrapper.wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.trust__title {
  padding-top: 72px;
  padding-right: 45px;
}

.trust__title .section-title {
  margin-bottom: 0;
}

.trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
  padding: 48px 0 80px;
  position: relative;
}

.trust__list:before,
.trust__list:after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #E0E0E0;
  background: var(--border-color);
  position: absolute;
  top: 0;
  pointer-events: none;
}

.trust__list:before {
  left: 0;
}

.trust__list:after {
  left: 50%;
}

.trust__item {
  padding: 40px 45px;
}

.trust__item-header {
  display: grid;
  grid-template-columns: 80px minmax(auto, 58%);
  grid-gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.trust__item-elblem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #CBBD9A;
  background: var(--brown);
}

.trust__item-elblem .icon {
  width: 60%;
  height: 60%;
}

.trust__item-name {
  font-size: 16px;
  font-weight: bold;
  color: #CBBD9A;
  color: var(--brown);
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
}

.trust__item-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.trust__item-body p {
  font-size: inherit;
  margin-top: 0;
  margin-bottom: 0;
}

/* .general-text{
  h3{
    margin: 32px 0 22px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--green);
    @media (--ssm){
      color: var(--brown);
      font-weight: 400;
      font-size: 16px;
      margin: 24px 0 16px;
    }
  }
  ul{
    list-style: none;
    margin: 0;
    padding: 0;
    li{
      position: relative;
      padding: 10px 0;
      span.dot{
        font-size: 32px;
        line-height: 16px;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
        padding-right: 5px;
      }
    }
  }
}
 */

@media (min-width: 641px) {
  .checkout__send-btn {
    width: 334px;
  }
}

@media (min-width: 769px) {
  .article-hero.categories-item .categories-item__tags {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .categories-slider__wrapper .swiper-pagination {
    display: none;
  }

  .footer .lang:hover > span::before {
    transform: scale(0,1);
  }

  .footer .lang:hover > span::after {
    transform: scale(1,1);
  }

  .notification {
    height: 60px;
  }
}

@media (min-width: 993px) {
  .article-hero.categories-item .categories-item__title {
    width: 75%;
  }

  .author-hero.hero .hero__wrapper {
    position: relative;
  }

  .author-list .categories-block__list {
    grid-template-columns: repeat(6, 1fr);
  }

  .author-list .categories-block__list .categories-item:first-child,
  .author-list .categories-block__list .categories-item:nth-child(5),
  .author-list .categories-block__list .categories-item:nth-child(9) {
    grid-column: 1/4;
  }

  .author-list .categories-block__list .categories-item:nth-child(2),
  .author-list .categories-block__list .categories-item:nth-child(6),
  .author-list .categories-block__list .categories-item:nth-child(10) {
    grid-column: 4/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(4) {
    grid-column: 1/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(4) .categories-item__title {
    font-size: 32px;
  }

  .author-list .categories-block__list .categories-item:nth-child(3) {
    grid-column: 1/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(3) .categories-item__title {
    font-size: 32px;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) {
    grid-column: 1/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) .categories-item__title {
    font-size: 32px;
  }

  .author-list .categories-block__list .categories-item:nth-child(8) {
    grid-column: 1/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(8) .categories-item__title {
    font-size: 32px;
  }

  .catalog-hero.hero .hero__wrapper {
    position: relative;
  }

  .catalog-hero.hero .hero__title {
    /* width: calc(50% + 60px); */
    /*margin-left: calc(50% - 60px);*/
    margin-left: 0;
    text-align: left;
  }

  .catalog-hero.hero .hero__link-btn {
    width: calc(50% + 60px);
    /*margin-left: calc(50% - 60px);*/
    margin-left: 0;
    margin-bottom: 32px;
  }

  .categories-block .categories-item:nth-child(3) {
    grid-column: 1/3;
  }

  .categories-block .categories-item:nth-child(3) .categories-item__title {
    font-size: 32px;
  }

  .categories-item__title {
    width: 96%;
  }

  .quick-add-popup .cart-product__remove {
    position: relative;
    top: auto;
    right: auto;
  }
}

@media (max-height: 740px) and (min-width: 993px) {
  .cart-total__earn {
    padding: 72px 26px 16px;
  }
}

@media (max-height: 840px) and (min-width: 993px) {
  .cart-total__earn {
    padding: 80px 24px 24px;
  }

  .cart-total .btn-green {
    margin-top: 16px;
  }
}

@media (max-height: 680px) and (min-width: 993px) {
  .cart-total__earn {
    padding: 65px 24px 10px;
  }

  .cart-total .loyalty__input .custom-input__alert-text-error {
    margin-top: 0;
  }

  .cart-total .btn-green {
    margin-top: 8px;
  }

  .cart-total__loyalty .loyalty-progress__top {
    margin-bottom: 25px;
  }
}

@media (max-height: 730px) and (min-width: 993px) {
  .cart-total .loyalty {
    padding: 24px 40px;
  }

  .cart-total .coupon {
    padding: 24px 40px;
  }

  .cart-total__price {
    padding: 24px 40px;
  }

  .cart-total__subtotal,
  .cart-total__shipping {
    margin-bottom: 10px;
  }

  .cart-total__discount {
    margin-bottom: 10px;
  }

  .cart-total .btn-green {
    margin: 0 0 5px;
  }
}

@media (max-height: 640px) and (min-width: 993px) {
  .cart-total .loyalty {
    padding: 10px 40px 5px;
  }

  .cart-total .loyalty__row {
    height: 40px;
  }

  .cart-total .coupon {
    padding: 15px 40px;
  }

  .cart-total__price {
    padding: 10px 40px;
  }

  .cart-total .custom-input__wrapper {
    height: 40px;
  }

  .cart-total .custom-input__wrapper input {
    height: 40px;
    padding: 0 24px;
  }
}

@media (max-height: 790px) and (min-width: 993px) {
  .cart-total .coupon {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 0 35px;
    gap: 0 35px;
  }

  .cart-total .coupon__input {
    flex-grow: 1;
  }
}

@media (min-width: 1200px) and (max-height: 810px) {
  .contact-us__form textarea {
    height: 120px;
  }

  .product-comments__form textarea {
    height: 120px;
  }
}

@media (min-width: 1200px) and (max-height: 768px) {
  .contact-us__form textarea {
    height: 85px;
  }

  .product-comments__form textarea {
    height: 85px;
  }
}

@media only screen and (min-width: 1201px) {
  body div[id^="minimized-trustbadge"] {
    top: 75px !important;
    bottom: auto !important;
  }
}

@media (min-width: 1201px) {
  .catalog-list__wrapper.wrapper:before {
    content: '';
    display: block;
    width: 200%;
    height: 1px;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    left: -50%;
    top: 0;
  }

  .cbdpedia__pagination.swiper-pagination {
    display: none;
  }

  .certificate-catalog .certificate-item:nth-child(3n+1):before {
    content: '';
    display: block;
    width: 800%;
    height: 1px;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    left: -200%;
    bottom: 0;
  }

  .certificate-list:before,
  .certificate-list:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    top: 0;
  }

  .certificate-list:before {
    left: 33%;
  }

  .certificate-list:after {
    right: 33%;
  }

  .favorites-list .product-list {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .favorites-list .pagination {
    padding-bottom: 0;
  }

  .main-header .menu__container ul .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 220%;
    height: 100%;
    background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent), #506655;
    background: linear-gradient(to left, transparent, transparent, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16), transparent, transparent), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent), #506655;
    background-blend-mode: darken;
  }

  .main-header .menu__container ul .sub-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("../../../img/gradient/nois.png");
  }

  .checkout-personal.loading::before {
    background-position: center top;
  }

  .notification {
    top: 60px;
    right: 20px;
    left: auto;
    left: initial;
    transform: translateX(0);
  }

  .notification__icon {
    width: 40px;
    height: 40px;
  }

  .notification--show {
    -webkit-animation: fadeIn-desktop 0.5s ease-in-out forwards;
    animation: fadeIn-desktop 0.5s ease-in-out forwards;
  }

  .notification--hide {
    -webkit-animation: fadeOut-desktop 0.5s ease-in-out forwards;
    animation: fadeOut-desktop 0.5s ease-in-out forwards;
  }

  .partners__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 16px 24px;
  }

  .partners__swiper .swiper-pagination {
    display: none;
  }

  .product-list:before,
  .product-list:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    top: 0;
  }

  .product-list:before {
    left: 33%;
  }

  .product-list:after {
    right: 33%;
  }

  .product-gallery__main-img img {
    transform: scale(.9);
  }

  .product-gallery__main-img--zoom img {
    transform: scale(1);
  }

  .quick-add-popup .popup__wrapper {
    max-height: 566px;
  }

  .quiz-main__content .btn-green {
    width: 280px;
  }

  .search-block__input--show {
    -webkit-animation: fadeIn-desktop 0.5s ease-in-out forwards;
    animation: fadeIn-desktop 0.5s ease-in-out forwards;
  }

  .search-block__input--hide {
    -webkit-animation: fadeOut-desktop 0.5s ease-in-out forwards;
    animation: fadeOut-desktop 0.5s ease-in-out forwards;
  }
}

@media (min-width: 1201px) and (max-height: 799px) {
  .main-header .menu__container {
    padding-top: 70px;
  }

  .main-header .menu__container-top {
    padding-bottom: 20px;
  }

  .main-header .menu__container-top .section-title {
    font-size: 40px;
  }

  .main-header .menu__container .pages {
    margin-top: 20px;
    grid-gap: 10px;
    gap: 10px;
  }

  .main-header .social {
    padding-top: 30px;
  }

  .quiz .question {
    min-height: 415px;
  }

  .quiz .question__variations {
    padding: 40px 0;
  }
}

@media (min-width: 1201px) and (min-height: 800px) and (max-height: 900px) {
  .main-header .menu__container {
    padding-top: 100px;
  }

  .main-header .menu__container-top {
    padding-bottom: 50px;
  }

  .main-header .menu__container .pages {
    margin-top: 50px;
  }

  .main-header .social {
    padding-top: 60px;
  }
}

@media (min-width: 1201px) and (max-height: 900px) {
  .main-header .menu__container .categories__item {
    padding: 8px 0;
  }
}

@media (max-height: 730px) and (min-width: 1201px) {
  .order-summary .cart-total__total {
    padding-top: 16px;
  }
}

@media (min-width: 1300px) {
  .product-info-block__nav::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 1401px) {
  .favorites-list .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1441px) {
  .author-list .categories-block__list .categories-item:nth-child(4) {
    grid-column: 5/7;
  }

  .author-list .categories-block__list .categories-item:nth-child(4) .categories-item__info {
    font-size: 14px;
    grid-gap: 10px 14px;
    gap: 10px 14px;
  }

  .author-list .categories-block__list .categories-item:nth-child(4) .categories-item__info span:not(:first-child) {
    padding-left: 25px;
  }

  .author-list .categories-block__list .categories-item:nth-child(4) .categories-item__title {
    font-size: 22px;
  }

  .author-list .categories-block__list .categories-item:nth-child(3) {
    grid-column: 1/5;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) {
    grid-column: 1/3;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) .categories-item__info {
    font-size: 14px;
    grid-gap: 10px 14px;
    gap: 10px 14px;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) .categories-item__info span:not(:first-child) {
    padding-left: 25px;
  }

  .author-list .categories-block__list .categories-item:nth-child(7) .categories-item__title {
    font-size: 22px;
  }

  .author-list .categories-block__list .categories-item:nth-child(8) {
    grid-column: 3/7;
  }

  .main-header .menu__container .pages {
    margin-top: 35px;
  }

  .main-header .social {
    padding-top: 90px;
  }
}

@media (min-width: 2001px) {
  .cbdpedia-news__container {
    width: auto;
    max-width: 100%;
    padding-right: calc((100% - 2000px) / 2 + 60px);
    margin-left: calc((100% - 2000px) / 2 + 60px);
  }

  .guarantee__wrapper {
    margin-left: calc((100% - 2000px) / 2 + 60px);
    padding-right: calc((100% - 2000px) / 2 + 60px);
  }

  .guarantee.guarantee--black .guarantee__wrapper {
    padding-left: calc((100% - 2000px) / 2 + 60px);
    margin-left: 0;
  }
}

@media (max-width: 2000px) {
  .article-author {
    padding: 64px 60px 64px 0;
  }

  .article-hero.categories-item .categories-item__text {
    padding: 48px 60px;
  }

  .author-biography {
    padding-left: 60px;
  }

  .cbdpedia::before {
    /* margin-left: 60px; */
    left: 60px;
  }

  .cbdpedia-news {
    padding-left: 60px;
  }

  .earn-for-friends {
    padding: 64px 60px 64px 0;
  }

  .earning-easy {
    padding: 64px 0 64px 60px;
  }

  .error-block__text {
    padding-left: 84px;
  }

  .follow-us__wrapper {
    padding-left: 60px;
  }

  .guarantee {
    /*  padding: 64px 0 0 60px; */
    margin-left: 60px;
  }

  .hero__title {
    font-size: 120px;
  }

  .lab-results__wrapper {
    margin-left: 60px;
    padding-right: 60px;
  }

  .how-it-work {
    padding-left: 60px;
  }

  .main-hero .swiper-pagination {
    left: 60px;
  }

  .main-hero__title {
    font-size: 80px;
    max-width: 715px;
  }

  .main-hero__swiper-nav {
    right: 60px;
  }

  .questions-block__wrapper {
    margin-right: 60px;
    padding-left: 60px;
  }

  .reviews__wrapper {
    padding-left: 60px;
  }

  .story-about__wrapper {
    margin-left: 60px;
    padding-right: 60px;
  }

  .subscribe-about__wrapper {
    margin-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1600px) {
  .account-info__log-out {
    font-size: 20px;
  }

  .categories-nav__list {
    grid-gap: 42px;
    gap: 42px;
  }

  .categories-nav__item {
    font-size: 16px;
  }

  .categories-nav__item:before {
    height: 64px;
  }

  .categories-slider .categories-nav__item {
    font-size: 16px;
  }

  .categories-slider__wrapper {
    margin-top: -101px;
  }

  .categories-slider__item {
    height: 504px;
  }

  .cbdpedia {
    padding: 64px 0 0;
  }

  .certificate-list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 0 24px;
  }

  .checkout-personal__email-info {
    min-width: 208px;
  }

  .header-cabinet {
    height: 50px;
  }

  .main-header .menu__container ul li .sub-menu {
    padding: 7.7vw 7vw 0 7.7vw;
  }

  .hero__title {
    font-size: 110px;
  }

  .main-categories {
    padding-top: 62px;
  }

  .main-hero__title {
    font-size: 68px;
  }

  .more-information__slider .categories-slider__item {
    height: 504px;
  }

  .my-orders .product .product__name,
  .subscription .product .product__name {
    margin-right: 0;
  }

  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 56px 24px;
  }
}

@media (max-width: 1450px) {
  .cart-product__right {
    grid-gap: 15px;
    gap: 15px;
  }
}

@media (max-width: 1400px) {
  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .article-author {
    padding: 56px 40px 56px 0;
  }

  .article-content {
    padding: 56px 8.48% 56px 8.48%;
  }

  .article-hero.categories-item .categories-item__text {
    padding: 48px 40px;
  }

  .article-hero.categories-item .categories-item__title {
    margin-bottom: 48px;
  }

  .author-biography {
    padding-left: 40px;
    padding-bottom: 56px;
    margin-top: -60px;
  }

  .author-biography__container {
    padding-top: 100px;
  }

  .author-biography__text {
    padding-left: 40px;
  }

  .best-people__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .best-people__photo {
    flex-shrink: unset;
  }

  .categories-item__text {
    padding: 40px 30px;
  }

  .categories-item__info {
    grid-gap: 10px 14px;
    gap: 10px 14px;
  }

  .categories-item__info span:not(:first-child) {
    padding-left: 25px;
  }

  .categories-slider__item-text {
    left: 48px;
    top: 64px;
  }

  .cbdpedia::before {
    /* margin-left: 40px; */
    left: 40px;
  }

  .cbdpedia__column:first-child {
    width: 40%;
  }

  .cbdpedia .section-title {
    margin-bottom: 24px;
  }

  .cbdpedia__text ul,
  .cbdpedia__text ol {
    font-size: 15px;
  }

  .cbdpedia__swiper-nav.swiper-nav {
    left: 40px;
  }

  .cbdpedia-news {
    padding-left: 40px;
  }

  .certificate-item__img {
    width: 96px;
    height: 96px;
  }

  .certificate-item__text {
    padding-top: 2px;
  }

  .certificate-item__name {
    font-size: 18px;
    line-height: 1.4;
  }

  .certificate-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }

  .shipping-info__form {
    width: 100%;
  }

  .checkout-personal__email-info {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-top: 7px;
  }

  .earn-for-friends {
    padding: 56px 40px 56px 0;
  }

  .earning-easy {
    padding: 56px 0 56px 40px;
  }

  .favorites-list .product-item__wishlist {
    top: -340px;
  }

  .follow-us__wrapper {
    padding-left: 40px;
  }

  .guarantee {
    /* padding: 56px 0 0 40px; */
    padding: 56px 0 0 0;
    margin-left: 40px;
  }

  .guarantee__img {
    padding-top: 0;
    height: 470px;
  }

  .guarantee.guarantee--black .guarantee__img {
    padding-top: 0;
  }

  .header-cabinet {
    height: 46px;
  }

  .main-header {
    height: 50px;
  }

  .main-header {
    height: 46px;
  }

  .main-header__logo {
    width: 98px;
  }

  .main-header .menu__item {
    font-size: 15px;
  }

  .hero__title {
    font-size: 96px;
  }

  .hero__text {
    padding-left: 75px;
  }

  .lab-results__wrapper {
    margin-left: 40px;
    padding-right: 40px;
  }

  .how-it-work {
    padding-left: 40px;
  }

  .main-hero__title {
    font-size: 60px;
    width: 52%;
  }

  .main-hero__desc,
  .main-hero__content-wrapper p {
    font-size: 18px;
  }

  .main-hero__link {
    margin-top: 20px;
  }

  .product-item__container {
    padding: 8px 16px;
  }

  .product-item__top {
    height: 300px;
  }

  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }

  .product-hero__subscribe {
    grid-gap: 20px;
    gap: 20px;
    margin-bottom: 25px;
  }

  .product-gallery__main-img {
    max-width: 330px;
  }

  .questions-block__wrapper {
    margin-right: 40px;
    padding-left: 40px;
  }

  .quick-add {
    padding: 80px 24px 40px;
  }

  .quiz-main__content .text {
    font-size: 16px;
    padding: 40px 0 48px;
  }

  .reviews__wrapper {
    padding-left: 40px;
  }

  .story-about__wrapper {
    margin-left: 40px;
    padding-right: 40px;
  }

  .subscribe-about__wrapper {
    margin-left: 40px;
    padding-right: 40px;
  }

  .trust__title {
    padding-right: 32px;
  }

  .trust__list {
    padding-bottom: 64px;
  }

  .trust__item {
    padding: 40px 32px;
  }
}

@media (max-width: 1350px) {
  .cart__list {
    margin: 0;
  }

  .cart-product {
    justify-content: flex-start;
    padding: 60px 0 22px;
  }

  .cart-product__right {
    grid-gap: 40px;
    gap: 40px;
    order: 3;
    width: 100%;
    margin-top: 16px;
    justify-content: space-between;
  }

  .cart-product__info {
    width: 100%;
    order: 1;
  }

  .cart-product__remove {
    position: absolute;
    top: 24px;
    right: 24px;
  }

  .cart-product__delivery {
    width: 100%;
    /* margin: 10px 0; */
    margin: 20px 0;
    order: 2;
  }

  .cart-product__delivery-wrapper {
    padding: 9px;
    margin-top: 0;
    margin-left: 0;
  }

  .subscription-error {
    margin-left: 0;
  }

  .subscription-set {
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 1200px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title,
  .guarantee__title,
  .cbdpedia__title {
    font-size: 45px;
  }

  .account-edit {
    margin-top: 32px;
  }

  .account-hero.hero .hero__title {
    margin-top: 40px;
  }

  .account-info {
    padding: 32px 0 8px;
  }

  .account-info .categories-nav {
    overflow-x: hidden;
    width: 100%;
    top: 56px;
    z-index: 10;
    background: #F4F4F4;
    background: var(--bg-light);
    padding-bottom: 0;
  }

  .account-info .categories-nav__list {
    width: calc(100% + 20px);
    padding: 4px 0 4px 16px;
  }

  .account-info .categories-nav__item .categories-nav__link {
    height: auto;
  }

  .account-info .categories-nav__item {
    white-space: nowrap;
    padding: 12px 20px;
  }

  .account-info .categories-nav__item.current {
    background: #506655;
    background: var(--green);
    color: #ffffff;
    color: var(--white);
  }

  .account-info .categories-nav__item:before {
    display: none;
    height: 56px;
  }

  .account-info__wrapper {
    display: block;
  }

  .account-info__log-out {
    height: 56px;
  }

  .account-info__blocks {
    margin-top: 28px;
  }

  .age-popup .popup__wrapper::before {
    width: 220%;
  }

  .article-author {
    padding: 56px 0;
  }

  .article-content {
    display: block;
  }

  .table-contents {
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 100;
    width: 240px;
    padding: 0;
  }

  .table-contents:before {
    display: none;
  }

  .table-contents__inner {
    position: static;
    padding-bottom: 40px;
    max-height: calc(100vh - 60px);
    overflow: auto;
    background: #506655;
    background: var(--green);
    color: #ffffff;
    color: var(--white);
  }

  .table-contents__headline {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    font-size: 16px;
    padding: 11px 20px;
    margin: 0;
    width: 100%;
    background: #506655;
    background: var(--green);
  }

  .table-contents__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    gap: 5px;
    width: 22px;
    height: 22px;
    box-sizing: content-box;
    position: absolute;
    z-index: 6;
    right: 20px;
    bottom: 10px;
    pointer-events: none;
  }

  .table-contents__burger span {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    background-color: var(--white);
    transition: .5s;
  }

  .table-contents__list {
    padding: 20px 20px 10px;
    font-size: 14px;
    display: none;
  }

  .table-contents__link::before {
    background-color: #ffffff;
    background-color: var(--white);
  }

  .table-contents__link::after {
    background-color: #ffffff;
    background-color: var(--white);
  }

  .table-contents__link.active {
    color: #ffffff;
    color: var(--white);
    font-weight: bold;
  }

  .article-hero.categories-item .categories-item__text {
    padding: 48px 20px;
  }

  .author-biography {
    padding-left: 20px;
    margin-top: -80px;
  }

  .author-hero.hero .product-hero-title {
    font-size: 45px;
  }

  .author-list {
    padding: 40px 0 20px;
  }

  .best-reasons__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    width: 100%;
    max-width: 648px;
    margin: 0 auto;
  }

  .best-reasons__item {
    justify-self: center;
  }

  .text-line span:first-child {
    -webkit-animation: fly-text-lg 30s infinite 0s linear;
    animation: fly-text-lg 30s infinite 0s linear;
  }

  .text-line span:nth-child(2) {
    -webkit-animation: fly-text-lg 30s infinite 7.5s linear;
    animation: fly-text-lg 30s infinite 7.5s linear;
  }

  .text-line span:nth-child(3) {
    -webkit-animation: fly-text-lg 30s infinite 15s linear;
    animation: fly-text-lg 30s infinite 15s linear;
  }

  .text-line span:nth-child(4) {
    -webkit-animation: fly-text-lg 30s infinite 22.5s linear;
    animation: fly-text-lg 30s infinite 22.5s linear;
  }

  .best-bodies__wrapper {
    grid-gap: 40px;
    gap: 40px;
  }

  .best-bodies__human {
    display: none;
  }

  .best-bodies__list {
    width: auto;
  }

  .best-bodies__list--left .best-bodies__item {
    flex-direction: row;
    text-align: left;
  }

  .best-bodies__item1 {
    margin: 0 0 40px;
  }

  .best-bodies__item1 .best-bodies__img {
    margin-top: 0;
  }

  .best-bodies__item2 {
    margin: 0 0 40px;
  }

  .best-bodies__item3 {
    margin: 0 0 40px;
  }

  .best-bodies__item3 .best-bodies__img {
    margin-top: 0;
  }

  .best-bodies__item4 {
    margin: 0 0 40px;
  }

  .best-bodies__item5 {
    margin: 0 0 40px;
  }

  .best-bodies__item6 {
    margin: 0 0 40px;
  }

  .best-hero__wrapper {
    display: block;
  }

  .best-hero__product:before {
    display: none;
  }

  .best-hero__advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .best-hero__advantage:before {
    display: none;
  }

  .best-order__wrapper {
    display: block;
  }

  .best-order__left {
    display: flex;
    flex-direction: column-reverse;
  }

@media (max-width: 640px) {
    .best-order__left {
      align-items: center;
    }
}

  .best-order__text:before {
    right: -20px;
    top: auto;
    bottom: 0;
  }

  .best-order__item:last-child {
    margin-bottom: 0;
  }

  .best-order__right {
    padding: 75px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .best-order__right:before {
    display: none;
  }

  .best-order__title {
    width: 100%;
    max-width: 470px;
  }

  .best-people__list {
    grid-gap: 60px;
  }

  .bestsellers .section-title {
    margin-bottom: 32px;
  }

  .bestsellers .product-list {
    padding: 0;
  }

  .bestsellers .product-item:last-child {
    display: none;
  }

  .bestsellers .product-item:nth-child(even):before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 100%;
  }

  .bestsellers__wrapper.wrapper {
    padding: 0;
  }

  .bestsellers__title {
    grid-column: 1/3;
    padding: 40px 40px 64px;
  }

  .blog-list {
    padding: 40px 0 20px;
  }

  .blog-list .categories-nav {
    overflow-x: hidden;
    width: 100%;
    top: 56px;
    z-index: 10;
    background: #F4F4F4;
    background: var(--bg-light);
    padding-bottom: 0;
  }

  .blog-list .categories-nav__list {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 4px 0;
  }

  .blog-list .categories-nav__item .categories-nav__link {
    height: auto;
  }

  .blog-list .categories-nav__item {
    white-space: nowrap;
  }

  .blog-list .categories-nav__item.current {
    background: #506655;
    background: var(--green);
    color: #ffffff;
    color: var(--white);
  }

  .blog-list .categories-nav__item:before {
    display: none;
  }

  .blog-list__wrapper {
    display: block;
  }

  .cart-product {
    padding: 60px 20px 22px 0;
  }

  .cart-list__wrapper {
    margin-top: 76px;
  }

  .cart-list__wrapper .breadcrumbs {
    margin-bottom: 0;
  }

  .cart-total {
    width: 420px;
    min-width: 420px;
  }

  .cart-total .loyalty {
    padding: 27px 12px;
    margin: 0 4px;
  }

  .cart-total .coupon {
    padding: 27px 12px;
    margin: 0 4px;
  }

  .cart-total__price {
    padding: 24px;
  }

  .catalog-controls__filter-list {
    display: none;
  }

  .catalog-filters__top {
    height: 70px;
  }

  .catalog-filters__close {
    left: 20px;
    top: 20px;
  }

  .catalog-filters__bottom {
    padding: 20px 20px 30px;
  }

  .catalog-filters__row {
    height: calc(100vh - 100px);
    padding: 90px 20px 20px;
  }

  .catalog-list .product-list {
    padding-top: 0;
    padding-bottom: 0;
  }

  .catalog-list .product-item:nth-child(odd):before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 100%;
  }

  .catalog-list .pagination {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalog-list__wrapper.wrapper {
    padding: 0;
  }

  .categories-block {
    padding-top: 64px;
  }

  .categories-block__list {
    grid-gap: 20px;
    margin-bottom: 20px;
  }

  .categories-nav__list {
    flex-direction: row;
    align-items: center;
    grid-gap: 0;
    gap: 0;
    //gap: 8px;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }

  .categories-nav__item {
    padding: 12px 20px;
    border-radius: 40px;
    scroll-snap-align: center;
    line-height: 1.5;
  }

  .categories-nav__item:before {
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: var(--white);
    /* background: linear-gradient(270.11deg, #FFFFFF 0.13%, #F4F4F4 53.77%); */
    box-shadow: none;
  }

  .categories-slider {
    flex-direction: column;
    justify-content: flex-start;
  }

  .categories-slider .categories-nav {
    width: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    top: 32px;
    z-index: 10;
  }

  .categories-slider .categories-nav__list {
    /* display: grid;
			grid-template-columns: 1fr 1fr;
			grid-gap: 8px; */
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    padding: 0 24px;
  }

  .categories-slider .categories-nav__item {
    /* font-size: 18px; */
    justify-self: start;
  }

  .categories-slider .categories-nav__item:not(.current) {
    /* font-size: 16px; */
    color: #ffffff;
    color: var(--white);
  }

  .categories-slider__wrapper {
    width: 100%;
    /* position: relative;
		left: auto;
		top: auto;
		bottom: auto; */
    margin-top: 0;
  }

  .categories-slider__swiper {
    height: 648px;
  }

  .categories-slider__item {
    /* padding: 180px 10px 40px 10px; */
    padding: 140px 10px 40px 10px;
    height: 100%;
    box-sizing: border-box;
  }

  .categories-slider__item-text {
    left: 40px;
    top: 150px;
  }

  .cbdpedia::before {
    /* margin-left: 20px; */
    left: 20px;
    height: 40px;
  }

  .cbdpedia__pagination.swiper-pagination {
    bottom: 96px;
  }

  .cbdpedia__slide::before {
    height: 34px;
  }

  .cbdpedia__swiper-nav.swiper-nav {
    /* left: 20px; */
    display: none;
  }

  .cbdpedia-news {
    padding-left: 20px;
  }

  .certificate-hero.hero .btn-brown {
    margin-top: 56px;
  }

  .certificate-item {
    padding: 48px 24px;
    border-bottom: 1px solid #E0E0E0;
    border-bottom: 1px solid var(--border-color);
  }

  .certificate-item:nth-child(odd):before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 100%;
  }

  .certificate-item__img {
    width: 128px;
    height: 128px;
  }

  .certificate-item__text {
    padding-top: 12px;
  }

  .certificate-item__name {
    font-size: 20px;
    line-height: 1.6;
  }

  .certificate-catalog .catalog-controls__wrapper {
    justify-content: flex-end;
  }

  .certificate-catalog .pagination {
    padding-left: 20px;
    padding-right: 20px;
  }

  .certificate-list__wrapper.wrapper {
    padding: 0;
  }

  .certificate-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }

  .checkout-group .custom-radio {
    width: 100%;
  }

  .checkout-main {
    width: 95%;
  }

  .checkout-form__content .checkout-page__wrapper,
  .checkout-form__content .checkout-main__wrapper {
    max-width: calc(2000px - 420px);
  }

  .checkout-form__content .checkout-page__wrapper {
    margin-top: 76px;
  }

  .contact-us__left {
    padding: 2.5vw 2.7vw;
  }

  .contact-us__right {
    padding: calc(40px + 2.5vw) 30px 0 30px;
    margin: -40px 2.5vw 72px 0;
  }

  .crew-popup .popup__wrapper::before {
    width: 220%;
  }

  .crew-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .earn-for-friends {
    padding: 56px 0;
  }

  .earning-easy {
    padding: 56px 0;
  }

  .error-block {
    padding-top: 200px;
    padding-bottom: 64px;
    align-items: flex-start;
  }

  .error-block__img img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
    max-width: 150%;
    width: 140%;
    left: -40%;
  }

  .error-block__text {
    padding-left: 60px;
    padding-right: 20px;
  }

  .faqs-hero.hero .hero__title {
    margin-top: 40px;
  }

  .faqs-section {
    padding: 32px 0;
  }

  .faqs-section .categories-nav {
    overflow-x: hidden;
    width: 100%;
    top: 56px;
    z-index: 10;
    background: #F4F4F4;
    background: var(--bg-light);
    padding-bottom: 0;
  }

  .faqs-section .categories-nav__list {
    width: calc(100% + 20px);
    padding: 4px 0 4px 16px;
  }

  .faqs-section .categories-nav__item .categories-nav__link {
    height: auto;
  }

  .faqs-section .categories-nav__item {
    white-space: nowrap;
    padding: 12px 20px;
  }

  .faqs-section .categories-nav__item.current {
    background: #506655;
    background: var(--green);
    color: #ffffff;
    color: var(--white);
  }

  .faqs-section .categories-nav__item:before {
    display: none;
    height: 56px;
  }

  .faqs-section__wrapper {
    display: block;
  }

  .faqs-list {
    margin-top: 32px;
    padding: 56px 40px;
  }

  .favorites-list {
    padding-top: 32px;
  }

  .favorites-list .product-list {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .favorites-list .product-item__top {
    margin-top: 20px;
  }

  .follow-us__wrapper {
    padding-left: 20px;
  }

  .guarantee {
    /* padding: 56px 0 0 0; */
    margin-left: 0;
  }

  .guarantee__text {
    width: 50%;
    padding-bottom: 80px;
  }

  .guarantee__desc {
    padding-right: 20px;
  }

  .guarantee .guarantee__title {
    padding-right: 20px;
  }

  .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 2vw;
  }

  .guarantee.guarantee--black .guarantee__text {
    width: 50%;
  }

  .home-page .guarantee__wrapper {
    /* padding-bottom: 56px; */
    padding-bottom: 72px;
  }

  .header-cabinet {
    height: 56px;
  }

  .header-cabinet__wrapper {
    justify-content: flex-end;
  }

  .header-cabinet__logo {
    width: 90px;
    left: 20px;
    transform: unset;
  }

  .header-cabinet__info {
    display: none;
  }

  .main-header {
    height: 56px;
  }

  .main-header__logo {
    width: 90px;
    left: 70px;
    transform: unset;
  }

  .main-header .menu__list {
    display: none;
  }

  .main-header .menu__container {
    justify-content: flex-start;
    padding-top: 0;
    padding-left: 0;
  }

  .main-header .menu__container-top .section-title {
    padding-top: 56px;
    padding-left: 40px;
  }

  .main-header .menu--active .menu__container .icon {
    display: flex;
    z-index: 999;
  }

  .main-header .icon {
    grid-gap: 0;
    gap: 0;
  }

  .main-header .icon > div img {
    width: 48px;
    height: 48px;
  }

  .main-header .icon__glob {
    display: none;
  }

  .main-header .icon__search {
    display: none;
  }

  .main-header .menu__container {
    min-width: 100vw;
    font-size: 20px;
  }

  .main-header .menu__container ul .sub-menu {
    grid-gap: 16px;
    gap: 16px;
  }

  .main-header .menu__container ul .sub-menu__head {
    display: none;
  }

  .main-header .menu__container ul .sub-menu__item {
    line-height: 2;
    font-size: 16px;
  }

  .main-header .menu__container ul li.has-sub-menu:hover,
  .main-header .menu__container ul li.has-sub-menu.active {
    /* background-color: var(--black); */
    background-image: url("../../../img/gradient/nois.png"), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20%, at 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100%, at 30%, #40544A, transparent);
    background-image: url("../../../img/gradient/nois.png"), linear-gradient(to top right, #3F5349, transparent), linear-gradient(to bottom right, #5A7668, transparent), linear-gradient(to top left, #567061, transparent), linear-gradient(to bottom left, #536B5C, transparent), radial-gradient(50% 100% ellipse at center, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, #40544A, transparent), radial-gradient(180% 50% ellipse at 20% 100%, rgba(0, 0, 0, 0.16), transparent), radial-gradient(100% 60% ellipse at 100% 30%, #40544A, transparent);
    background-color: #506655;
    background-blend-mode: darken;
  }

  .main-header .menu__container ul li:hover,
  .main-header .menu__container ul li.active {
    color: #CBBD9A;
    color: var(--brown);
  }

  .main-header .menu__container ul li:hover .sub-menu,
  .main-header .menu__container ul li.active .sub-menu {
    padding: 16px 40px 27px;
    max-height: 100%;
  }

  .main-header .menu__container ul li .sub-menu {
    /*padding: 16px 40px 27px;*/
    padding: 0;
    position: relative;
    width: calc(100% + 40px);
    left: -40px;
    max-width: unset;
    max-height: 0;
  }

  .main-header .menu__container ul li .sub-menu li:hover,
  .main-header .menu__container ul li .sub-menu li.active {
    color: unset;
  }

  .main-header .menu__container .categories__item {
    padding-left: 40px;
  }

  .main-header .menu__container .pages {
    grid-gap: 9px;
    gap: 9px;
    margin-top: 33px;
  }

  .main-header .menu__container .pages__item {
    padding-left: 40px;
    padding-top: 15px;
  }

  .main-header .social {
    padding-top: 75px;
    padding-left: 40px;
  }

  .hero {
    overflow: hidden;
  }

  .hero::before {
    width: 220%;
  }

  .hero__content {
    padding: 16px 0 40px;
  }

  .hero__title {
    font-size: 76px;
    /* font-size: 110px; */
    /* line-height: 1.12; */
    text-align: left;
    margin-bottom: 40px;
  }

  .hero__text {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }

  .hero__bg-pattern {
    width: 75vw;
    height: 75vw;
    left: 50%;
    top: 40%;
  }

  .lab-results {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .lab-results__wrapper {
    margin-left: 20px;
    padding-right: 20px;
  }

  .lab-results__bg-pattern {
    bottom: -50px;
  }

  .lab-results__content {
    padding: 56px 8.48% 104px 8.48%;
  }

  .how-it-work {
    padding-left: 20px;
    margin-top: -80px;
  }

  .how-it-work__row {
    flex-direction: column;
    border-bottom: none;
  }

  .how-it-work__column {
    width: 100%;
    min-width: 100%;
    padding: 15px;
    border-bottom: 1px solid #E0E0E0;
  }

  .how-it-work__column:first-child {
    width: 100%;
    min-width: 100%;
    border-bottom: none;
    background-color: #F4F4F4;
    background-color: var(--bg-light);
    text-align: center;
  }

  .loyalty-progress__wrapper {
    margin-bottom: 0;
    padding: 40px 88px;
  }

  .main-categories {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }

  .main-categories:before {
    content: '';
    display: block;
    width: 100%;
    height: 126px;
    background: #ffffff;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .main-categories__wrapper.wrapper {
    padding-right: 0;
  }

  .main-hero .swiper-pagination {
    left: 40px;
  }

  .main-hero__content-wrapper {
    padding: 56px 40px;
  }

  .main-hero__title {
    /* font-size: 60px; */
    width: 70%;
  }

  .main-hero__desc,
  .main-hero__content-wrapper p {
    font-size: 20px;
  }

  .main-hero__swiper-nav {
    right: 40px;
  }

  .more-information {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .more-information__slider {
    margin-left: -20px;
    width: calc(100% + 20px);
  }

  .more-information__slider .categories-slider__item {
    display: flex;
    align-items: flex-end;
    height: 100%;
  }

  .more-information__slider.categories-slider .categories-nav__list {
    display: flex;
    flex-wrap: wrap;
  }

  .more-information__slider.categories-slider .categories-nav__item-text {
    white-space: nowrap;
  }

  .more-information__slider .categories-nav__item:before {
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: var(--white);
    box-shadow: none;
    left: 0;
    filter: unset;
    transform: translateY(-50%);
  }

  .my-orders {
    padding: 32px 0 8px;
    box-shadow: none;
  }

  .order-summary .cart-total__price {
    padding-top: 40px;
  }

  .order-summary__top {
    padding: 96px 24px 40px;
  }

  .cart-total__checkbox {
    /* padding: 48px 24px 32px 24px; */
    padding: 48px 24px 0 24px;
  }

  .partners {
    padding: 32px 0 56px;
  }

  .partners__swiper {
    padding-bottom: 32px;
  }

  .payment-edit {
    padding: 32px 0 8px;
  }

  .points__inner {
    padding: 32px 0 8px;
  }

  .product-item {
    border-top: 1px solid #E0E0E0;
    border-top: 1px solid var(--border-color);
  }

  .product-item__container {
    padding: 42px 24px 50px;
  }

  .product-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }

  .product-page-hero {
    min-height: 0;
    height: auto;
    padding-bottom: 0;
  }

  .product-page-hero .hero__bg-pattern {
    display: block;
    height: 75vw;
    width: 75vw;
    top: 20%;
  }

  .product-hero-title {
    font-size: 30px;
  }

  .product-hero {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
  }

  .product-hero .advantage__list {
    margin: 0;
    flex-direction: row;
    align-items: center;
  }

  .product-hero .advantage__list--left {
    margin-top: 105px;
    margin-bottom: 30px;
  }

  .product-hero__info {
    margin-top: 0;
  }

  .product-hero__add {
    margin-top: 0;
  }

  .product-hero__description {
    margin: 24px 0 43px;
  }

  .product-gallery {
    height: 100%;
    position: relative;
    margin-bottom: 90px;
  }

  .product-gallery__main-img {
    width: 100%;
    position: relative;
    /*top: -56px;*/
    transform: translateY(0);
  }

  .product-gallery__other-imgs--desk {
    display: none;
  }

  .product-gallery__other-imgs--mob {
    display: flex;
    justify-content: center;
    /*margin-top: -40px;*/
    margin-top: 10px;
  }

  .questions-block__wrapper {
    /* margin-right: 20px; */
    margin-right: 0;
    padding-right: 20px;
    padding-left: 20px;
  }

  .quick-add-popup .popup__wrapper {
    max-height: 100%;
  }

  .quick-add {
    border: 1px solid #E0E0E0;
    border: 1px solid var(--border-color);
    padding: 88px 32px 40px;
  }

  .quiz-main__column {
    margin-top: 76px;
  }

  .reviews {
    /* padding: 0; */
    padding-bottom: 0;
  }

  .reviews__wrapper {
    padding-left: 20px;
  }

  .rewards-hero.hero .hero__title {
    margin-top: 40px;
  }

  .search-block {
    height: 48px;
  }

  .search-block__input {
    width: calc(100% - 10px * 2);
    top: 70px;
    left: 10px;
  }

  .search-block__input input {
    width: 100%;
  }

  .shipping-and-returns-hero.hero .hero__title {
    margin-top: 40px;
  }

  .story-about__wrapper {
    /* margin-left: 20px;
    padding-right: 20px; */
    margin-left: 0;
    padding-right: 0;
  }

  .story-about__content {
    padding: 56px 8.48% 104px 8.48%;
  }

  .story-hero.hero .hero__title {
    margin-top: 40px;
  }

  .subscribe-about__wrapper {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .subscribe-about__content {
    padding: 64px 8.48%;
  }

  .subscribe-hero.hero .hero__title {
    margin-top: 40px;
  }

  .subscription-payment {
    padding: 32px 0 8px;
    box-shadow: none;
  }

  .subscription {
    padding: 32px 0 8px;
    box-shadow: none;
  }

  .thank__row {
    position: relative;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .thank__row > div {
    width: 100%;
  }

  .thank__col {
    max-width: 100%;
    padding: 0;
  }

  .thank__image {
    flex-direction: column;
    align-items: flex-end;
  }

  .thank__image img {
    width: calc(100% - 20px);
    height: auto;
    min-height: unset;
  }

  .tracking {
    box-shadow: none;
    margin-top: 32px;
  }

  .trust__wrapper.wrapper {
    display: block;
    padding: 0;
  }

  .trust__title {
    padding: 64px 20px 56px;
  }

  .trust__list {
    padding: 0 0 40px;
    grid-gap: 0 40px;
  }

  .trust__list:before,
  .trust__list:after {
    display: none;
  }

  .trust__item {
    padding: 40px 20px;
    border-top: 1px solid #E0E0E0;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 992px) {
  .advantage__list {
    justify-content: center;
    margin: 0;
    padding: 32px 0;
  }

  .article-author__column {
    padding: 32px 40px;
  }

  .author-biography {
    margin-top: 0;
    padding-left: 0;
  }

  .author-biography__container {
    flex-direction: column;
    padding: 80px 0 50px 0;
  }

  .author-biography__text {
    padding: 0 20px;
  }

  .author-hero.hero .hero__content {
    flex-direction: column-reverse;
    padding-top: 0;
    grid-gap: 0;
    gap: 0;
    padding: 0;
  }

  .author-hero.hero .hero__img {
    width: 100%;
    margin-top: 0;
    bottom: unset;
  }

  .best-people {
    padding-bottom: 50px;
  }

  .best-people__list {
    display: block;
  }

  .best-people__item {
    margin-bottom: 80px;
  }

  .best-people__photo {
    justify-self: end;
  }

  .cart-product {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px 22px;
  }

  .cart-product:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
    border-bottom: 1px solid var(--border-color);
  }

  .cart-page {
    flex-direction: column;
    align-items: flex-end;
  }

  .cart-total {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    min-width: unset;
  }

  .cart-total__earn {
    padding: 24px 16px;
    background: #ffffff;
    background: var(--primary-color);
  }

  .cart-total__middle {
    background: #ffffff;
    background: var(--primary-color);
  }

  .cart-total .loyalty {
    border-top: 2px solid #F0F0F0;
  }

  .cart-total .loyalty__input input {
    background-color: #F0F0F0;
  }

  .cart-total .coupon {
    background: #F0F0F0;
  }

  .cart-total__price {
    flex-grow: 0;
    padding: 24px 20px 45px;
  }

  .cart-total__discount {
    margin-bottom: 24px;
  }

  .cart-total .btn-green {
    margin-top: 16px;
  }

  .catalog-hero.hero .hero__img {
    display: none;
  }

  .catalog-hero.hero .hero__title {
    width: 100%;
  }

  .catalog-hero.hero .hero__link-btn {
    padding-top: 36px;
    padding-bottom: 25px;
  }

  .categories-block__list {
    grid-template-columns: 1fr;
  }

  .cbdpedia {
    /* padding: 64px 0 30px; */
    padding: 64px 0 0;
  }

  .cbdpedia::before {
    height: 147px;
    left: 0;
  }

  .cbdpedia__row {
    flex-direction: column;
  }

  .cbdpedia__column:first-child {
    width: 100%;
    /* max-width: 100%; */
    /* padding-right: 0; */
    padding-bottom: 120px;
  }

  .cbdpedia__column {
    width: 100%;
  }

  .cbdpedia__pagination.swiper-pagination {
    position: absolute;
    /* bottom: 50%; */
    bottom: 474px;
    justify-content: center;
  }

  .cbdpedia__slide::before {
    height: 147px;
  }

  .cbdpedia__image {
    display: flex;
    justify-content: flex-end;
  }

  .cbdpedia__image-wrap {
    width: calc(100% - 25px);
    height: 416px;
  }

  .cbdpedia-news {
    padding-left: 0;
  }

  .cbdpedia-news__bg {
    width: 50%;
  }

  .cbdpedia-news__container {
    flex-direction: column;
    /* padding: 168px 20px 64px 20px; */
    padding: 15px 20px 32px 20px;
  }

  .cbdpedia-news__container > div {
    width: 100%;
  }

  .cbdpedia-news__text {
    margin: 10px 0 40px;
  }

  .cbdpedia-news .section-title {
    margin-bottom: 24px;
  }

  .certificate-item {
    padding: 48px 20px;
  }

  .certificate-item__img {
    width: 96px;
    height: 96px;
  }

  .certificate-item__text {
    padding-top: 2px;
  }

  .certificate-item__name {
    font-size: 18px;
    line-height: 1.4;
  }

  .checkout-group {
    padding-left: 0;
  }

  .checkout-main {
    width: 100%;
  }

  .checkout-main__row {
    padding: 40px 0;
  }

  .checkout-main__btns {
    padding-top: 16px;
  }

  .checkout-form__content {
    display: block;
  }

  .checkout-form__content .order-summary {
    margin-top: 20px;
  }

  .contact-us__form-top {
    flex-direction: column;
  }

  .contact-us__form-top .form__column {
    width: 100%;
  }

  .earn-for-friends__row {
    flex-direction: column;
  }

  .earn-for-friends__image {
    width: 100%;
    max-width: 100%;
  }

  .earn-for-friends__column {
    width: 100%;
    padding: 60px;
  }

  .error-block {
    padding-top: 160px;
  }

  .favorites-list .product-item__wishlist {
    top: -310px;
  }

  .footer__row.reserve {
    grid-gap: 24px;
    gap: 24px;
  }

  .footer__contacts {
    margin-top: 30px;
    align-items: flex-start;
  }

  .footer__contacts .contact {
    align-items: flex-start;
  }

  .guarantee__wrapper {
    /* padding: 60px 0 110px; */
    min-height: auto;
  }

  .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }

  .hero {
    min-height: 450px;
  }

  .hero__title {
    /* font-size: 90px; */
    font-size: 64px;
  }

  .form__column--half {
    width: 100%;
  }

  .lab-results__content {
    padding: 56px 20px 56px 20px;
  }

  .loyalty-program__row {
    flex-direction: column;
  }

  .loyalty-program .section-title {
    position: relative;
    top: unset;
  }

  .loyalty-program__column {
    width: 100%;
    padding: 0;
  }

  .loyalty-program__image {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
  }

  .loyalty-program__image-wrap {
    width: calc(100% - 25px);
    bottom: calc(70px - 13px);
    height: 270px;
  }

  .loyalty-program__image img {
    height: 420px;
  }

  .loyalty-program__text {
    padding-top: 0;
  }

  .how-it-work__mark {
    margin-left: 10px;
    margin-top: 5%;
    transform: translate(0);
  }

  .how-it-work__container {
    flex-direction: column;
    padding: 185px 0 50px 0;
  }

  .how-it-work__table {
    padding: 0 20px;
  }

  .loyalty-progress__wrapper {
    padding: 24px 32px 36px;
  }

  .more-information .section-title {
    margin-bottom: 32px;
  }

  .order-item {
    max-height: 128px;
  }

  .order-item.order-item--open {
    max-height: 100%;
  }

  .order-item__wrap {
    padding: 24px 0;
  }

  .order-item__pay {
    padding: 25px 16px 17px;
  }

  .order-summary .cart-total__price {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .order-summary__top {
    padding: 24px 20px 0 20px;
    border: none;
  }

  .order-summary__title {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.68);
  }

  .cart-total__checkbox {
    border: none;
    padding: 0 20px 24px;
  }

  .cart-total__checkbox .custom-checkbox {
    margin-bottom: 16px;
  }

  .payment-system-logo.desk {
    display: block;
  }

  .payment-system-logo.mob {
    display: none;
  }

  .product-comments__form-top {
    flex-direction: column;
    grid-gap: 40px;
    gap: 40px;
  }

  .product-comments__form-top .form__column {
    width: 100%;
  }

  .product-info-block__nav::-webkit-scrollbar {
    display: none;
  }

  .product-item__top {
    height: 270px;
  }

  .product-hero .custom-radio__text-desc {
    font-size: 20px;
  }

  .questions-block__wrapper {
    /* margin-right: 0; */
    margin-bottom: 64px;
  }

  .questions-block__btn-title {
    font-size: 20px;
  }

  .questions-block__show-all .btn-link {
    font-size: 18px;
  }

  .quick-add-popup .cart-product {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 48px 0 22px;
  }

  .quick-add-popup .cart-product__remove {
    top: 16px;
    right: 16px;
  }

  .quick-add {
    padding: 80px 24px 40px;
  }

  .quiz-main {
    padding-bottom: 34px;
  }

  .quiz-main__row {
    flex-direction: column;
    max-height: 100%;
    align-items: center;
  }

  .quiz-main__row::before {
    content: '';
    width: 100%;
    height: 100px;
    background-color: #F4F4F4;
    background-color: var(--bg-light);
    position: absolute;
    bottom: 0;
    z-index: -1;
  }

  .quiz-main__column {
    width: 100%;
  }

  .quiz-main-img {
    max-width: 710px;
    width: 100%;
    margin-right: 0;
  }

  .quiz-main__content {
    margin-top: 50px;
    max-width: 710px;
  }

  .related-products {
    margin-top: 0;
    padding: 40px 0 0;
  }

  .related-products__row {
    flex-direction: column;
  }

  .related-products__about {
    width: 100vw;
    left: -20px;
    position: relative;
    padding: 0 20px;
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
    border-bottom: 1px solid var(--border-color);
  }

  .related-products__about .section-title {
    margin-bottom: 37px;
    padding-right: 100px;
  }

  .related-products__swiper {
    width: 100%;
  }

  .related-products__swiper article {
    height: 480px;
    padding: 0 0 150px;
  }

  .related-products__swiper article.swiper-slide-active {
    border-right: none;
  }

  .related-products__pagination-btns {
    margin-bottom: 44px;
  }

  .related-products__pagination-btns.desktop {
    display: none;
  }

  .related-products__pagination-dots.swiper-pagination.mob {
    display: flex;
    padding: 60px 0 42px;
  }

  .story-about {
    padding: 0;
  }

  .story-about__content {
    /* padding: 56px 20px 340px 20px; */
    padding: 56px 20px 64px 20px;
  }

  .story-cbdpedia.cbdpedia {
    padding: 0 0 64px;
  }

  .story-cbdpedia .cbdpedia__image {
    margin-bottom: 48px;
    margin-top: -309px;
  }

  .story-cbdpedia .cbdpedia__row {
    flex-direction: column-reverse;
  }

  .payment-item {
    padding: 24px 0 31px;
  }

  .payment-item__container {
    padding: 32px 16px 0;
  }

  .payment-item__box {
    margin-bottom: 32px;
  }

  .order-item__more-menu {
    right: 15px;
  }

  .tracking {
    padding: 24px 0;
  }

  .tracking__details {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-title,
  .guarantee__title,
  .cbdpedia__title {
    font-size: 38px;
    line-height: 1.26;
  }

  .accordion__body {
    padding-right: 0;
  }

  .accordion--open .accordion__body {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .account-edit {
    padding: 26px 16px 24px;
  }

  .account-edit__body {
    grid-gap: 16px;
    gap: 16px;
  }

  .account-edit__top {
    margin-bottom: 24px;
  }

  .account-edit__action--desk {
    display: none;
  }

  .account-edit__action--mob {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 32px;
    grid-gap: 24px;
    gap: 24px;
  }

  .account-edit__action--mob .custom-field__submit {
    width: auto;
  }

  .account-hero.hero .hero__title {
    margin-top: 25px;
  }

  .account-info .categories-nav__list {
    padding: 4px 16px;
  }

  .account-info__wrapper {
    padding: 0;
  }

  .account-block {
    padding: 26px 16px 24px;
  }

  .account-block__key {
    width: 165px;
  }

  .account-block__value {
    width: calc(100% - 165px);
  }

  .address {
    margin-top: 24px;
  }

  .address-item {
    width: 100%;
    padding: 16px 16px 20px 16px;
    margin-right: 16px;
    margin-bottom: 16px;
  }

  .address-item__text {
    padding: 12px 0 25px;
  }

  .article-author {
    padding: 16px 0 8px;
  }

  .article-author__row {
    flex-direction: column;
  }

  .article-author__image {
    width: 100%;
    max-width: 100%;
  }

  .article-author__image .social {
    bottom: 20px;
    left: 20px;
  }

  .article-author__column {
    width: 100%;
    padding: 32px 20px;
  }

  .article-author__column .article-author__text {
    margin-bottom: 24px;
  }

  .article-section {
    padding: 0;
  }

  .article-section__wrapper.wrapper {
    padding: 0;
  }

  .article-content {
    padding: 64px 20px;
  }

  .article-hero.categories-item .categories-item__title {
    font-size: 45px;
  }

  .article-hero.categories-item .categories-item__info {
    margin-bottom: 32px;
  }

  .article-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-biography {
    padding-bottom: 16px;
  }

  .author-hero.hero .hero__text {
    width: 100%;
    margin-top: 20px;
  }

  .best-reasons {
    padding-bottom: 56px;
  }

  .best-reasons__list {
    grid-gap: 16px;
  }

  .text-line {
    height: 90px;
    font-size: 90px;
  }

  .best-bodies {
    margin-bottom: 70px;
  }

  .best-bodies__wrapper {
    flex-direction: column;
    align-items: center;
    grid-gap: 0;
    gap: 0;
  }

  .best-bodies__list {
    width: 100%;
    max-width: 500px;
  }

  .best-container .guarantee__wrapper {
    padding-top: 43px;
    padding-bottom: 89px;
  }

  .best-container .guarantee__img {
    width: calc(100% - 40px);
    margin-right: 20px;
  }

  .best-hero__product {
    padding-top: 21px;
  }

  .best-hero__advantage {
    /* padding: 22px 0 40px; */
    padding: 65px 0 40px;
  }

  .best-hero__advantage .advantage__list {
    grid-gap: 36px 14px;
  }

  .best-hero__advantage .advantage__item .advantage__img {
    width: 72px;
    height: 72px;
  }

  .best-hero__advantage .advantage__item .advantage__text {
    font-size: 14px;
  }

  .best-hero__title {
    font-size: 54px;
    margin-bottom: 58px;
    padding: 0;
  }

  .best-order__title {
    font-size: 54px;
  }

  .text-line.text-line--people {
    transform: translateX(-955px);
  }

  .text-line.text-line--people span:first-child {
    -webkit-animation: fly-text-sm-people 30s infinite 0s linear;
    animation: fly-text-sm-people 30s infinite 0s linear;
  }

  .text-line.text-line--people span:nth-child(2) {
    -webkit-animation: fly-text-sm-people 30s infinite 15s linear;
    animation: fly-text-sm-people 30s infinite 15s linear;
  }

  .text-line.text-line--people {
    line-height: 104px;
  }

  .best-people {
    padding-top: 27px;
    padding-bottom: 24px;
  }

  .best-people__item {
    margin-bottom: 50px;
  }

  .cart-product__delivery-wrapper {
    width: 100%;
    border-radius: 4px;
  }

  .cart-product__delivery-wrapper.subscription-set-duration:after {
    display: none;
  }

  .my-account-page .cart-product__delivery {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .my-account-page .cart-product__delivery-wrapper {
    padding: 9px 15px;
  }

  .catalog-controls {
    padding: 32px 0;
  }

  .catalog-hero.hero .hero__text {
    width: 100%;
  }

  .catalog-list {
    margin-bottom: 40px;
  }

  .categories-item__text {
    padding: 40px 24px;
  }

  .categories-item__info {
    font-size: 14px;
    margin-top: 24px;
  }

  .categories-item__info span:not(:first-child):before {
    width: 9px;
    height: 9px;
  }

  .categories-nav__list {
    grid-gap: 0;
    gap: 0;
  }

  .categories-nav__list::-webkit-scrollbar {
    display: none;
  }

  .categories-nav__item {
    padding: 12px 16px;
  }

  .categories-slider .categories-nav__list {
    padding: 0 15px;
  }

  .categories-slider .categories-nav__item:not(.current) {
    font-size: 14px;
  }

  .categories-slider__wrapper {
    width: 100%;
    margin: 0;
  }

  .categories-slider__swiper {
    height: 568px;
  }

  .categories-slider__link {
    position: static;
  }

  .categories-slider__item-text {
    position: static;
    margin: 20px auto 0;
  }

  .categories-slider__item-img {
    position: static;
    width: auto;
    height: auto;
    max-height: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .cbdpedia {
    /* padding: 40px 0 20px; */
    padding: 40px 0 0;
  }

  .cbdpedia__image-wrap {
    margin-right: 0;
  }

  .certificate-item__head {
    grid-gap: 16px;
  }

  .certificate-catalog {
    margin-bottom: 40px;
  }

  .contact-us-page {
    margin: 0 0 4px;
    padding-top: 76px;
    background-color: #ffffff;
    background-color: var(--primary-color);
  }

  .contact-us__wrapper {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }

  .contact-us__left {
    padding: 48px 0 0;
  }

  .contact-us__right {
    margin: 0;
    padding: 48px 32px;
    max-width: 100%;
    grid-gap: 48px;
    gap: 48px;
  }

  .contact-us__text {
    padding: 16px 0 32px;
  }

  .contact-us__form [type="submit"] {
    margin: 16px 0 40px;
  }

  .contact-us .contact-us__right .social .social__item.buy-btn {
    width: 48px;
    height: 48px;
  }

  .contact-us .contact-us__right .social {
    margin-top: 16px;
    margin-bottom: 0;
    grid-gap: 24px;
    gap: 24px;
  }

  .crew {
    padding: 56px 0;
  }

  .crew .section-title {
    margin-bottom: 32px;
  }

  .crew-list {
    grid-gap: 20px;
    margin-bottom: 56px;
  }

  .crew-list__text {
    padding: 20px;
  }

  .custom-field__info {
    margin-bottom: 8px;
  }

  .default-page {
    margin: 76px 0 4px;
  }

  .default-page .article-content {
    margin-left: -20px;
    margin-right: -20px;
  }

  .earn-for-friends {
    padding: 16px 0 8px;
  }

  .earn-for-friends__column {
    padding: 32px 20px;
  }

  .earn-for-friends__column .earn-for-friends__text {
    margin-bottom: 24px;
  }

  .earning-easy {
    padding: 0;
  }

  .earning-easy__wrapper {
    padding: 64px 20px;
  }

  .earning-easy__wrapper .section-title {
    margin-bottom: 24px;
  }

  .error-block {
    flex-wrap: wrap;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .error-block__img {
    position: static;
  }

  .error-block__img img {
    position: static;
    width: 100%;
  }

  .error-block__text {
    padding-bottom: 40px;
    padding-left: 50px;
  }

  .error-block__title {
    font-size: 45px;
  }

  .faqs-hero.hero .hero__title {
    margin-top: 25px;
  }

  .faqs-section .categories-nav__list {
    padding: 4px 16px;
  }

  .faqs-section__wrapper {
    padding: 0;
  }

  .faqs-list {
    padding: 40px 20px;
  }

  .favorites-list {
    margin-bottom: 12px;
  }

  .follow-us__wrapper {
    padding-left: 0;
  }

  .footer-best {
    padding: 25px 0;
  }

  .footer-best__logo {
    width: 111px;
    margin-bottom: 10px;
  }

  .footer {
    padding: 35px 0 32px;
  }

  .footer__row.reserve {
    margin: 32px 0;
  }

  .footer__row.menu {
    flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
  }

  .footer hr {
    margin: 25px 0 32px;
  }

  .footer hr.mob {
    display: block;
    margin: 32px 0;
  }

  .footer .lang > span.desc {
    display: none;
  }

  .footer .lang > span.mob {
    font-size: 16px;
    display: inline;
  }

  .footer .f-menu__head {
    margin-bottom: 0;
  }

  .footer .f-menu__head::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    display: block;
    height: 12px;
    width: 12px;
    transform: rotate(-45deg);
    border-bottom: 2px solid #506655;
    border-bottom: 2px solid var(--green);
    border-left: 2px solid #506655;
    border-left: 2px solid var(--green);
    transition: .3s;
  }

  .footer .f-menu ul {
    height: 100%;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
  }

  .footer .f-menu ul li:first-child {
    margin-top: 10px;
  }

  .footer__contacts .contact {
    grid-gap: 16px;
    gap: 16px;
  }

  .footer__contacts .social {
    grid-gap: 24px;
    gap: 24px;
  }

  .footer .bottom-info__text {
    grid-gap: 14px;
    gap: 14px;
    text-align: justify;
  }

  .footer .bottom-info {
    padding: 24px 16px;
  }

  .general-text h1,
  .general-text h2,
  .general-text h3,
  .general-text h4,
  .general-text h5,
  .general-text h6 {
    margin: 32px 0 24px;
  }

  .guarantee {
    padding: 0;
  }

  .guarantee__wrapper {
    height: auto;
    padding: 32px 0 72px;
  }

  .guarantee__slide {
    flex-direction: column;
  }

  .guarantee__img {
    /* width: 100%;
      height: 470px;
      padding-top: 0; */
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .guarantee__text {
    width: 100%;
    /* padding-left: 0;
      padding-right: 15px;
      margin-top: 13px; */
    /* padding: 50px 20px 0; */
    padding: 32px 20px 48px;
    box-sizing: border-box;
  }

  .guarantee__text .section-title,
  .guarantee__text .guarantee__title {
    max-width: 100%;
  }

  .guarantee__desc {
    max-width: 100%;
    padding-right: 0;
  }

  .guarantee .guarantee__title {
    padding-right: 0;
  }

  .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 50%;
    transform: translateX(-50%);
  }

  .guarantee.guarantee--black .guarantee__wrapper {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .guarantee.guarantee--black .guarantee__img {
    width: 100%;
    margin-left: 0;
    padding-top: 73%;
  }

  .guarantee.guarantee--black .guarantee__text {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .home-page .guarantee__wrapper {
    padding-top: 32px;
  }

  .home-page .guarantee__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }

  .header-best {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .header-best__logo {
    width: 118px;
  }

  .header-best .btn-brown {
    /* width: 165px; */
    height: 56px;
    padding: 0 23px;
  }

  .main-header .menu__container-top .section-title {
    font-size: 32px;
    padding-top: 25px;
    font-weight: 600;
    padding-left: 15px;
  }

  .main-header .icon__bag-counter {
    margin-left: -5px;
  }

  .main-header .menu__container .categories__item {
    line-height: 1.2;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .main-header .menu__container .pages__item {
    line-height: 1.6;
    padding-left: 15px;
  }

  .main-header .social {
    padding-left: 15px;
  }

  .hero {
    min-height: 400px;
  }

  .hero__content {
    padding: 16px 0 24px;
  }

  .hero__title {
    /* font-size: 80px; */
    /* font-size: 70px; */
    margin-bottom: 24px;
  }

  .lab-results__wrapper {
    margin-left: 0;
    padding-right: 0;
  }

  .lab-results__bg-pattern {
    bottom: -70px;
    right: auto;
    left: -98px;
  }

  .login {
    padding-top: 76px;
    padding-bottom: 0;
  }

  .login__patterns .login__pattern-left {
    display: none;
  }

  .login__patterns .login__pattern-right {
    min-width: 290px;
  }

  .login__content {
    padding: 40px 40px 128px;
  }

  .login-page-wrapper .login__content,
  .password-reset .login__content {
    padding: 40px 40px 128px;
  }

  .loyalty-program {
    padding: 40px 0;
  }

  .loyalty-program__bg {
    padding: 40px 0;
  }

  .loyalty-program .section-title {
    margin-bottom: 24px;
  }

  .how-it-work {
    padding-left: 0;
    margin-top: -10px;
  }

  .how-it-work__mark {
    margin-left: 20px;
  }

  .loyalty-progress__top {
    flex-direction: column;
    grid-gap: 4px;
    gap: 4px;
    align-items: center;
    margin-bottom: 10px;
  }

  .loyalty-progress__head {
    font-size: 20px;
  }

  .loyalty-progress__lines {
    flex-direction: column;
  }

  .loyalty-progress__line {
    width: 100%;
  }

  .main-categories {
    /* margin-top: -30px; */
  }

  .main-categories:before {
    height: 96px;
  }

  .main-categories__slider .categories-nav__item-text {
    white-space: nowrap;
  }

  .main-hero__title {
    font-size: 50px;
    width: 80%;
  }

  .more-information {
    padding-top: 56px;
  }

  .more-information__wrapper:before {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    background: #ffffff;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .more-information__slider .categories-slider__wrapper {
    margin-bottom: 0;
  }

  .more-information__slider .categories-slider__swiper {
    height: 568px;
  }

  .more-information__slider .categories-slider__item {
    /* padding: 150px 10px 40px 10px;
			height: 100%; */
    box-sizing: border-box;
  }

  .more-information__slider .categories-slider__item-img {
    position: absolute;
    /* z-index: -1; */
    max-height: 100%;
  }

  .more-information__slider .categories-slider__item-text {
    padding: 15px;
    flex-grow: 1;
  }

  .more-information__slider .categories-slider__item-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .more-information__slider .categories-nav {
    padding: 0;
  }

  .order-item__head {
    flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
  }

  .order-item__head-right,
  .order-item__head-left {
    width: 100%;
    max-width: 100%;
  }

  .order-item__details-wrap {
    /* flex-direction: column; */
    grid-template-columns: none;
    grid-gap: 32px;
    gap: 32px;
    padding: 40px 16px 32px;
  }

  .order-item__products {
    padding: 32px 0;
  }

  .my-orders .product .product__top,
  .subscription .product .product__top {
    display: none;
  }

  .my-orders .product .product__top,
  .my-orders .product .product__item,
  .subscription .product .product__top,
  .subscription .product .product__item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 16px;
    gap: 16px;
  }

  .my-orders .product .product__list,
  .subscription .product .product__list {
    grid-gap: 32px;
    gap: 32px;
  }

  .my-orders .product .product__right,
  .subscription .product .product__right {
    width: 100%;
    max-width: 400px;
  }

  .my-orders .product .product__right div:first-child,
  .subscription .product .product__right div:first-child {
    text-align: left;
  }

  .my-orders .product .product__right div:last-child,
  .subscription .product .product__right div:last-child {
    text-align: right;
  }

  .my-orders .product .product__name,
  .subscription .product .product__name {
    max-width: 100%;
  }

  .pagination {
    padding: 32px 0;
  }

  .partners {
    padding: 24px 0 56px;
  }

  .partners__swiper {
    padding-bottom: 24px;
  }

  .points__container {
    padding: 34px 16px 32px;
  }

  .points__head {
    margin-bottom: 0;
  }

  .point-item {
    height: 104px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    grid-gap: 8px;
    gap: 8px;
  }

  .point-item__right {
    max-width: 100%;
  }

  .points__pagination.pagination {
    padding: 24px 0 0;
  }

  .referral-head {
    margin-bottom: 24px;
  }

  .points-blocks {
    grid-gap: 24px;
    gap: 24px;
    margin-bottom: 0;
  }

  .points-block__link .copy__tooltip {
    right: -17px;
    top: 45px;
  }

  .points-block__link .copy__tooltip::before {
    left: 50%;
    top: -5px;
    transform: translateX(-50%) rotate(45deg);
  }

  .points__text strong {
    margin-top: 16px;
  }

  .points__details {
    grid-gap: 25px 0;
    gap: 25px 0;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .product-comments {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .product-comments .wrapper {
    padding: 0;
  }

  .product-comments__row {
    padding: 64px 20px;
  }

  .product-comments__list {
    margin-bottom: 64px;
  }

  .product-info-block {
    padding: 0;
  }

  .product-info-block__content {
    padding: 0;
  }

  .product-info-block__nav {
    padding: 32px 0;
    margin-bottom: 0;
  }

  .product-info-block__list {
    grid-gap: 0;
    gap: 0;
  }

  .product-info-block__container {
    padding: 0;
  }

  .product-info-block__container-item p:last-child {
    margin-bottom: 0;
  }

  .product-item__img,
  .product-item__img-hover {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .product-item__title {
    font-size: 18px;
    line-height: 1.4;
  }

  .product-item__price {
    font-size: 18px;
  }

  .buy-btn {
    background: #CBBD9A;
    background: var(--brown);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  .buy-btn:before {
    display: none;
  }

  .product-gallery__slide img {
    height: 90%;
  }

  .questions-block__wrapper {
    margin-bottom: 8px;
    padding: 0;
  }

  .questions-block__bg-pattern {
    display: none;
  }

  .questions-block__content {
    padding: 64px 20px;
  }

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

  .questions-block__show-all {
    padding-top: 0;
  }

  .quiz-main__column {
    margin-top: 0;
    width: 100%;
  }

  .reviews__wrapper {
    padding-left: 15px;
  }

  .rewards-hero.hero .hero__title {
    margin-top: 25px;
  }

  .shipping-and-returns-hero.hero .hero__title {
    margin-top: 25px;
  }

  .shipping-and-returns__wrapper {
    margin: 0 0 16px;
    padding: 8px 20px 16px;
  }

  .shipping-and-returns.wrapper {
    padding: 0;
  }

  .shipping-and-returns__content h3 {
    margin: 24px 0 16px;
  }

  .social__item:before {
    display: none;
  }

  .story-about__wrapper {
    margin-left: 0;
    padding-right: 0;
  }

  .story-hero.hero .hero__title {
    margin-top: 25px;
  }

  .subscribe-page .questions-block {
    margin-bottom: 16px;
  }

  .subscribe-about {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .subscribe-about .section-title {
    margin-bottom: 32px;
  }

  .subscribe-about .subscribe-about__text-bottom {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .subscribe-about__wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .subscribe-about__content {
    padding: 48px 20px;
  }

  .subscribe-hero.hero .hero__title {
    margin-top: 25px;
  }

  .order-item__more {
    top: -43px;
    right: 0;
  }

  .subscription .order-item__details-wrap {
    grid-gap: 32px;
    gap: 32px;
  }

  .subscription .order-item__details {
    grid-gap: 8px;
    gap: 8px;
  }

  .subscription .order-item__state {
    position: absolute;
    right: 20px;
  }

  .point {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    height: 145px;
    overflow: hidden;
  }

  .point__left {
    grid-template-columns: 60px 80px 1fr;
    grid-template-rows: auto auto 1fr;
    grid-gap: 8px;
    gap: 8px;
    align-items: start;
  }

  .point__track {
    grid-column: 1/2;
    grid-row: 1/4;
  }

  .point__track::before {
    left: 20px;
  }

  .point__track::after {
    left: 20px;
    top: 33%;
    width: 24px;
    height: 24px;
  }

  .point__status {
    grid-column: 2/4;
    grid-row: 2/3;
  }

  .point:nth-child(even) .point__track::before {
    top: 0;
  }

  .point__img--mob {
    display: flex;
    align-items: center;
    height: 32px;
  }

  .point__right {
    display: none;
  }

  .trust__title {
    padding: 56px 20px 45px;
  }

  .trust__list {
    grid-gap: 0;
    padding-bottom: 24px;
  }

  .trust__item-header {
    grid-template-columns: 70px minmax(auto, 202px);
  }

  .trust__item-elblem {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .article-hero.categories-item {
    padding-top: 80px;
    padding-bottom: 34px;
  }

  .article-hero.categories-item .categories-item__text {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .favorites-list .product-item__wishlist {
    top: -280px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 34px;
  }

  .pagination__list {
    grid-gap: 4px 22px;
    gap: 4px 22px;
  }

  .privacy-popup {
    width: auto;
    left: 16px;
    padding: 32px 16px 38px;
  }

  .privacy-popup__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .privacy-popup__text {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .privacy-popup__btns {
    flex-direction: column;
  }

  .privacy-popup__btns .btn-link {
    margin-bottom: 32px;
  }

  .product-item__top {
    height: 240px;
  }

  .product-item__bottom-info {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-item__price-old {
    color: #9EA6A8;
    font-size: 16px;
  }

  .product-item__buy {
    width: 100%;
    margin-top: 16px;
    padding-bottom: 0;
  }

  .buy-btn {
    width: 100%;
    height: 40px;
    border-radius: 40px;
  }

  .product-page-hero {
    padding-top: 80px;
    padding-bottom: 34px;
  }

  .product-page-hero .hero__bg-pattern {
    margin-top: 80px;
    margin-bottom: 34px;
  }

  .quick-add {
    position: fixed;
    z-index: 1200;
    padding: 56px 16px 35px;
    border: none;
    overflow: auto;
  }

  .quick-add__close {
    right: 18px;
    top: 20px;
  }

  .quick-add__img-wrapper {
    display: block;
    margin-bottom: 8px;
  }

  .quick-add__img {
    display: block;
  }

  .quiz-main__column {
    padding-bottom: 34px;
  }

  .related-products__row.related--fixed {
    padding-top: 630px;
  }

  .related-products__row.related--fixed .quick-add {
    left: -20px;
    width: calc(100% + 40px);
  }

  .related-products__row .quick-add {
    transform: none;
    top: -100%;
    transition: top .3s ease;
  }

  .related-products__row .quick-add.quick-add--open {
    top: 0;
  }
}

@media (max-width: 640px) {
  .btn-green {
    max-width: 100%;
    width: 100%;
  }

  .btn-brown {
    max-width: 100%;
    width: 100%;
  }

  .account-hero.hero .hero__title {
    margin-top: 0;
  }

  .account-block__title--desk {
    display: none;
  }

  .account-block__title--mob {
    display: flex;
  }

  .advantage__item {
    width: 100px;
    grid-gap: 8px;
    gap: 8px;
  }

  .age-popup .popup__wrapper {
    max-height: 90%;
  }

  .age-popup .age-popup__title {
    font-size: 30px;
    margin-bottom: 56px;
  }

  .age-popup .age-popup__btns {
    flex-direction: column;
  }

  .age-popup .age-popup__confirm {
    width: 100%;
  }

  .age-popup .age-popup__exit {
    width: 100%;
    margin-bottom: 0;
  }

  .author-biography__bg {
    display: none;
  }

  .author-hero.hero .hero__bg-pattern {
    right: unset;
    left: -34vw;
    top: 48vw;
    height: 185vw;
    width: 185vw;
  }

  .author-hero.hero .product-hero-title {
    font-size: 38px;
    line-height: 1.26;
    padding-bottom: 4px;
  }

  .best-bodies {
    padding: 52px 0 59px;
    margin-bottom: 48px;
  }

  .best-bodies__item {
    grid-gap: 20px;
    gap: 20px;
  }

  .best-bodies__item1 {
    margin: 0 0 28px;
  }

  .best-bodies__item2 {
    margin: 0 0 28px;
  }

  .best-bodies__item3 {
    margin: 0 0 28px;
  }

  .best-bodies__item4 {
    margin: 0 0 28px;
  }

  .best-bodies__item5 {
    margin: 0 0 28px;
  }

  .best-bodies__item6 {
    margin: 0 0 28px;
  }

  .best-bodies__img {
    width: 64px;
    height: 64px;
  }

  .best-bodies__img img {
    transform: scale(0.62);
  }

  .best-bodies__title {
    font-size: 20px;
  }

  .best-hero__advantage {
    padding: 45px 0 40px;
  }

  .best-hero__title {
    font-size: 50px;
  }

  .best-product {
    width: 305px;
  }

  .best-product__coin {
    width: 75px;
    height: 75px;
    top: 46px;
    left: 38px;
  }

  .best-product__coin-price {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .best-product__coin-text {
    font-size: 9px;
  }

  .best-order__product .best-product__coin {
    top: 46px;
    left: 38px;
  }

  .best-order__text {
    padding: 40px 0;
  }

  .best-order__item {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .best-order__right {
    /* padding: 48px 0; */
    padding: 12px 0 48px;
  }

  .best-order__title {
    font-size: 50px;
  }

  .best-order__form .btn-brown {
    width: 100%;
  }

  .cartpopup_delivery-time {
    padding: 5px 20px 0;
  }

  .catalog-hero.hero .hero__bg-pattern {
    right: unset;
    left: -34vw;
    top: 48vw;
    height: 185vw;
    width: 185vw;
  }

  .cbdpedia-news__bg {
    width: 100%;
  }

  .certificate-item:nth-child(odd):before {
    display: none;
  }

  .certificate-item__head {
    align-items: center;
  }

  .certificate-item__img {
    width: 128px;
    height: 128px;
  }

  .certificate-item__text {
    padding-top: 0;
  }

  .certificate-item__name {
    font-size: 20px;
    line-height: 1.6;
  }

  .certificate-list {
    grid-template-columns: 1fr;
  }

  .checkout-main__row:not(:last-child) .checkout-main__title {
    width: 100%;
  }

  .checkout-main__header {
    flex-wrap: wrap;
    grid-gap: 24px;
  }

  .checkout-main__btns .btn-green {
    padding: 0 15px;
  }

  .crew-popup .popup__wrapper {
    max-height: 90%;
  }

  .crew-popup .crew-popup__title {
    font-size: 30px;
    margin-bottom: 56px;
  }

  .crew-popup .crew-popup__btns {
    flex-direction: column;
  }

  .crew-popup .crew-popup__close {
    width: 100%;
  }

  .crew-list {
    grid-template-columns: 1fr;
  }

  .crew-list__text {
    padding: 24px;
  }

  .error-block__text {
    padding-left: 20px;
  }

  .faqs-hero.hero .hero__title {
    margin-top: 0;
  }

  .follow-us__head {
    grid-gap: 16px;
    gap: 16px;
  }

  .follow-us__wrapper img {
    width: 100%;
    -o-object-position: center;
    object-position: center;
  }

  .footer .documents__item {
    width: calc(50% - 24px /2);
  }

  .guarantee__img {
    height: auto;
    padding-top: 73%;
  }

  .main-header .menu__container ul li:hover .sub-menu,
  .main-header .menu__container ul li.active .sub-menu {
    padding: 16px 15px 27px;
  }

  .main-header .menu__container ul li .sub-menu {
    width: calc(100% + 15px);
    left: -15px;
  }

  .main-header .menu__container .categories {
    margin-top: 10px;
    grid-gap: 2px;
    gap: 2px;
  }

  .hero {
    min-height: 320px;
  }

  .hero__title {
    /* font-size: 60px; */
    font-size: 50px;
  }

  .hero__text-inner {
    max-width: 100%;
  }

  .hero__bg-pattern {
    width: 95vw;
    height: 95vw;
    left: 35%;
    top: 52%;
  }

  .how-it-work__bg {
    display: none;
  }

  .how-it-work__text {
    margin: 10px 0 40px;
  }

  .cart-total__checkbox {
    font-size: 14px;
  }

  .payment-system-logo.desk {
    display: none;
  }

  .payment-system-logo.mob {
    display: block;
  }

  .credit-cart-form {
    grid-gap: 8px;
    gap: 8px;
    max-width: 343px;
    padding: 16px;
  }

  .credit-cart-form__bottom {
    margin-top: 8px;
  }

  .points__details {
    grid-template-columns: 1fr 1fr;
  }

  .points__detail {
    grid-gap: 8px;
    gap: 8px;
    font-size: 14px;
  }

  .points__detail img {
    width: 40px;
    height: 40px;
  }

  .points__detail-subtitle {
    margin-top: 0;
  }

  .popup__close {
    right: 19px;
    top: 19px;
  }

  .popup__lang {
    right: 29px;
  }

  .product-info-block__container-item .warning {
    align-items: flex-start;
  }

  .product-info-block__container-item.table .table__column {
    grid-gap: 0;
    gap: 0;
  }

  .product-info-block__container-item.table .table__column:last-child .table__row {
    border-bottom: 1px solid rgba(54, 54, 54, 0.12);
  }

  .product-info-block__container-item.table .table__column:last-child .table__row:last-child {
    border: none;
  }

  .product-info-block__container-item.table .table__row {
    width: 100%;
  }

  .product-item__container {
    padding: 42px 15px 50px;
  }

  .product-item__top {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }

  .product-page-hero .hero__bg-pattern {
    height: 95vw;
    width: 95vw;
  }

  .product-hero .hero__bg {
    top: 0;
  }

  .product-hero .advantage__list {
    grid-gap: 16px;
    gap: 16px;
  }

  .product-hero .advantage__item .advantage__img {
    width: 40px;
    height: 40px;
  }

  .product-hero__subscribe {
    margin-bottom: 65px;
  }

  .product-hero__add-to-cart {
    flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
  }

  .product-hero__add-to-cart .counter {
    justify-content: space-between;
    background: #ffffff;
    background: var(--primary-color);
    border-radius: 60px;
  }

  .product-hero__add-to-cart .counter__btn--plus {
    width: 65px;
    border-radius: 0 60px 60px 0;
  }

  .product-hero__add-to-cart .counter__btn--plus::after {
    left: 23%;
    top: 49%;
  }

  .product-hero__add-to-cart .addToCart__btn {
    border-radius: 60px;
    width: 100%;
  }

  .product-hero__modifications {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .product-hero__modifications .custom-select__wrapper {
    width: 100%;
  }

  .popup__content.product-gallery {
    padding: 0;
  }

  .product-gallery__top {
    width: 100%;
  }

  .product-gallery__pagination-btns {
    display: none;
  }

  .product-gallery__pagination-dots.swiper-pagination-bullets {
    display: flex;
  }

  .product-gallery__thumbs {
    max-width: calc((56px + 6px) * 3);
    padding: 24px 0;
    margin: auto;
  }

  .product-gallery__thumbs .product-gallery__thumb {
    width: 56px!important;
    height: 56px;
  }

  .product-reviews {
    padding: 40px 0 0;
  }

  .product-reviews__wrapper {
    margin-top: 0;
    padding: 32px 0;
  }

  .quick-add-popup .popup__title {
    padding: 26px 20px 18px;
  }

  .quick-add-popup .popup__content {
    padding: 0 20px;
    max-height: calc(100% - 77px - 148px);
  }

  .quick-add-popup .popup__bottom {
    flex-direction: column-reverse;
    /* padding: 32px 20px; */
    padding: 36px 20px 28px;
    grid-gap: 20px;
    gap: 20px;
  }

  .quiz-main__row {
    grid-gap: 40px;
    gap: 40px;
  }

  .quiz-main-img {
    padding-left: 20px;
  }

  .quiz .question__variations {
    width: 100%;
  }

  .quiz .answer__label {
    width: 100%;
  }

  .quiz .quiz__steps {
    flex-direction: column-reverse;
    align-items: center;
    grid-gap: 24px;
    gap: 24px;
  }

  .rewards-hero.hero .hero__title {
    margin-top: 0;
  }

  .shipping-and-returns-hero.hero .hero__title {
    margin-top: 0;
  }

  .swiper-nav {
    transform: scale(0.75);
    transform-origin: right bottom;
  }

  .story-hero.hero .hero__title {
    margin-top: 0;
  }

  .subscribe-hero.hero .hero__title {
    margin-top: 0;
  }

  .credit-cart {
    max-width: 343px;
    padding: 16px 22px 20px 18px;
  }

  .credit-cart > img {
    width: 56px;
  }

  .credit-cart__number {
    grid-gap: 18px;
    gap: 18px;
    font-size: 16px;
    padding: 15px 0 44px;
  }

  .credit-cart__segment:not(.show-number) {
    grid-gap: 5px;
    gap: 5px;
  }

  .credit-cart__segment:not(.show-number) span {
    width: 10px;
    height: 10px;
  }

  .credit-cart__bottom {
    margin-top: 5px;
  }

  .thank__wrapper {
    padding-top: 96px;
  }

  .trust__list {
    display: block;
    padding: 0;
  }
}

@media (max-width:500px) {
  .iti__country-list {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .plus-btn {
    width: 48px;
    height: 48px;
  }

  .account-info .categories-nav__list {
    width: 100%;
  }

  .account-info__wrapper {
    padding: 0;
  }

  .address-item {
    margin-right: 0;
  }

  .advantage__list {
    justify-content: space-between;
  }

  .advantage__img {
    width: 40px;
    height: 40px;
  }

  .advantage__img img {
    height: 20px;
  }

  .advantage__img.europe img {
    height: 26px;
    width: 26px;
  }

  .advantage__img.satisfaction img {
    height: 20px;
    width: 20px;
    right: -1px;
  }

  .advantage__img.gluten img {
    height: 26px;
    width: 26px;
  }

  .advantage__img.moneyback img {
    height: 21px;
    width: 19px;
  }

  .advantage__img.natural img {
    height: 20px;
  }

  .advantage__text {
    font-size: 14px;
    line-height: 1.15;
  }

  .article-author__column .article-author__name {
    font-size: 24px;
  }

  .article-content {
    padding: 40px 15px;
  }

  .article-hero.categories-item .categories-item__text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .article-hero.categories-item:before {
    height: 428px;
  }

  .article-hero.categories-item .categories-item__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .article-hero.categories-item .categories-item__info span:last-child {
    width: auto;
    padding-left: 21px;
  }

  .article-hero.categories-item .categories-item__info span:last-child:before {
    display: block;
  }

  .article-hero.categories-item .social {
    padding-bottom: 40px;
  }

  .author-biography__container {
    padding: 64px 0 50px 0;
  }

  .author-biography__text {
    padding: 0 15px;
  }

  .author-hero.hero .product-hero-title {
    font-size: 32px;
  }

  .author-list {
    padding: 40px 0 15px;
  }

  .author-list .section-title {
    margin-bottom: 32px;
  }

  .text-line {
    height: 70px;
    font-size: 70px;
  }

  .best-bodies__title {
    font-size: 16px;
  }

  .best-bodies__text-list {
    font-size: 14px;
  }

  .best-container .guarantee__img {
    width: calc(100% - 30px);
    margin-right: 15px;
  }

  .best-hero__title {
    font-size: 44px;
  }

  .best-order__title {
    font-size: 44px;
    margin-bottom: 32px;
  }

  .best-people__item {
    grid-gap: 16px;
    margin-bottom: 32px;
  }

  .best-people__cite {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 12px;
  }

  .best-people__author {
    font-size: 14px;
  }

  .blog-list {
    padding: 40px 0 15px;
  }

  .blog-list .categories-nav__list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }

  .cart-product {
    justify-content: space-between;
    padding: 60px 15px 22px;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }

  .cart-product__price {
    min-width: 0;
  }

  .cart-product__delivery {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }

  .cart-product__delivery-wrapper {
    width: 100%;
    padding: 9px 15px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cart-product__delivery-wrapper .cart-product__delivery-text:first-of-type {
    width: 100%;
  }

  .cart-product__delivery-duration {
    width: 100%;
  }

  .subscription-error {
    padding: 0 15px;
  }

  .subscription-set {
    padding: 8px 15px 0;
  }

  .my-account-page .cart-product__delivery {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .my-account-page .subscription-set {
    padding-left: 16px;
  }

  .cartpopup_delivery-time {
    padding: 4px 15px 0;
  }

  .cart-total .loyalty__input {
    max-width: 200px;
  }

  .cart-total__price {
    padding: 24px 15px 45px;
  }

  .catalog-filters__close {
    left: 15px;
  }

  .catalog-filters__bottom {
    padding: 20px 15px 30px;
  }

  .catalog-filters__row {
    padding: 85px 15px 20px;
  }

  .catalog-hero.hero .hero__link-btn .btn-brown {
    width: 100%;
    max-width: 100%;
  }

  .catalog-list {
    margin-bottom: 4px;
  }

  .catalog-list .pagination {
    padding-left: 15px;
    padding-right: 15px;
  }

  .categories-block {
    padding-top: 56px;
  }

  .categories-block__list {
    grid-gap: 15px;
    margin-bottom: 15px;
  }

  .categories-item__text {
    padding: 24px;
  }

  .categories-item__info {
    grid-gap: 8px 10px;
    gap: 8px 10px;
  }

  .categories-item__info span:not(:first-child) {
    padding-left: 21px;
  }

  .categories-item__info span:last-child {
    width: 100%;
    padding-left: 0;
  }

  .categories-item__info span:last-child:before {
    display: none;
  }

  .categories-slider .categories-nav__list {
    padding: 0 8px;
  }

  .categories-slider .categories-nav__item {
    padding: 10px 13px;
  }

  .categories-slider__item {
    padding: 100px 10px 40px 10px;
  }

  .categories-slider__item-text {
    font-size: 14px;
    max-width: 100%;
    padding: 0 15px;
  }

  .certificate-hero.hero {
    padding-bottom: 48px;
  }

  .certificate-hero.hero .btn-brown {
    width: 100%;
    max-width: 100%;
  }

  .certificate-item {
    padding: 32px 15px 16px;
  }

  .certificate-item__head {
    margin-bottom: 16px;
  }

  .certificate-item__img {
    width: 96px;
    height: 96px;
  }

  .certificate-item__text {
    grid-gap: 8px 0;
    gap: 8px 0;
  }

  .certificate-item__name {
    font-size: 16px;
    line-height: 1.2;
  }

  .certificate-item__tag {
    font-size: 14px;
  }

  .certificate-ingredients__item {
    margin-bottom: 8px;
  }

  .certificate-catalog {
    margin-bottom: 4px;
  }

  .certificate-catalog .pagination {
    padding-left: 15px;
    padding-right: 15px;
  }

  .certificate-list__wrapper.wrapper {
    padding: 0;
  }

  .custom-field__group .custom-field.custom-field--state {
    width: 100%;
  }

  .custom-field__group .custom-field.custom-field--postcode {
    width: 100%;
  }

  .checkout-main__title {
    font-size: 20px;
  }

  .crew {
    padding: 48px 0;
  }

  .crew .section-title {
    margin-bottom: 24px;
  }

  .crew-list {
    grid-gap: 16px;
    margin-bottom: 40px;
  }

  .crew-list__text {
    padding: 20px;
  }

  .custom-field .password__icon {
    right: 8px;
  }

  .custom-field__label {
    margin-bottom: 8px;
  }

  .custom-field__input {
    padding: 6px 15px;
  }

  .custom-field__input[type="password"] {
    padding-right: 40px;
  }

  .custom-field__group {
    flex-direction: column;
  }

  .custom-field__group > .custom-field {
    width: 100%;
  }

  .default-page .article-content {
    margin-left: -15px;
    margin-right: -15px;
  }

  .earning-easy__wrapper {
    padding: 32px 15px;
  }

  .error-block {
    padding-top: 96px;
  }

  .error-block__text {
    padding: 0 15px 40px;
  }

  .error-block__title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .error-block .text {
    margin-bottom: 32px;
  }

  .error-block .btn-brown {
    width: 100%;
    max-width: 100%;
  }

  .faqs-section {
    padding: 32px 0 16px;
  }

  .faqs-section .categories-nav__list {
    width: 100%;
  }

  .faqs-section__wrapper {
    padding: 0;
  }

  .faqs-list {
    padding: 32px 15px;
  }

  .favorites-list {
    margin-bottom: 0px;
  }

  .favorites-list .product-list {
    margin-bottom: 8px;
  }

  .favorites-list .product-item__wishlist {
    top: -230px;
  }

  .general-text h1 {
    font-size: 24px;
  }

  .general-text h2 {
    font-size: 22px;
  }

  .general-text h3 {
    font-size: 20px;
  }

  .general-text h4 {
    font-size: 18px;
  }

  .general-text h5 {
    font-size: 16px;
  }

  .general-text p {
    margin-bottom: 16px;
  }

  .general-text ul li,
  .general-text ol li {
    margin-bottom: 16px;
  }

  .general-text img {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .general-text blockquote {
    margin: 40px 0;
    padding: 25px 30px 25px 24px;
  }

  .general-text table {
    margin: 40px 0;
  }

  .general-text table td,
  .general-text table th {
    padding: 15px 5px;
  }

  .guarantee__wrapper {
    padding-top: 24px;
  }

  .guarantee__img {
    width: calc(100% - 15px);
    margin-left: 15px;
  }

  .guarantee__text {
    padding: 24px 15px 48px;
  }

  .guarantee.guarantee--black .guarantee__text {
    padding-top: 40px;
  }

  .home-page .guarantee__wrapper {
    padding-top: 24px;
  }

  .home-page .guarantee__text {
    padding-top: 24px;
  }

  .header-cabinet__logo {
    left: 15px;
  }

  .main-header__logo {
    left: 65px;
  }

  .main-header .menu__container-icons.icon .lang-wrap .lang--open ~ .lang-popup {
    right: unset;
    left: 0;
  }

  .main-header .icon__glob {
    position: unset;
  }

  .hero__content {
    padding: 16px 0;
  }

  .hero__title {
    /* font-size: 55px; */
    font-size: 45px;
  }

  .lab-results {
    padding-top: 16px;
    padding-bottom: 4px;
  }

  .lab-results .section-title {
    margin-bottom: 24px;
  }

  .lab-results__content {
    padding: 48px 15px 48px 15px;
  }

  .lang-wrap {
    position: unset;
  }

  .footer__row {
    position: relative;
  }

  .lang-popup {
    //position: fixed;
    //bottom: 0;
    //top: unset!important;
    left: -15px;
    right: unset;
    width: 100vw;
    min-height: 260px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 32px 16px;
    border-radius: 10px;
  }

  .lang-popup__country {
    margin: 30px 0;
  }

  .lang-popup__lang {
    /* padding: 20px 0 68px; */
    padding: 20px 0;
  }

  .lang-popup__btn {
    margin-top: 48px;
  }

  .login__container .section-title {
    margin-bottom: 16px;
  }

  .login__form {
    grid-gap: 16px;
    gap: 16px;
    margin: 40px auto 0;
  }

  .login__form .custom-field__submit {
    margin-top: 24px;
  }

  .login-links .back-link {
    margin: 24px 0 8px;
  }

  .login-links .back-link a {
    margin: 0;
    display: block;
  }

  .login-links p:nth-child(2) {
    margin: 32px 0 24px;
  }

  .login-with__btn {
    width: 100%;
    height: 48px;
    padding: 4px;
  }

  .login-with__btn.fb img {
    height: 29px;
    padding-left: 5px;
  }

  .login-with__btn.google img {
    width: 40px;
    height: 40px;
  }

  .login__content {
    padding: 40px 12px 110px;
  }

  .login__wrapper {
    padding: 0 4px 4px;
  }

  .login-page .section-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .login-page-wrapper .login__content,
  .password-reset .login__content {
    padding: 40px 12px 110px;
  }

  .loyalty-program__image-wrap {
    height: 140px;
  }

  .how-it-work {
    margin-top: -80px;
  }

  .how-it-work__mark {
    width: 100px;
    height: 100px;
    margin-left: 15px;
    margin-top: 50%;
    font-size: 14px;
    padding: 17px;
  }

  .how-it-work__container {
    padding: calc(306px + 4vw) 0 50px 0;
  }

  .how-it-work__table {
    padding: 0 15px;
  }

  .main-hero .swiper-pagination {
    bottom: 24px;
    left: 0;
    right: 0;
  }

  .main-hero__content-wrapper {
    justify-content: flex-end;
    padding: 88px 20px;
  }

  .main-hero__title {
    font-size: 40px;
    width: 100%;
  }

  .main-hero__link {
    margin-top: 0;
  }

  .more-information {
    padding-top: 40px;
  }

  .more-information__slider {
    margin-left: -15px;
    width: calc(100% + 15px);
  }

  .more-information__slider .categories-slider__img-wrap::after {
    top: auto;
    height: 422px;
  }

  .order-info {
    padding: 0 4px 0 16px;
  }

  .order-item__body-bottom {
    justify-content: space-between;
  }

  .order-summary__top {
    padding: 24px 15px 0 15px;
  }

  .cart-total__checkbox {
    padding: 0 15px 24px;
  }

  .pagination {
    padding: 24px 0;
  }

  .partners {
    padding: 16px 0 48px;
  }

  .partners__swiper {
    padding-bottom: 16px;
  }

  .points__detail {
    max-width: 156px;
  }

  .points__detail-title {
    line-height: 1.15;
  }

  .points__detail-subtitle {
    line-height: 1.15;
  }

  .product-comments__row {
    padding: 64px 15px;
  }

  .product-item__container {
    padding: 40px 10px 50px;
  }

  .product-item__top {
    height: 190px;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }

  .product-item__title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .product-hero .custom-radio__text {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product-hero .custom-radio__text:before {
    top: 7%;
    transform: unset;
  }

  .product-hero .custom-radio__text:after {
    top: 15%;
    transform: unset;
  }

  .product-gallery__main {
    height: calc(100% - 62px - 10px);
  }

  .questions-block__content {
    padding: 64px 15px;
    grid-gap: 24px;
    gap: 24px;
  }

  .quick-add-popup .popup__title {
    padding: 26px 15px 18px;
  }

  .quick-add-popup .popup__content {
    padding: 0 15px;
  }

  .quick-add-popup .popup__bottom {
    padding: 32px 15px;
  }

  .quiz-main-img {
    padding-left: 16px;
  }

  .quiz__progressbar {
    margin-bottom: 40px;
  }

  .quiz {
    padding-bottom: 60px;
  }

  .quiz .question__title {
    font-size: 20px;
  }

  .quiz .question__variations {
    padding: 48px 0 64px;
  }

  .rating__value {
    font-size: 14px;
    margin-left: 0;
  }

  .rating__wrapper > label {
    width: 15px;
    height: 15px;
    margin-right: 6px;
  }

  .rating__icon {
    width: 15px;
    height: 15px;
  }

  .related-articles {
    padding: 40px 0 8px;
  }

  .related-articles .section-title {
    margin-bottom: 32px;
  }

  .related-products__row.related--fixed {
    padding-top: 270px;
  }

  .related-products__row.related--fixed .related-products__swiper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .related-products__row.related--fixed .quick-add {
    left: -15px;
    width: calc(100% + 30px);
  }

  .related-products__about {
    left: -15px;
    padding: 0 15px;
  }

  .related-products__swiper article {
    height: 420px;
  }

  .related-products__swiper article .product-item__container {
    padding: 20px 10px 70px;
  }

  .shipping-and-returns__wrapper {
    padding: 8px 15px 16px;
  }

  .swiper-nav {
    display: none;
  }

  .swiper-pagination {
    grid-gap: 20px;
    gap: 20px;
  }

  .story-about .section-title {
    margin-bottom: 24px;
  }

  .story-about__content {
    /* padding: 48px 15px 340px 15px; */
    padding: 48px 15px 64px 15px;
  }

  .subscribe-about {
    padding-bottom: 8px;
  }

  .subscribe-about .section-title {
    margin-bottom: 24px;
  }

  .subscribe-about .subscribe-about__text-bottom {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .subscribe-about__content {
    padding: 32px 15px;
  }

  .thank__col {
    grid-gap: 16px;
    gap: 16px;
  }

  .thank__subtitle {
    margin-top: 40px;
  }

  .thank__text-top p {
    margin-top: 24px;
  }

  .thank__text-bottom {
    grid-gap: 24px;
    gap: 24px;
  }

  .thank__text-bottom a.btn-green {
    margin-top: 32px;
  }

  .thank__image img {
    width: calc(100% - 15px);
  }

  .tracking__wrapper {
    grid-gap: 32px;
    gap: 32px;
  }

  .tracking__info span.copy {
    margin-left: 5px;
  }

  .tracking__back {
    margin-right: 0;
  }

  .tracking__details {
    grid-gap: 20px;
    gap: 20px;
  }

  .tracking__details-left .copy__icon {
    width: 42px;
    height: 42px;
  }

  .tracking__value {
    padding: 0;
  }

  .tracking__copy {
    margin-left: 0;
  }

  .share__icon {
    width: 42px;
    height: 42px;
  }

  .tracking__body {
    margin-top: 32px;
  }

  .tracking__body .tracking__wrapper {
    grid-gap: 50px;
    gap: 50px;
  }

  .trust__title {
    padding: 48px 15px 25px;
  }

  .trust__item {
    padding: 40px 15px;
  }

  .trust__item-header {
    grid-template-columns: 56px minmax(auto, 202px);
  }

  .trust__item-elblem {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 410px) {
  .hero__title {
    /* font-size: 50px; */
    font-size: 40px;
  }
}

@media (max-width: 370px) {
  .categories-slider .categories-nav__list {
    padding: 0 4px;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 38px;
  }
}

@media (min-width: 320px) and (max-width: 350px) {
  .article-hero.categories-item .categories-item__title {
    font-size: 32px;
  }

  .cart-product__delivery-wrapper {
    font-size: 14px;
  }

  .cart-product__delivery-set {
    font-size: 14px;
  }

  .subscription-set {
    font-size: 14px;
  }

  .crew-list__text {
    padding: 16px;
  }

  .error-block__title {
    font-size: 32px;
  }

  .header-best .btn-brown {
    padding: 0 15px;
  }

  .pagination__list {
    grid-gap: 4px 16px;
    gap: 4px 16px;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  .favorites-list .product-item__wishlist {
    top: -340px;
  }

  .favorites-list .product-item__top {
    height: 300px;
  }

  .favorites-list .quick-add {
    padding: 84px 24px 40px;
  }

  .favorites-list .quick-add__title,
  .favorites-list .product-item__title {
    font-size: 18px;
  }

  .favorites-list .quick-add__close {
    right: 24px;
  }

  .favorites-list .custom-radio__text-price {
    font-size: 18px;
  }

  .favorites-list .custom-radio__text {
    font-size: 14px;
    margin-left: 26px;
  }

  .favorites-list .custom-radio__text:before {
    left: -26px;
  }

  .favorites-list .custom-radio__text:after {
    left: -22px;
  }

  .favorites-list .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 26px;
  }

  .favorites-list .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    right: 29px;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .product-gallery {
    height: 124%;
  }

  .product-gallery__main-img img {
    max-height: 450px;
  }

  .product-gallery__main-img--zoom img {
    max-height: 450px;
  }
}

@media (min-width: 993px) and (max-width: 1350px) {
  .quick-add-popup .cart-product__info {
    /* width: auto; */
    width: 50%;
  }

  .quick-add-popup .cart-product__right {
    width: 50%;
  }
}

@media (-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }

  .iti__flag {
    background-image: url(../img/flags@2x.png);
  }
}

@media all {
  .address-item--hide {
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .cart-product--hide {
    padding: 0!important;
  }

  .favorites-list .product-item--removed {
    min-width: 0;
    padding: 0!important;
  }

  .order-item--removed {
    padding: 0!important;
  }

  .product-info-block__container-item .warning img {
    margin: 0;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/img/flags/flags@2x.png");
  }
}

@media (max-height: 640px) {
  .quick-add__img-wrapper {
    height: 120px;
  }

  .quick-add__title {
    font-size: 18px;
  }
}