@charset "UTF-8";
/*!
Author: Klaudio Milanković
Author URI: https://itfamily.dev
!*/
/*

    @include breakpoint($from, $to, $and);
    You can find a list of breakpoints in the file abstracts/variables/_breakpoints.scss

    Usage:
    a) Min width example
        @include breakpoint(small) {
            color: red;
        }
    b) Range example
        @include breakpoint(small, large) {
            color: red;
        }
    c) Max width example
        @include breakpoint($to: large) {
            color: red;
        }
    d) Min-width with additional properties
        @include breakpoint(small, $and: 'orientation: portrait') {
            color: red;
        }
*/
/**
*
* Breakpoints
*
**/
/**
*
* Colors
*
**/
/**
*
* Font
*
**/
/**
*
* Grid
*
**/
/**
*
* Links
*
**/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-overflow-scrolling: touch;
}

/**
 * Remove default margin.
 */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #FFFF00;
  color: #000000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #C0C0C0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * Base
 */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
body.menu-open {
  overflow: hidden;
}

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

/**
 * Helpers
 */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-mobile {
  font-size: 1.4rem;
}
.text-italic {
  font-style: italic;
}

.font-thin {
  font-weight: 100;
}
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extra-bold {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 48px;
}

.ml-0 {
  margin-left: 0;
}
.ml-1 {
  margin-left: 8px;
}
.ml-2 {
  margin-left: 16px;
}
.ml-3 {
  margin-left: 24px;
}
.ml-4 {
  margin-left: 32px;
}

.mr-0 {
  margin-right: 0;
}
.mr-1 {
  margin-right: 8px;
}
.mr-2 {
  margin-right: 16px;
}
.mr-3 {
  margin-right: 24px;
}
.mr-4 {
  margin-right: 32px;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 8px;
}
.pt-2 {
  padding-top: 16px;
}
.pt-3 {
  padding-top: 24px;
}
.pt-4 {
  padding-top: 32px;
}
.pt-8 {
  padding-top: 64px;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.text-narrow {
  letter-spacing: -1px;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-contents {
  display: contents;
}

.shadow {
  box-shadow: 0px 15px 35px rgba(50, 50, 93, 0.1), 0px 5px 15px rgba(0, 0, 0, 0.07);
}

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

.image-arrow__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 100px;
  background: rgba(255, 255, 255, 0.33);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.image-arrow__right--left {
  right: unset;
  left: 0;
}
.image-arrow__right--left svg {
  transform: rotate(180deg);
}
.image-arrow__right:hover {
  background: rgba(255, 255, 255, 0.5);
}
.image-arrow__right svg {
  width: 8px;
  height: 12px;
  fill: white;
}

.text-12 {
  font-size: 1.2rem;
}

.text-10 {
  font-size: 1rem;
}

.discount {
  text-align: right;
  margin-bottom: 0;
  text-decoration-line: line-through;
}

.discount-yellow {
  font-size: 1.4rem;
  text-decoration: line-through;
  font-weight: 400;
  color: #979797;
  text-align: end;
}
@media (min-width: 1024px) {
  .discount-yellow {
    color: #e8e854;
    font-size: 1.6rem;
    margin-right: 10px;
    padding-top: 5px;
  }
}

.badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  z-index: 1;
}
.badges.title {
  position: unset;
}
@media (min-width: 1024px) {
  .badges.title {
    display: none;
  }
}
.badges.title .badges-discount {
  width: 20px;
  height: 20px;
}
.badges.title .badges-discount svg {
  width: 10px;
  height: 10px;
}
.badges.title .badges-prominent {
  width: 20px;
  height: 20px;
}
.badges.title .badges-prominent svg {
  width: 10px;
  height: 10px;
}
.badges span {
  margin-right: -10px;
}
.badges span:first-child {
  margin-right: unset;
}
.badges-discount {
  width: 20px;
  height: 20px;
  background: #e8e854;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (min-width: 640px) {
  .badges-discount {
    width: 48px;
    height: 48px;
  }
}
.badges-discount svg {
  width: 10px;
  height: 20px;
}
@media (min-width: 640px) {
  .badges-discount svg {
    width: 22px;
    height: 36px;
  }
}
.badges-prominent {
  width: 20px;
  height: 20px;
  background: #a3a367;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (min-width: 640px) {
  .badges-prominent {
    width: 48px;
    height: 48px;
  }
}
.badges-prominent svg {
  width: 10px;
  height: 10px;
}
@media (min-width: 640px) {
  .badges-prominent svg {
    width: 27px;
    height: 27px;
  }
}

.badge-label-type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #a3a367;
  color: white;
  z-index: 10;
  padding: 6px 12px;
  font-weight: bold;
  text-align: center;
  min-width: 120px;
}

body.blur {
  opacity: 0.5;
}

.loader {
  border: 16px solid #e8e854;
  border-top: 16px solid #a3a367;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.color-primary {
  color: #3a3a3a;
}

.background-primary {
  background-color: #3a3a3a;
}

.color-dark {
  color: #333333;
}

.background-dark {
  background-color: #333333;
}

.color-yellow {
  color: #e8e854;
}

.background-yellow {
  background-color: #e8e854;
}

.color-yellow-light {
  color: #fefeb2;
}

.background-yellow-light {
  background-color: #fefeb2;
}

.color-blue {
  color: #525f7f;
}

.background-blue {
  background-color: #525f7f;
}

.color-green {
  color: #a3a367;
}

.background-green {
  background-color: #a3a367;
}

.color-orange {
  color: #e89f71;
}

.background-orange {
  background-color: #e89f71;
}

.color-white {
  color: white;
}

.background-white {
  background-color: white;
}

.color-white-secondary {
  color: #f4f4f4;
}

.background-white-secondary {
  background-color: #f4f4f4;
}

.color-grey-100 {
  color: #fbfbff;
}

.background-grey-100 {
  background-color: #fbfbff;
}

.color-grey-200 {
  color: #f4f5f7;
}

.background-grey-200 {
  background-color: #f4f5f7;
}

.color-grey-300 {
  color: #d8d8d8;
}

.background-grey-300 {
  background-color: #d8d8d8;
}

.color-grey-400 {
  color: #616161;
}

.background-grey-400 {
  background-color: #616161;
}

.color-grey-500 {
  color: #9c9c9c;
}

.background-grey-500 {
  background-color: #9c9c9c;
}

.color-grey-600 {
  color: #858585;
}

.background-grey-600 {
  background-color: #858585;
}

.color-grey-700 {
  color: #b5b5b5;
}

.background-grey-700 {
  background-color: #b5b5b5;
}

.color-grey-800 {
  color: #adb5bd;
}

.background-grey-800 {
  background-color: #adb5bd;
}

.color-grey-900 {
  color: #979797;
}

.background-grey-900 {
  background-color: #979797;
}

.color-grey-secondary {
  color: #393939;
}

.background-grey-secondary {
  background-color: #393939;
}

.color-grey-third {
  color: #c6c6c5;
}

.background-grey-third {
  background-color: #c6c6c5;
}

.d-none {
  display: none !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.page-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3a3a3a;
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 3.6rem;
  }
}

.disabled-section {
  opacity: 0.5;
  pointer-events: none;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
}

p,
ul,
ol {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-weight: 800;
}

h1,
.h1 {
  font-size: 3.6rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 2.25rem;
  line-height: 1.2;
}

h4,
.h4 {
  font-size: 2rem;
  line-height: 1.2;
}

h5,
.h5 {
  font-size: 1.5rem;
  line-height: 1.2;
}

h6,
.h6 {
  font-size: 1.25rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  h1,
  .h1 {
    font-size: 5.2rem;
    line-height: 1.25;
  }
}
@media (min-width: 640px) {
  h2,
  .h2 {
    font-size: 3.8rem;
    line-height: 1.7;
  }
}
@media (min-width: 640px) {
  h3,
  .h3 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  h4,
  .h4 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  h5,
  .h5 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  h6,
  .h6 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
/*** Layout ***/
.wrapper {
  --wrapper-padding-inline: 16px;
  width: 100%;
  max-width: calc(1270px + var(--wrapper-padding-inline) * 2);
  margin: 0 auto;
  padding: 0px var(--wrapper-padding-inline);
}
@media (min-width: 640px) {
  .wrapper {
    --wrapper-padding-inline: 16px;
  }
}
.wrapper--full {
  max-width: none;
}
.wrapper--hd {
  max-width: 1920px;
}
.wrapper--big {
  max-width: 1800px;
}
.wrapper--medium {
  max-width: 1586px;
}
.wrapper--small {
  max-width: 1100px;
}
.wrapper--narrow {
  max-width: 900px;
}
.wrapper--form {
  padding: 0;
}
@media (min-width: 768px) {
  .wrapper--form {
    padding: 0px var(--wrapper-padding-inline);
  }
}
.wrapper--login {
  max-width: calc(836px + var(--wrapper-padding-inline) * 2);
  padding: 0px 5px;
}
@media (min-width: 640px) {
  .wrapper--login {
    padding: 0px 16px;
  }
}

.header {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 12px 16px;
  background: #1d1d1c;
  position: relative;
}
@media (min-width: 640px) {
  .header {
    height: 117px;
    padding: 22px 20px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__logo {
  flex-shrink: 0;
  width: 114px;
  height: 19px;
}
@media (min-width: 640px) {
  .header__logo {
    margin-right: 44px;
    width: 166px;
    height: 28px;
  }
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header .menu__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .currency-switcher {
  position: relative;
  padding: 0 8px;
  margin-right: 20px;
  cursor: pointer;
}
.header .currency-switcher__list {
  list-style-type: none;
  padding: 0;
  position: absolute;
  left: -1px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: #1d1d1c;
  right: -1px;
  padding: 2px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s ease-in-out;
}
.header .currency-switcher.active .currency-switcher__list {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.header .currency-switcher__value {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 2px;
}
.header .currency-switcher__value svg {
  width: 12px;
  height: 5px;
}
.header .currency-switcher__value p {
  margin: 0px;
}
.header .currency-switcher__item {
  padding: 3px;
  text-align: center;
}
.header .currency-switcher__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.header .currency-switcher__item:hover {
  text-decoration: underline;
}
.header__icons {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 30px auto;
}
@media (min-width: 440px) {
  .header__icons {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .header__icons {
    display: none;
  }
}
.header__icons svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.header__btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .header__btn {
    display: none;
  }
}
.header__btn-burger {
  width: 26px;
  height: 2px;
  background: white;
  transition: 0.3 all ease-in-out;
}
@media (min-width: 640px) {
  .header__btn-burger {
    width: 30px;
    height: 3px;
  }
}
.header__btn-burger::before, .header__btn-burger::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: white;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 640px) {
  .header__btn-burger::before, .header__btn-burger::after {
    width: 30px;
    height: 3px;
  }
}
.header__btn-burger::before {
  transform: translateY(-5px);
}
@media (min-width: 640px) {
  .header__btn-burger::before {
    transform: translateY(-8px);
  }
}
.header__btn-burger::after {
  transform: translateY(5px);
}
@media (min-width: 640px) {
  .header__btn-burger::after {
    transform: translateY(8px);
  }
}
.header__btn.open .header__btn-burger {
  width: unset;
}
.header__btn.open .header__btn-burger::before {
  transform: rotate(45deg);
}
.header__btn.open .header__btn-burger::after {
  transform: rotate(-45deg);
}
.header .menu {
  position: fixed;
  width: 100%;
  top: 54px;
  left: 0;
  bottom: 0;
  max-height: calc(100vh - 54px);
  overflow-y: scroll;
  background: white;
  padding: 18px;
  transform: translateX(-100%);
  flex-direction: column;
  z-index: 10001;
}
@media (min-width: 768px) {
  .header .menu {
    top: 117px;
    min-height: calc(100vh - 117px);
  }
}
@media (min-width: 1024px) {
  .header .menu {
    min-height: unset;
    position: unset;
    background: unset;
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding: unset;
    display: contents;
    flex-direction: row;
    align-items: center;
    width: unset;
  }
}
.header .menu.menu-active {
  transform: translateX(0);
}
.header .menu__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header .menu__nav {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
    gap: 37px;
    margin-right: 50px;
  }
}
.header .menu__nav svg {
  width: 17px;
  height: 17px;
  stroke: white;
  margin-left: 10px;
  stroke-width: 1.8;
}
.header .menu__grid {
  display: none;
  position: absolute;
  top: 100%;
  background: #3a3a3a;
  z-index: 9999;
  left: 0;
  grid-gap: 24px;
  grid-template-columns: repeat(7, 1fr);
  margin: auto;
  width: 100%;
  padding: 40px;
}
.header .menu__grid--display {
  display: grid;
}
.header .menu__section {
  list-style-type: none;
  padding-left: 32px;
}
.header .menu__section a:hover {
  opacity: 0.7;
}
.header .menu__main-cat {
  line-height: 2;
}
.header .menu__cat {
  font-size: 1.4rem;
  line-height: 1.8;
  list-style: circle;
  margin-left: 15px;
}
.header .menu__submenu {
  display: none;
  list-style-type: none;
  position: absolute;
  left: -15px;
  top: 34px;
  z-index: 11;
  font-size: 1.4rem;
}
.header .menu__item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: white;
  white-space: nowrap;
  cursor: pointer;
}
.header .menu__item::after {
  content: "";
  width: 100%;
  height: 10px;
  background: transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.header .menu__item a {
  color: white;
  white-space: nowrap;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .header .menu__item:hover .menu__submenu {
    display: block;
  }
}
.header .menu__item:hover .menu__submenu li a {
  display: block;
}
@media (min-width: 1024px) {
  .header .menu__item:hover .menu__submenu li a {
    background: #616161;
    padding: 10px 30px;
    position: relative;
    color: #f5f5f5;
    transition: 0.3s all ease-in-out;
  }
}
@media (min-width: 1024px) {
  .header .menu__item:hover .menu__submenu li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
  }
}
@media (min-width: 1024px) {
  .header .menu__item:hover .menu__submenu li a:hover {
    background: #a3a367;
  }
}
.header .menu__item--cat {
  position: unset;
}
.header .menu__item--cat svg {
  transition: 0.3s ease-out;
}
.header .menu__item--cat.active svg {
  transform: rotate(180deg);
}
.header .menu__search {
  position: relative;
}
@media (min-width: 1024px) {
  .header .menu__search {
    height: -moz-fit-content;
    height: fit-content;
    display: block;
  }
}
.header .menu__search input {
  padding: 10px 40px 10px 43px;
  font-size: 1.4rem;
  color: #616161;
  outline: none;
  height: 48px;
  width: 100%;
}
.header .menu__search input::-moz-placeholder {
  padding-left: 5px;
}
.header .menu__search input::placeholder {
  padding-left: 5px;
}
@media (min-width: 1024px) {
  .header .menu__search input {
    width: 50%;
  }
}
.header .menu__search button {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  padding: 0;
  align-items: center;
  width: 20px;
  height: 19px;
  background: transparent;
  border: 0;
}
.header .menu__search svg {
  width: 20px;
  height: 19px;
  stroke: #333333;
}
.header .menu__form {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .header .menu__form {
    margin-right: 30px;
    display: block;
  }
}
@media (min-width: 1024px) {
  .header .menu__form {
    margin-right: 0;
  }
}
.header .menu__buttons {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.header .menu__buttons a:first-child {
  white-space: nowrap;
}
@media (min-width: 440px) {
  .header .menu__buttons {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .header .menu__buttons {
    gap: 30px;
  }
}
.header .menu__mobile-menu {
  list-style-type: none;
  font-size: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2px;
  border-bottom: 1px solid #f2f2f2;
}
@media (min-width: 440px) {
  .header .menu__mobile-menu {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .header .menu__mobile-menu {
    grid-template-columns: repeat(6, 1fr);
  }
}
.header .menu__mobile-menu li:last-child {
  margin-bottom: 5px;
}
.header .menu__mobile-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 15px 0;
  border: 1px solid white;
  transition: 0.3s all ease-in-out;
}
.header .menu__mobile-menu a svg {
  width: 30px;
  height: 30px;
  transition: 0.3s all ease-in-out;
}
.header .menu__mobile-menu a:hover, .header .menu__mobile-menu a.active {
  border: 1px solid #d8d8d8;
  background: #fbfbff;
}
@media (min-width: 1024px) {
  .header .menu__mobile-menu {
    display: none;
  }
}
.header .menu__navigation {
  list-style-type: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .header .menu__navigation {
    display: none;
  }
}
.header .menu__navigation li {
  color: #131313;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.header .menu__navigation li svg {
  width: 30px;
  height: 20px;
  vertical-align: middle;
  padding-right: 10px;
}
.header .menu__navigation li p {
  margin-bottom: 0;
}
.header .menu__navigation li a {
  color: #131313;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s all ease-in-out;
  width: 100%;
  padding: 10px 0 10px 10px;
}
.header .menu__navigation li a:hover {
  background: #f4f5f7;
}
.header .menu__navigation-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: 0.3s all ease-in-out;
}
.header .menu__navigation-info.active .menu__navigation-info-svg {
  transform: rotate(180deg);
}
.header .menu__navigation-info-svg {
  width: 40px !important;
  height: 40px !important;
  padding: 10px;
  stroke: #747474;
  transition: 0.3s ease-in-out;
}
.header .menu__navigation-info:hover {
  background: #f4f5f7;
}
.header .menu__navigation-info-menu {
  list-style: none;
  padding-left: 20px;
  font-size: 1.3rem;
  display: none;
}
.header .menu__navigation-info-menu.active {
  display: block;
}
.header .menu__navigation-info-menu a {
  padding: 5px !important;
}
.header .menu__mobile-search {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .header .menu__mobile-search {
    display: none;
  }
}
.header__communication {
  width: 20px;
  height: 20px;
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .header__communication {
    display: block;
  }
}
.header__communication span {
  display: none;
}
.header__communication.has-message span {
  position: absolute;
  top: -7px;
  right: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ea4335;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__communication svg {
  width: 20px;
  height: 20px;
}
.header__chat {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__patrons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__patrons .count {
  color: white;
}
.header__user-box {
  position: relative;
}
.header__user.has-message img {
  border: 2px solid #e8e854;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header__user.has-message img {
    border: none;
    border-radius: unset;
  }
}
.header__user.has-message span {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e8e854;
  color: #393939;
  transform: translateY(-50%);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__user.has-message span {
    display: none;
  }
}
.header__user img {
  width: 33px;
  min-width: 33px;
  height: 33px;
  border-radius: 999px !important;
  outline: 3px solid #CCCC5F;
}
.header__user-menu {
  position: absolute;
  background: #fbfbff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  z-index: 1001;
  font-size: 1.4rem;
  right: 15px;
  top: 55px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header__user-menu {
    top: 65px;
    right: 15px;
    font-size: 1.6rem;
  }
}
.header__user-menu::before {
  content: "";
  position: absolute;
  transform: rotate(270deg);
  z-index: -10000;
  top: -5px;
  right: -5px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fbfbff;
}
@media (min-width: 768px) {
  .header__user-menu::before {
    top: -10px;
    right: -10px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fbfbff;
  }
}
.header__user-menu a {
  color: #3a3a3a;
  transition: 0.3s all ease-in-out;
  white-space: nowrap;
  border-bottom: 1px solid #d8d8d8;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
.header__user-menu a:last-child {
  border: 0;
}
.header__user-menu a:hover {
  color: #a3a367;
  background: #d8d8d8;
}
.header__user-menu.menu-active {
  opacity: 1;
  pointer-events: initial;
}
.header__banner {
  display: flex;
  justify-content: center;
  padding: 20px 18px 40px 18px;
  background: #3a3a3a;
}
@media (min-width: 768px) {
  .header__banner {
    background: linear-gradient(90deg, #3a3a3a 50%, rgba(163, 163, 103, 0.75) 50%);
  }
}
@media (min-width: 1024px) {
  .header__banner {
    padding: 40px 18px 60px 18px;
  }
}
@media (min-width: 1024px) {
  .header__banner {
    background: linear-gradient(90deg, #3a3a3a 75%, rgba(163, 163, 103, 0.75) 25%);
  }
}
.header__image img {
  max-width: 1270px;
}
.header__login {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 13px;
  background-color: #252114;
  color: white;
  border: 1px solid #333333;
  border-radius: 7px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  height: 25px;
  transition: background-color 0.2s ease;
}
.header__login .icon-left {
  width: 12px;
  height: 12px;
  margin-left: -6px;
}
.header__login:hover {
  background-color: rgb(50.2421052632, 44.8105263158, 27.1578947368);
}
@media (min-width: 640px) {
  .header__login {
    height: 45px;
    font-size: 16px;
    padding-inline: 24px;
    border-radius: 12px;
    gap: 15px;
  }
  .header__login .icon-left {
    width: 20px;
    height: 20px;
    margin-left: -6px;
  }
}

.header-swiper {
  background: #3a3a3a;
  overflow: hidden;
}
@media (min-width: 768px) {
  .header-swiper {
    background: linear-gradient(90deg, #3a3a3a 50%, rgba(163, 163, 103, 0.75) 50%);
  }
}
@media (min-width: 1024px) {
  .header-swiper {
    background: linear-gradient(90deg, #3a3a3a 75%, rgba(163, 163, 103, 0.75) 25%);
  }
}
.header-swiper .swiper {
  display: flex;
  flex-direction: column;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (min-width: 768px) {
  .header-swiper .swiper {
    display: block;
    max-width: 1920px;
    overflow: unset;
    margin-top: 150px;
    margin-left: unset;
    margin-right: unset;
  }
}
.header-swiper .swiper-wrapper {
  padding-top: 18px;
  padding-bottom: 13px;
}
@media (min-width: 768px) {
  .header-swiper .swiper-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-swiper .swiper-slide {
  position: relative;
  cursor: grab;
  width: 150px;
  height: 200px;
  background-color: #303030;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide {
    width: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.header-swiper .swiper-slide img {
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide img {
    height: unset;
  }
}
.header-swiper .swiper-slide-link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 5px 10px;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide-link {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(31px);
            backdrop-filter: blur(31px);
    max-width: 300px;
    min-width: 300px;
    bottom: 20px;
    left: unset;
    width: unset;
    transform: unset;
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .header-swiper .swiper-slide-link {
    padding: 24px;
    bottom: 40px;
    right: 40px;
  }
}
.header-swiper .swiper-slide-link svg {
  width: 10px;
  height: 8px;
  stroke: #a3a367;
  stroke-width: 2px;
  transition: 0.3s all ease-in-out;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide-link svg {
    width: 15px;
    height: 11px;
    stroke: #616161;
    margin-right: 0;
  }
}
.header-swiper .swiper-slide-link p {
  font-size: 1rem;
  color: white;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide-link p {
    font-size: 2.8rem;
    color: #3a3a3a;
    margin-bottom: 10px;
    line-height: 30px;
  }
}
.header-swiper .swiper-slide-link span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #a3a367;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide-link span {
    font-size: 2rem;
    color: #3a3a3a;
  }
}
.header-swiper .swiper-slide:hover .swiper-slide-link {
  background: #616161;
}
@media (min-width: 768px) {
  .header-swiper .swiper-slide:hover .swiper-slide-link {
    background: #fbfbff;
  }
}
.header-swiper .swiper-slide:hover .swiper-slide-link svg {
  transform: scale(1.5);
}
.header-swiper .swiper-button-prev, .header-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .header-swiper .swiper-button-prev, .header-swiper .swiper-button-next {
    background: #3a3a3a;
    top: -50px;
  }
}
.header-swiper .swiper-button-prev::after, .header-swiper .swiper-button-next::after {
  font-size: unset;
  color: white;
}
.header-swiper .swiper-button-prev:hover, .header-swiper .swiper-button-next:hover {
  background: #616161;
}
.header-swiper .swiper-button-prev {
  left: 10px;
}
@media (min-width: 768px) {
  .header-swiper .swiper-button-prev {
    left: unset;
    right: 85px;
  }
}
@media (min-width: 1024px) {
  .header-swiper .swiper-button-prev {
    right: 155px;
  }
}
.header-swiper .swiper-button-next {
  right: 10px;
}
@media (min-width: 768px) {
  .header-swiper .swiper-button-next {
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .header-swiper .swiper-button-next {
    right: 90px;
  }
}
.header-swiper .swiper-pagination {
  bottom: unset;
  top: -60px;
  height: 50px;
}
.header-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #d8d8d8;
  opacity: unset;
  margin: 0 10px !important;
  transition: 0.3s all ease-in-out;
}
.header-swiper .swiper-pagination-bullet-active {
  background: #e8e854;
  position: relative;
  margin: 0 18px !important;
  transition: 0.3s all ease-in-out;
}
.header-swiper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -9px;
  left: -9px;
  width: 27px;
  height: 27px;
  border: 1px solid #e8e854;
  border-radius: 50%;
  opacity: 0.7;
}
.header-swiper .swiper-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  order: -1;
  padding: 15px 20px;
  background: #f4f4f4;
}
@media (min-width: 768px) {
  .header-swiper .swiper-card {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header-swiper .swiper-card {
    background: rgba(255, 255, 255, 0.72);
    z-index: 10;
    position: absolute;
    top: -130px;
    padding: 30px;
    left: 10%;
    max-width: 500px;
    display: block;
  }
}
.header-swiper .swiper-card p {
  display: none;
}
@media (min-width: 768px) {
  .header-swiper .swiper-card p {
    font-size: 1.9rem;
    color: #898989;
    display: block;
  }
}
.header-swiper .swiper-card h1 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .header-swiper .swiper-card h1 {
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 5.2rem;
    margin-right: 0;
  }
}
.header-swiper .swiper-card a {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .header-swiper .swiper-card a {
    font-size: 2rem;
  }
}

.search-bar {
  display: flex;
  align-items: center;
  height: 55px;
  gap: 8px;
  width: 100%;
  background-color: #CCCC5F;
  padding-inline: 16px;
}
@media (min-width: 640px) {
  .search-bar {
    height: 80px;
    padding-inline: 20px;
  }
}
.search-bar form {
  width: 100%;
}
.search-bar__new-ad-button {
  display: flex;
  align-items: center;
  height: 39px;
  border-radius: 12px;
  outline: none;
  border: none;
  padding: 5px 16px 5px 6px;
  gap: 12px;
  color: white;
  background-color: #080808;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
@media (min-width: 640px) {
  .search-bar__new-ad-button {
    gap: 24px;
    padding: 7px 24px 7px 8px;
    height: 44px;
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 800;
  }
}
.search-bar .compound-input {
  height: 39px;
  font-size: 13px;
  border-radius: 12px;
}
.search-bar .compound-input:has(.compound-input__slot.left) {
  padding-left: 46px;
}
.search-bar .compound-input:has(.compound-input__slot.right) {
  padding-right: 46px;
}
.search-bar .compound-input__slot.left {
  left: 12px;
}
.search-bar .compound-input__slot.right {
  right: 12px;
}
@media (min-width: 640px) {
  .search-bar .compound-input {
    height: 44px;
    font-size: 1.6rem;
    line-height: 120%;
    font-weight: 500;
  }
  .search-bar .compound-input:has(.compound-input__slot.left) {
    padding-left: 53px;
  }
  .search-bar .compound-input:has(.compound-input__slot.right) {
    padding-right: 53px;
  }
  .search-bar .compound-input__slot.left {
    left: 16px;
  }
  .search-bar .compound-input__slot.right {
    right: 16px;
  }
}
.search-bar__survey-button {
  display: none !important;
  border-radius: 12px !important;
  gap: 4px !important;
}
@media (min-width: 640px) {
  .search-bar__survey-button {
    display: block !important;
  }
}

.categories {
  display: flex;
  align-items: center;
  height: 80px;
  border: 1px solid #bfbf90;
  background-color: #F6F6E3;
  padding-block: 3px;
}
@media (min-width: 640px) {
  .categories {
    height: 124px;
    padding-block: 12px;
    padding-inline: calc((100% - 1270px) / 2);
  }
}
.categories__swiper {
  width: 100%;
  height: 100%;
}
.categories.swiper-wrapper {
  list-style: none;
  margin: 0;
}
.categories__item {
  height: 100%;
}
.categories__item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 9px 6px;
  color: #080808;
}
@media (min-width: 640px) {
  .categories__item a {
    padding-block: 12px;
  }
}
.categories__item a span {
  font-size: 13px;
  font-weight: 500;
  line-height: 15.6px;
  width: 100%;
  text-align: center;
}
@media (min-width: 640px) {
  .categories__item a span {
    font-size: 1.4rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.categories__item__icon-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  height: 36px;
}
@media (min-width: 640px) {
  .categories__item__icon-container {
    height: 100%;
  }
}
.categories__item__icon-container svg {
  transform: scale(0.6);
}
@media (min-width: 640px) {
  .categories__item__icon-container svg {
    transform: unset;
  }
}

.footer {
  margin-top: 15px;
  color: #080808;
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 31px;
  }
}
.footer__site-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 440px) {
  .footer__site-info {
    align-items: flex-start;
  }
}
.footer__title {
  margin-bottom: 18px;
  color: #080808;
  text-align: center;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
}
@media (min-width: 440px) {
  .footer__title {
    text-align: left;
  }
}
.footer__description {
  margin-bottom: 12px;
  color: #080808;
  text-align: center;
  text-wrap-style: balance;
  max-width: 300px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 440px) {
  .footer__description {
    text-align: left;
    max-width: unset;
  }
}
.footer__location {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__location svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
}
.footer__container {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(1, 1fr);
  padding: 40px 0 60px 0;
  position: relative;
  justify-items: center;
}
@media (min-width: 440px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: flex-start;
  }
}
@media (min-width: 640px) {
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding: 80px 0 130px 0;
    gap: 60px;
  }
}
.footer__container div {
  display: flex;
  flex-direction: column;
}
.footer__container .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
  list-style-type: none;
}
@media (min-width: 440px) {
  .footer__container .menu {
    align-items: flex-start;
  }
}
.footer__container .menu__item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #080808;
  transition: color 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.footer__container .menu__item:hover {
  color: #CCCC5F;
}
.footer__container .menu__item:last-child {
  margin-bottom: 0;
}
.footer__container .menu__item svg {
  fill: #898989;
}
.footer__container #email {
  border: none;
  background: #f4f5f7;
  outline: none;
  color: #828282;
  padding: 10px 12px;
}
@media (min-width: 1100px) {
  .footer__container #email {
    width: 85%;
  }
}
.footer__container form {
  display: flex;
  gap: 4px;
}

.pricing__container {
  padding-block: 20px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .pricing__container {
    padding-block: 38px;
  }
}
.pricing__cards {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .pricing__cards {
    flex-direction: row;
  }
}
.pricing .pricing-card {
  padding: 24px 20px;
  border: 2px solid #CCCC5F;
  border-radius: 12px;
  background: white;
  width: 100%;
}
@media (min-width: 440px) {
  .pricing .pricing-card {
    padding: 24px;
  }
}
.pricing .pricing-card--premium {
  border: 2px solid #CCCC5F;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.02), 0px 15px 20px rgba(0, 0, 0, 0.02);
  padding: 24px 15px 24px 15px;
}
@media (min-width: 440px) {
  .pricing .pricing-card--premium {
    padding: 24px 17px 24px 24px;
  }
}
.pricing .pricing-card__title {
  margin: 0px;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
}
.pricing .pricing-card__value {
  display: flex;
  align-items: baseline;
  font-weight: 800;
  font-size: 16px;
  margin-top: 3px;
  text-transform: lowercase;
}
.pricing .pricing-card__value h2 {
  font-size: 42px;
  line-height: 120%;
  margin-right: 2px;
  text-transform: uppercase;
}
.pricing .pricing-card__offer {
  margin: 17px 0px 0px 0px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
.pricing .pricing-card__description {
  margin: 32px 0px 0px 0px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.pricing .pricing-card__list {
  margin-block: 32px;
  list-style-type: none;
}
@media (min-width: 768px) {
  .pricing .pricing-card__list {
    margin-bottom: 53px;
  }
}
.pricing .pricing-card__list li {
  margin-bottom: 16px;
  color: #080808;
  position: relative;
  padding-left: 28px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 20px !important;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.pricing .pricing-card__list li::after {
  display: block;
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 3px;
  height: 6px;
  border: 1px solid #080808;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-50%);
}
.pricing .pricing-card__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border: 2px solid #080808;
  background: #CCCC5F;
  border-radius: 6px;
  width: 16px;
  height: 16px;
}
.pricing .pricing-card__list li:last-child {
  margin-bottom: 0;
}
.pricing .pricing-card__list li.active {
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
.pricing .pricing-card__button {
  text-align: right;
}
@media (min-width: 1024px) {
  .pricing .pricing-card__button {
    text-align: center;
  }
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-login__button {
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
  transition: opacity 0.2s ease !important;
  justify-content: start !important;
  padding-left: 33px;
}
.social-login__button--google {
  border: 1px solid #98983c;
  background-color: white;
  color: #080808;
}
.social-login__button--facebook {
  background-color: #1877f2;
  color: white;
}
.social-login__button:hover {
  opacity: 0.7;
}

.badge {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.badge.primary {
  border: 1px solid #CCCC5F;
  background-color: white;
}
.badge.secondary {
  border: 1px solid #d0d0d0;
  background-color: white;
}
.badge.purple {
  background-color: #474DCB;
  color: white;
}
.badge.sm {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 640px) {
  .badge.sm {
    font-size: 1.6rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.badge.lg {
  border-radius: 8px;
  padding: 7px 12px;
  gap: 16px;
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 700;
}

/**
**/
.button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border-radius: 2px;
  white-space: nowrap;
  font-size: 16px;
  padding: 11px 30px;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #fbfbff;
  color: #333333;
  transition: 0.3s ease-out;
  border: 1px solid transparent;
}
.button:focus {
  text-decoration: none;
}
.button:hover {
  background: rgb(182.2295081967, 182.2295081967, 134.7704918033);
  color: #3a3a3a;
}
.button:last-child {
  margin-right: 0px;
}

.button span {
  display: inline-block;
}
.button span:first-child {
  position: relative;
  z-index: 20;
}
.button--large {
  padding: 10px 50px;
}
.button--square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
}
.button--square svg {
  transition: 0.3s ease-in-out;
  margin-right: 0 !important;
}
.button--square:hover svg {
  transform: scale(1.1);
}
.button--small {
  padding: 5px 10px !important;
  font-size: 14px !important;
}
.button--big {
  padding: 8px 30px;
}
@media (min-width: 768px) {
  .button--big {
    padding: 23px 103px;
  }
}
.button__icon {
  width: 20px;
  vertical-align: text-top;
  display: inline-flex !important;
  position: relative;
  z-index: 10;
}
.button__icon svg {
  width: 7px;
  height: 10px;
  fill: #fff;
  margin: auto;
}
.button.has-icon svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: currentColor;
  vertical-align: sub;
}
.button--primary {
  background: #a3a367;
  color: white;
  border: 1px solid transparent;
}
.button--primary:hover {
  color: #fff;
}
.button--transparent {
  border-color: currentColor;
  background: transparent;
  color: #333333;
}
.button--transparent.button--primary {
  color: #a3a367;
}
.button--transparent:hover {
  color: #fff;
  border-color: #a3a367;
  background: #3a3a3a;
}
.button--white-secondary {
  background: #f4f4f4;
  color: #979797;
  border: 1px solid #979797;
}
.button--white {
  background: white;
  border-color: currentColor;
  color: #a3a367;
}
.button--white:hover {
  border-color: #a3a367;
}
.button--grey {
  background: #c6c6c5;
}
.button--yellow {
  background: #e8e854;
  color: black;
}
@media (min-width: 768px) {
  .button--yellow {
    font-size: 2rem;
  }
}
.button--yellow:hover {
  background: #a3a367;
  color: #fff;
}
.button--green {
  background: #a3a367;
}
.button--blue {
  background: #525f7f;
  color: white;
}
.button--blue:hover {
  color: #fff;
}
.button--dark {
  background: white;
  color: #333333;
  border: 1px solid #333333;
}
.button--form {
  background: #e89f71;
}
.button--form:hover {
  background: rgba(232, 159, 113, 0.7);
}
.button--danger {
  background: red;
  color: #fff;
}
.button--export {
  background: #a3a367 !important;
  border: 1px solid transparent !important;
  color: #fff !important;
  padding: 3px 10px !important;
  outline: none !important;
  font-weight: 600 !important;
}
.button--export:hover {
  color: #fff !important;
  background: rgb(182.2295081967, 182.2295081967, 134.7704918033) !important;
}

.main-cta {
  z-index: 2000;
  position: fixed;
  bottom: 30px;
  right: 40px;
  text-transform: uppercase;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  align-items: center;
  padding: 11px 20px;
  line-height: 1;
  padding-right: 8px;
}
@media (max-width: 767px) {
  .main-cta {
    right: 18px;
    bottom: 18px;
    font-size: 14px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
  }
}
@media (max-width: 767px) {
  .main-cta__text {
    display: none !important;
  }
}
.main-cta__icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .main-cta__icon {
    margin: auto;
  }
}
.main-cta:hover svg {
  fill: #fff;
}

button:disabled,
.button--disabled {
  opacity: 0.7;
  pointer-events: none;
  box-shadow: none;
}
button:disabled:hover,
.button--disabled:hover {
  color: inherit;
  background-color: inherit;
}

.new-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  gap: 8px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  padding-inline: 13px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
.new-button.primary {
  background-color: #CCCC5F;
  border: 1px solid #98983c;
  color: #080808;
}
.new-button.primary:hover {
  background-color: #dada91;
}
.new-button.secondary {
  background-color: #eeeeb8;
  border: 1px solid #98983c;
  color: #080808;
}
.new-button.secondary:hover {
  background-color: rgb(243.9113636364, 243.9113636364, 208.6886363636);
}
.new-button.tertiary {
  color: white;
  background-color: #252114;
}
.new-button.outline {
  background-color: transparent;
  border: 1px solid #98983c;
  color: #080808;
}
.new-button.outline:hover {
  background-color: #CCCC5F;
}
.new-button.outline.dark-theme {
  color: white;
}
.new-button.outline.dark-theme:hover {
  background-color: #252114;
}
.new-button.md {
  height: 41px;
}
.new-button.lg {
  height: 44px;
}
.new-button.xl {
  height: 54px;
  padding-inline: 20px;
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 700;
}
.new-button.xxl {
  height: 49px;
}
@media (min-width: 640px) {
  .new-button.xxl {
    height: 63px;
    padding-inline: 28px;
    border-radius: 16px;
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 800;
  }
}

.c-form--grey {
  margin-top: 0;
  position: relative;
}
@media (min-width: 640px) {
  .c-form {
    margin-top: 0;
  }
}
.c-form input:not(.compound-input__input) {
  border: 1px solid #CCCC5F;
  border-radius: 8px;
  color: #080808;
  outline: none;
  height: 44px;
  width: 100%;
}
.c-form label {
  font-weight: bold;
  color: #080808;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-form label {
    margin-bottom: 10px;
  }
}
.c-form label.dark-theme {
  color: white;
}
.c-form__steps-indicator {
  display: none;
  align-items: center;
  gap: 11px;
  margin-block: 38px;
  justify-content: center;
  list-style-position: inside;
}
.c-form__steps-indicator li {
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid #CCCC5F;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.c-form__steps-indicator li p {
  display: inline;
  margin-left: 5px;
}
.c-form__steps-indicator li.current {
  background-color: #eeeeb8;
}
@media (min-width: 640px) {
  .c-form__steps-indicator {
    display: flex;
  }
}
.c-form__field {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.c-form__field-group {
  position: relative;
  display: flex;
}
.c-form__field-group__helper-text {
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
  margin-top: 10px;
  color: white;
}
.c-form__field-group:has(.c-form__field-icon) input {
  padding-left: 44px;
}
.c-form__field-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.c-form__field-icon svg {
  width: 26px;
  height: 26px;
}
.c-form__border-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  padding-inline: 12px;
  align-content: center;
  border-radius: 8px;
  border: 1px solid #CCCC5F;
}
.c-form__border-wrapper label {
  margin-bottom: 0px;
}
.c-form__element {
  flex: 2;
  padding: 12px 50px 12px 12px;
  background-color: white;
  box-shadow: 0px 5px 38px 5px rgba(0, 0, 0, 0.13);
  border-color: none;
  border-width: 0;
  font-size: 14px;
  font-weight: 400;
  color: #a0a0a0;
  width: 100%;
}
.c-form__element:focus-visible {
  border-width: 0;
  outline: 0;
}
.c-form__button {
  width: 245px;
  margin-bottom: 7px;
  width: 100%;
}
@media (min-width: 640px) {
  .c-form__button {
    width: 100%;
  }
}
.c-form__button-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-form__button--mobile {
    display: none;
  }
}
.c-form__hidden {
  display: none;
}
@media (min-width: 768px) {
  .c-form__hidden {
    display: inline;
  }
}
.c-form__hidden a {
  width: unset;
}
.c-form__advanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .c-form__advanced {
    align-items: flex-start;
  }
}
.c-form__advanced span {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-form__advanced span svg {
  stroke: #3a3a3a;
  width: 15px;
  height: 15px;
  margin-left: 5px;
}
.c-form__delete {
  width: 185px !important;
  margin-top: 10px;
  display: none;
}
.c-form__delete.active {
  display: block;
}
.c-form__delete-mobile {
  width: 185px !important;
  margin-bottom: 50px;
}
.c-form__password {
  display: flex;
  justify-content: flex-end;
}
.c-form__password a {
  color: #a3a367;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__checkbox {
  display: flex;
  position: relative;
}
.c-form__checkbox input {
  display: none;
}
.c-form__checkbox input ~ label {
  line-height: 25px;
  margin-left: 25px;
  cursor: pointer;
}
.c-form__checkbox input ~ label::after {
  content: "";
  width: 3px;
  height: 6px;
  border: solid #080808;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.1s ease-in-out;
  position: absolute;
  top: 8px;
  left: 7px;
}
.c-form__checkbox input:checked ~ label::after {
  opacity: 1;
}
.c-form__checkbox input:checked ~ label::before {
  background: #CCCC5F;
}
.c-form__checkbox input ~ label::before {
  content: "";
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
  background: #CCCC5F;
  border-radius: 6px;
  border: 2px solid #080808;
  transition: 0.1s ease-in-out;
}
.c-form__input {
  width: 19px;
  height: 19px;
}
.c-form__input--name {
  padding: 12px 40px 12px 12px;
  background: #ffffff;
  border: 1px solid #cad1d7;
  border-radius: 4px;
  outline: none;
  width: unset;
  height: unset;
}
.c-form__steps {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .c-form__steps {
    grid-template-columns: minmax(auto, 317px) 1fr;
    justify-content: space-between;
    grid-template-rows: auto 1fr;
    -moz-column-gap: 35px;
         column-gap: 35px;
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .c-form__steps {
    padding-right: 90px;
    grid-template-columns: minmax(auto, 317px) minmax(auto, 475px);
    padding-bottom: 80px;
    -moz-column-gap: 65px;
         column-gap: 65px;
  }
}
.c-form__steps.visible {
  padding: 20px 0 50px 0;
}
@media (min-width: 1024px) {
  .c-form__steps.visible {
    padding: 40px 70px 0 0;
  }
}
.c-form__steps.visible .c-form__step {
  display: block;
  padding: 18px;
}
@media (min-width: 768px) {
  .c-form__steps.visible .c-form__step {
    padding: 0;
  }
}
.c-form__steps.visible + .c-form__footer {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  flex-direction: column;
  align-items: center;
}
.c-form__steps.visible + .c-form__footer a {
  margin-top: 0;
}
@media (min-width: 768px) {
  .c-form__steps.visible + .c-form__footer {
    margin-top: 0;
    justify-content: flex-start;
    padding-bottom: 0;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .c-form__steps.visible + .c-form__footer {
    margin-top: 70px;
  }
}
.c-form__steps #check {
  margin-bottom: 0;
}
.c-form__col-2 {
  display: flex;
  flex-direction: column;
}
.c-form__date {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  max-width: 317px;
}
.c-form__date #day,
.c-form__date #month,
.c-form__date #year {
  width: 33.33%;
  text-align: center;
  padding: 12px 3px;
}
@media (min-width: 640px) {
  .c-form__date #day,
  .c-form__date #month,
  .c-form__date #year {
    padding: 12px 10px;
  }
}
@media (min-width: 768px) {
  .c-form__date #day,
  .c-form__date #month,
  .c-form__date #year {
    padding: 12px 20px;
  }
}
.c-form__dmy {
  display: inline-grid;
}
.c-form__select {
  padding: 0px 19px 0px 12px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-color: white;
  border: 1px solid #CCCC5F;
  border-radius: 8px;
  height: 44px;
  background-position-x: 96%;
  background-position-y: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8335 1.50006L7.00016 7.3334L1.16683 1.50006' stroke='%23979797' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.c-form__filter {
  display: flex;
  align-items: center;
}
.c-form__phone {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (min-width: 768px) {
  .c-form__phone {
    max-width: 317px;
  }
}
.c-form__phone #phone:first-child {
  max-width: 60px;
  padding: 12px;
}
.c-form__phone #phone:last-child {
  width: 100%;
  padding: 12px 50px 12px 10px;
}
@media (min-width: 440px) {
  .c-form__phone #phone:last-child {
    padding: 12px 85px 12px 10px;
  }
}
.c-form__image {
  width: 100%;
  height: 210px;
  margin: 0 auto;
  box-sizing: border-box;
}
.c-form__image > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px dashed #CCCC5F;
  text-align: center;
  justify-content: center;
  padding: 20px 12px;
  border-radius: 8px;
  gap: 16px;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.c-form__image > div img {
  width: 60px;
}
.c-form__image > div span {
  display: block;
  color: #b1b1b1;
}
.c-form__image input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  cursor: pointer;
  border: none !important;
}
.c-form__image input::-webkit-file-upload-button {
  visibility: hidden;
}
.c-form__mobile-button {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.c-form__mobile-button a {
  font-size: 12px;
  display: flex;
  justify-content: center;
  border-radius: 61px;
  max-width: 150px;
}
@media (min-width: 768px) {
  .c-form__mobile-button {
    display: none;
  }
}
.c-form__description {
  font-size: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .c-form__description {
    display: none;
  }
}
.c-form__footer {
  display: none;
}
@media (min-width: 768px) {
  .c-form__footer {
    display: flex;
    justify-content: space-between;
    text-align: end;
    align-items: center;
    margin-top: 130px;
  }
}
@media (min-width: 1024px) {
  .c-form__footer {
    margin-top: 100px;
  }
}
.c-form__footer p {
  display: none;
}
@media (min-width: 768px) {
  .c-form__footer p {
    display: block;
    margin-left: 30px;
    color: #b5b5b5;
  }
}
.c-form__footer a {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .c-form__footer a {
    margin-top: 0;
  }
}
.c-form__step {
  padding: 20px 20px 50px 20px;
  display: none;
}
@media (min-width: 768px) {
  .c-form__step {
    display: block;
  }
}
@media (min-width: 768px) {
  .c-form__step {
    padding: unset;
  }
}
.c-form__step.active {
  display: block;
}
@media (min-width: 768px) {
  .c-form__step:nth-child(1) {
    grid-row: 1/3;
  }
}
.c-form__step:nth-child(2) {
  order: 1;
}
@media (min-width: 768px) {
  .c-form__step:nth-child(2) {
    order: unset;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .c-form__step:nth-child(3) {
    grid-column: 2/3;
  }
}
.c-form__background {
  margin-top: 0;
  border-radius: 4px;
  margin-bottom: 15px;
}
@media (min-width: 440px) {
  .c-form__background {
    background: #fbfbff;
    border: 1px solid #d8d8d8;
    padding: 8px 25px 15px 25px;
  }
}
@media (min-width: 768px) {
  .c-form__background {
    padding: unset;
    border: none;
    background: unset;
  }
}
@media (min-width: 768px) {
  .c-form__intro {
    display: none;
  }
}
.c-form__intro h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.c-form__intro div {
  font-size: 1.2rem;
}
.c-form__intro--filter {
  display: grid;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .c-form__intro--filter {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-form__intro--filter .c-form__field {
  margin-bottom: 0;
}
.c-form__info {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .c-form__info {
    display: none;
  }
}
.c-form__tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-form__tab {
  width: 100%;
  max-width: 714px;
}
.c-form__container {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  width: 100%;
}
.c-form__message {
  font-size: 12px;
  font-weight: 500;
  color: #d2691e;
  margin-top: 5px;
}
.c-form__subtitle-container {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.c-form__step-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #CCCC5F;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
}
.c-form__subtitle {
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
.c-form__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .c-form__buttons--basic {
    display: none;
  }
}
.c-form__buttons--filter {
  order: -1;
  width: 100%;
  text-align: center;
}
@media (min-width: 440px) {
  .c-form__buttons--filter {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .c-form__buttons--filter {
    order: unset;
    width: unset;
  }
}
@media (min-width: 440px) {
  .c-form__buttons--filter .c-form__button:last-child {
    text-align: end;
    margin-left: 5px;
  }
}
@media (min-width: 440px) {
  .c-form__buttons--filter .c-form__button:first-child {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .c-form__buttons--filter .c-form__button:first-child {
    display: none;
  }
}
.c-form__buttons--filter .c-form__button a,
.c-form__buttons--filter .c-form__button button {
  width: 100%;
}
@media (min-width: 440px) {
  .c-form__buttons--filter .c-form__button a,
  .c-form__buttons--filter .c-form__button button {
    width: unset;
  }
}
.c-form__buttons p {
  border-top: 1px solid #c6c6c5;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 7px;
  display: none;
}
@media (min-width: 1024px) {
  .c-form__buttons p {
    display: block;
  }
}
.c-form__progressbar {
  list-style-type: none;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 7px;
  margin-bottom: 15px;
}
.c-form__progressbar--basic li::before {
  width: 8px !important;
  height: 8px !important;
}
@media (min-width: 768px) {
  .c-form__progressbar--basic {
    display: none;
  }
}
@media (min-width: 1024px) {
  .c-form__progressbar {
    margin-bottom: 25px;
    gap: unset;
  }
}
.c-form__progressbar li {
  position: relative;
  text-align: center;
  margin-right: 5px;
  z-index: 1;
  color: #979797;
}
@media (min-width: 1024px) {
  .c-form__progressbar li {
    width: 190px;
  }
}
.c-form__progressbar li p {
  display: none;
}
@media (min-width: 1024px) {
  .c-form__progressbar li p {
    display: block;
  }
}
.c-form__progressbar li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: #c4c4c4;
  display: block;
  margin: 0 auto 5px auto;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .c-form__progressbar li::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    background: #cad1d7;
    top: 5px;
    left: -50%;
    z-index: -1;
    transform: translateX(10%);
  }
}
.c-form__progressbar li:first-child::after {
  content: none;
}
.c-form__progressbar .active::before {
  background: #a3a367;
}
.c-form__progressbar .active::after {
  background: #a3a367;
}
.c-form__progressbar .active-current {
  color: #393939;
}
.c-form__progressbar .active-current::before {
  transform: scale(1.5);
}
.c-form__category {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 1024px) {
  .c-form__category {
    display: flex;
    max-width: 665px;
    gap: 30px;
  }
}
.c-form__category .c-form__field {
  width: 100%;
}
.c-form__category select {
  max-width: unset;
  width: 100%;
}
.c-form__checkboxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  width: 100%;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .c-form__checkboxes {
    width: unset;
    font-size: 1.4rem;
  }
}
.c-form__checkboxes label {
  color: #616161 !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  background: #fbfbff;
  border: 1px solid #cad1d7;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  padding: 12px 30px 12px 10px;
}
@media (min-width: 1024px) {
  .c-form__checkboxes label {
    height: 45px;
    padding: 12px 0 12px 20px;
  }
}
.c-form__checkboxes__checkmark {
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 12px;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background: #fbfbff;
  border: 2px solid #323232;
}
.c-form__checkboxes__checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #323232;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
.c-form__checkboxes__new-check {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.c-form__checkboxes__new-check:checked ~ .c-form__checkboxes__checkmark::after {
  display: block;
}
.c-form #checkbox-border {
  border: 1px solid #e0a27e;
}
.c-form__radio {
  display: flex;
  gap: 10px;
}
@media (min-width: 1024px) {
  .c-form__radio {
    flex-direction: column;
    max-width: 210px;
    gap: 14px;
  }
}
.c-form__radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.c-form__radio input:checked ~ .c-form__radio__radiobox:after {
  display: block;
}
.c-form__radio__radiobox {
  position: absolute;
  top: 50%;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #323232;
  border-radius: 50%;
  transform: translateY(-50%);
  margin-right: 11px;
}
.c-form__radio__radiobox::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #323232;
  transform: translateY(-50%);
}
.c-form__new-button {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 440px) {
  .c-form__new-button {
    flex-direction: row;
    justify-content: space-between;
  }
}
.c-form__new-button .button {
  min-width: 185px;
}
@media (min-width: 1024px) {
  .c-form__new-button .button {
    margin-bottom: 25px;
  }
}
.c-form__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 1024px) {
  .c-form__details {
    -moz-column-gap: 23px;
         column-gap: 23px;
    row-gap: 12px;
    grid-template-columns: repeat(3, minmax(auto, 210px));
  }
}
.c-form__new-description {
  display: flex;
  flex-direction: column;
}
.c-form__new-description textarea {
  border: 1px solid #cad1d7;
  border-radius: 4px;
  padding: 12px 40px 12px 12px;
  min-height: 185px;
  color: #adb5bd;
  max-width: 676px;
  outline: none;
}
@media (min-width: 1024px) {
  .c-form__new-description textarea {
    margin-bottom: 25px;
  }
}
.c-form__picture__paragraph {
  display: none;
  color: #7f7f7f;
  margin-top: 19px;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .c-form__picture__paragraph {
    display: block;
  }
}
.c-form__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(auto, 78px));
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px;
  background: white;
  border: 1px solid #d8d8d8;
}
@media (min-width: 440px) {
  .c-form__gallery {
    border: 1px solid #fbfbff;
    background: #f4f4f4;
    gap: 23px;
    padding: 17px 22px 14px 22px;
    grid-template-columns: repeat(auto-fill, minmax(auto, 111px));
  }
}
.c-form__gallery__note {
  font-size: 12px;
  font-weight: 500;
  color: #7f7f7f;
  margin-top: 10px;
  margin-bottom: 10px !important;
}
.c-form__gallery img {
  width: 78px;
  height: 78px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #d8d8d8;
}
@media (min-width: 440px) {
  .c-form__gallery img {
    width: 111px;
    height: 111px;
  }
}
.c-form__gallery-item {
  position: relative;
  cursor: pointer;
}
.c-form__gallery-item__bin {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 10;
}
.c-form__gallery-item__star {
  position: absolute;
  top: 0;
  left: 5px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
  fill: #d8d8d8;
}
.c-form__gallery-item__star.active {
  transform: scale(1.1);
  fill: #e8e854;
}
.c-form__gallery-item svg {
  transition: 0.3s all ease-in-out;
}
.c-form__gallery-item svg:hover {
  transform: scale(1.1);
}
.c-form__photo {
  background-color: white;
  background-image: url(../../images/upload-instructions.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 300px;
  border: 1px dashed #CCCC5F;
  border-radius: 8px;
  margin-top: 10px;
  position: relative;
  height: 210px;
}
.c-form__photo svg {
  width: 111px;
  min-width: 111px;
  height: 93px;
  margin-bottom: 12px;
}
.c-form__photo p {
  color: #adb5bd;
  text-align: center;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .c-form__photo p {
    font-size: 1.8rem;
  }
}
.c-form__photo span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: underline;
  color: #525f7f;
  font-weight: 700;
  margin-top: 10px;
}
@media (min-width: 440px) {
  .c-form__photo span {
    margin-top: 0;
  }
}
.c-form__photo input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  cursor: pointer;
  border: none !important;
}
.c-form__photo input::-webkit-file-upload-button {
  visibility: hidden;
}
.c-form__prices {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-form__prices {
    flex-direction: row;
    align-items: flex-end;
    gap: 30px;
    max-width: 665px;
  }
}
.c-form__policy {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}
@media (min-width: 768px) {
  .c-form__policy {
    flex-direction: row;
    margin-top: 0;
  }
}
.c-form__policy p {
  order: -1;
  margin-bottom: 17px;
  width: 160px;
  text-align: center;
  border-top: 1px solid #d8d8d8;
  padding-top: 24px;
}
@media (min-width: 768px) {
  .c-form__policy p {
    margin-right: 15px;
    margin-bottom: 0;
    width: unset;
    border-top: unset;
    padding-top: unset;
  }
}
.c-form__policy label {
  font-weight: 400;
  color: #b5b5b5;
  padding-left: 30px;
  cursor: pointer;
}
.c-form__check {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .c-form__check {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .c-form__check {
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.c-form__check .c-form__checkboxes__checkmark {
  left: 0;
}
.c-form__check svg {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}
.c-form__check label {
  font-weight: 400 !important;
  color: #616161 !important;
  padding-left: 25px;
  margin-bottom: 0 !important;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__check #prominent-item {
  color: #a3a367 !important;
}
.c-form__search {
  display: flex;
}
.c-form__search input {
  width: 100%;
  padding: 12px 40px;
  color: #393939;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 11H11.71L11.43 10.73C12.41 9.59 13 8.11 13 6.5C13 2.91 10.09 0 6.5 0C2.91 0 0 2.91 0 6.5C0 10.09 2.91 13 6.5 13C8.11 13 9.59 12.41 10.73 11.43L11 11.71V12.5L16 17.49L17.49 16L12.5 11ZM6.5 11C4.01 11 2 8.99 2 6.5C2 4.01 4.01 2 6.5 2C8.99 2 11 4.01 11 6.5C11 8.99 8.99 11 6.5 11Z' fill='%23979797'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 14px;
}
.c-form__search input::-moz-placeholder {
  color: #393939;
}
.c-form__search input::placeholder {
  color: #393939;
}
.c-form__search a {
  margin-left: -5px;
}
.c-form__search a svg {
  margin-right: 0 !important;
  margin-left: 10px;
}
.c-form__weapon {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 639px) {
  .c-form__weapon input {
    padding: 12px 12px 12px 12px;
  }
}
.c-form__weapon .c-form__select {
  max-width: unset;
  white-space: normal;
}
@media (max-width: 439px) {
  .c-form__weapon .c-form__select {
    width: 100%;
    min-width: unset;
    padding: 11px 5px 11px 5px;
  }
}
.c-form__category-field {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .c-form__category-field {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-form__category-field {
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #d8d8d8;
    padding: 10px 15px 5px 15px;
  }
}
.c-form__category-field .c-form__radio {
  max-width: unset;
  flex-direction: column;
  gap: 14px;
}
.c-form__category-field .c-form__radio label {
  height: 45px;
}
.c-form__category-field-stats {
  grid-template-columns: repeat(1, 1fr) !important;
}
@media (min-width: 1340px) {
  .c-form__category-field-stats {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
.c-form__category-field-stats select {
  width: 100% !important;
  max-width: 100% !important;
}
.c-form__data {
  display: grid;
  -moz-column-gap: 14px;
       column-gap: 14px;
  border: 1px solid #d8d8d8;
  background: #fbfbff;
  border-radius: 4px;
  padding: 11px;
}
@media (min-width: 1024px) {
  .c-form__data {
    grid-template-columns: repeat(4, 1fr);
    border: unset;
    background: unset;
    padding: unset;
  }
}
.c-form__data .c-form__select {
  width: 100%;
  max-width: unset;
}
.c-form__capacity {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-form__capacity__item {
  display: flex;
  align-items: center;
}
.c-form__capacity__item input {
  width: 100%;
}
.c-form__capacity__item input::-moz-placeholder {
  color: #393939;
}
.c-form__capacity__item input::placeholder {
  color: #393939;
}
.c-form__filters {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.6rem;
  padding: 10px 0;
  margin-top: 7px;
}
@media (min-width: 1024px) {
  .c-form__filters {
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
    flex-direction: row;
    align-items: center;
  }
}
.c-form__filters svg {
  margin-left: 10px;
  margin-right: 0 !important;
}
.c-form__filter-container {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .c-form__filter-container {
    margin-top: 30px;
  }
}
.c-form__bg {
  border: 1px solid #d8d8d8;
  background: #fbfbff;
  border-radius: 4px;
  padding: 11px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .c-form__bg {
    border: unset;
    background: unset;
    padding: unset;
    margin-bottom: 0;
  }
}
.c-form__agreement {
  max-width: 317px;
}
@media (min-width: 1024px) {
  .c-form__agreement {
    width: 100%;
  }
}
.c-form__currency {
  background: #fbfbff;
  border: 1px solid #cad1d7;
  border-radius: 4px;
  width: 100%;
  margin-left: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 104px;
  text-align: center;
}
@media (min-width: 440px) {
  .c-form__currency {
    white-space: nowrap;
    padding: 10px;
  }
}

.login {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 718px;
  background-color: #1d1d1c;
  padding: 40px;
  gap: 33px;
  border-radius: 12px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .login {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .login {
    grid-template-columns: 320px 1fr;
    width: 100%;
  }
}
.login__info {
  display: none;
  border-radius: 12px;
  background-image: url(../../images/auth-splash.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .login__info {
    display: block;
  }
}
.login__logo {
  display: none;
}
@media (min-width: 768px) {
  .login__logo {
    display: block;
  }
}
.login__logo svg {
  width: 158px;
  height: 27px;
}
.login__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .login__form {
    max-width: 282px;
  }
}
.login__wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-bottom: 33px;
}
@media (min-width: 768px) {
  .login__wrapper {
    padding-block: 33px;
  }
}
.login__submit {
  margin-block: 12px;
}
.login .social-login {
  margin-top: 33px;
}
.login__dont-have-account {
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.login__register-container {
  margin-inline: auto;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(273px, 1fr));
    gap: 12px;
  }
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0px 2.878px 3.799px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid #bfbf90;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 640px) {
  .product {
    border-radius: 8px;
  }
}
.product__image-container {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .product__image-container {
    border-radius: 8px;
  }
}
.product__image {
  width: 100%;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
  background-size: cover;
  background-position: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 5px;
}
@media (min-width: 640px) {
  .product__image {
    height: 224px;
    border-radius: 8px;
  }
}
.product--featured {
  background-color: #eeeeb8;
}
.product--demand {
  border-color: #474DCB;
}
.product::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a3a3a;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.product:hover::after {
  opacity: 0.72;
}
.product__link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 111;
}
.product__badges {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.product__badges__badge {
  display: flex;
  align-items: center;
  height: 30px;
  gap: 8px;
  border-radius: 6px;
  padding: 3px 4px 3px 10px;
  font-size: 13px;
  font-weight: 700;
}
@media (min-width: 640px) {
  .product__badges__badge {
    height: 38px;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    padding: 5px 6px 5px 12px;
  }
}
.product__badges__badge--featured {
  color: #080808;
  background-color: #CCCC5F;
}
.product__badges__badge--sale {
  color: white;
  background-color: #8a8a00;
}
.product__badges__badge--demand {
  color: white;
  background-color: #474DCB;
}
.product__description {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 10px;
}
@media (min-width: 640px) {
  .product__description {
    padding: 16px;
  }
}
.product__title {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
  font-weight: 800;
  line-height: 120%;
  color: #1d1d1c;
  margin: 0px;
}
@media (min-width: 640px) {
  .product__title {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 800;
  }
}
.product__bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 6px;
  margin-top: auto;
}
.product__country-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .product__country-container {
    width: 23px;
    height: 23px;
  }
}
.product__country {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 30px;
  height: 30px;
}
@media (min-width: 640px) {
  .product__country {
    width: 36px;
    height: 36px;
  }
}
.product__price {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.36px;
}
@media (min-width: 640px) {
  .product__price {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.product__price-new {
  color: #333333;
}
.product__price-divider {
  margin-inline: 5px;
  color: #7f7f7f;
}
.product__price-old {
  color: #7f7f7f;
  text-decoration-line: line-through;
}
.product__buttons {
  display: none;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media (min-width: 640px) {
  .product__buttons {
    top: 100px;
  }
}
@media (min-width: 640px) {
  .product:hover .product__buttons {
    display: block;
  }
}
.product__button {
  background: white;
  margin-bottom: 5px;
}
@media (min-width: 640px) {
  .product__button {
    margin-bottom: 40px;
  }
}
.product__button a {
  border: none;
}
.product__social {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .product__social {
    gap: 50px;
  }
}
.product__social__share {
  color: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.product__social__share svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: all 0.3s ease-in-out;
}
.product__social__share:hover {
  color: #a3a367;
  transform: scale(1.1);
}
.product__social__share:hover svg {
  fill: #a3a367;
}
.product__social__share.active {
  color: #a3a367;
  transform: scale(1.1);
}
.product__social__share.active svg {
  fill: #a3a367;
}
.product__social__share-menu {
  position: absolute;
  top: 35px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.product__social__share-menu:hover {
  transform: scale(1.1);
}
.product__social__share-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 27px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: -1;
}
.product__social__share-menu a {
  width: 30px;
  height: 30px;
  transition: 0.3s all ease-in-out;
}
.product__social__share-menu a:hover {
  transform: scale(1.1);
}
.product__social__share-menu a svg {
  width: 30px;
  height: 30px;
}
.product__social__share-menu.active {
  opacity: 1;
  pointer-events: initial;
}
.product__social__like {
  color: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.product__social__like svg {
  width: 21px;
  height: 18px;
  fill: transparent;
  stroke: white;
  transition: all 0.3s ease-in-out;
}
.product__social__like:hover {
  color: #a3a367;
  transform: scale(1.1);
}
.product__social__like:hover svg {
  fill: #a3a367;
}
.product__social__like.active {
  color: #a3a367;
  transform: scale(1.1);
}
.product__social__like.active svg {
  fill: #a3a367;
}
.product__social-networks {
  position: relative;
}
.product__menu-list {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: auto;
  list-style-type: none;
  z-index: 1000;
  background: white;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  align-items: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  border-radius: 10px;
  padding: 0;
  text-align: right;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .product__menu-list {
    right: 10px;
    left: auto;
    bottom: unset;
    top: 10px;
    font-size: 1.6rem;
    text-align: center;
    grid-template-rows: repeat(4, 1fr);
  }
}
.product__menu-list.active {
  opacity: 1;
  pointer-events: initial;
}
.product__menu-list a {
  padding: 9px 13px;
  display: block;
  line-height: 1;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  transition: 0.3s all ease-in-out;
}
.product__menu-list a:hover {
  color: #a3a367;
}
.product__menu-list li:nth-child(even) a {
  background: #f4f5f7;
}
.product__menu-list::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #f4f5f7;
  transform: rotate(-90deg);
}
@media (min-width: 640px) {
  .product__menu-list::before {
    border-bottom: 15px solid #fbfbff;
    bottom: unset;
    top: -10px;
    right: 13px;
    left: unset;
    transform: unset;
  }
}
.product__edit {
  position: absolute;
  bottom: 10px;
  left: -40px;
  z-index: 200;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 640px) {
  .product__edit {
    top: -60px;
    right: 15px;
    width: 48px;
    height: 48px;
    bottom: unset;
    left: unset;
  }
}
.product__edit:hover {
  transform: scale(1.1);
  background: #a3a367;
}
.product__edit svg {
  width: 18px;
  height: 18px;
  fill: white;
}
.product__load {
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 440px) {
  .product__load {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .product__load {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .product__load {
    grid-column: 1/4;
  }
}
@media (min-width: 1340px) {
  .product__load {
    grid-column: 1/5;
  }
}
.product-single__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 5px;
}
.product-single__social .product__social__like {
  color: #a3a367;
  display: flex;
  align-items: center;
}
.product-single__social .product__social__like svg {
  stroke: #545454;
}
.product-single__social a {
  display: block;
}
.product-single__social svg {
  width: 30px;
  height: 30px;
}
.product-single__social-wrap {
  display: flex;
}
.product-single__social-wrap a {
  margin-right: 10px;
}

.container {
  padding: 7px 0 20px 0;
}
@media (min-width: 640px) {
  .container {
    padding: 40px 0 20px 0;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 80px 20px 40px 20px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 80px 56px 60px 56px;
    border-radius: 4px;
  }
}
.container__title {
  margin-bottom: 46px;
}
.container__subtitle {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c6c6c5;
}
.container__text {
  margin-bottom: 32px;
}
.container__group {
  display: none;
}
@media (min-width: 768px) {
  .container__group {
    display: block;
  }
}

@media (min-width: 768px) {
  .product-modal--featured {
    background-image: linear-gradient(90deg, #a3a367 37%, #fff 0%);
  }
}
.product-modal__container {
  padding: 10px 0;
}
@media (min-width: 440px) {
  .product-modal__container {
    padding: 10px 15px;
  }
}
@media (min-width: 768px) {
  .product-modal__container {
    display: grid;
    grid-template-columns: minmax(auto, 693px) 1fr;
    padding: 25px 30px;
    gap: 25px;
  }
}
.product-modal .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.product-modal .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: grab;
  height: unset;
}
.product-modal .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 564px;
  background-color: #3a3a3a;
}
.product-modal .swiper-button-prev, .product-modal .swiper-button-next {
  background: #a3a367;
  width: 32px;
  height: 110px;
  transform: translateY(-30%);
  transition: 0.3s all ease-in-out;
}
.product-modal .swiper-button-prev:hover, .product-modal .swiper-button-next:hover {
  opacity: 0.8;
}
.product-modal .swiper-button-prev::after, .product-modal .swiper-button-next::after {
  width: 8px;
  height: 13px;
  font-size: unset;
  color: white;
  font-weight: 900;
}
.product-modal .swiper-button-next {
  right: 0;
}
.product-modal .swiper-button-prev {
  left: 0;
}
.product-modal__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}
.product-modal__title {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .product-modal__title {
    margin-top: 0;
  }
}
.product-modal__weapon {
  display: flex;
  align-items: center;
}
.product-modal__weapon a {
  padding: 2px 20px;
  background: #d8d8d8;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .product-modal__weapon a {
    font-size: 1.6rem;
  }
}
.product-modal__weapon a:first-child {
  position: relative;
  margin-right: 25px;
}
.product-modal__weapon a:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.8355 0L0.401001 1.41L5.06059 6L0.401001 10.59L1.8355 12L7.93977 6L1.8355 0Z' fill='%23616161'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.product-modal__numbers {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.product-modal__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-modal__links a {
  margin-right: 0;
}
.product-modal__links a svg {
  vertical-align: sub;
}
.product-modal__user {
  position: absolute;
  top: -40px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .product-modal__user {
    left: 28px;
  }
}
.product-modal__user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.product-modal__user p {
  font-size: 1.8rem;
}
.product-modal__information {
  position: relative;
}
.product-modal__information-cta {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.product-modal__contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px 14px 13px 0;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-modal__contact {
    margin-bottom: 0;
  }
}
.product-modal__contact a {
  color: #616161;
  margin-bottom: 8px;
}
.product-modal__contact a:last-child {
  margin-bottom: 0;
}
.product-modal__contact svg {
  width: 30px;
  height: 20px;
  vertical-align: middle;
  margin-right: 25px;
}
.product-modal__picture {
  grid-column: 1/3;
}

.new-post__tab {
  margin-bottom: 100px;
}
.new-post__title {
  margin-bottom: 10px;
  margin-top: 18px;
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  .new-post__title {
    margin-bottom: 26px;
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
}
.new-post__under-title {
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .new-post__under-title {
    display: none;
  }
}
.new-post .c-form {
  margin-top: 0;
}
.new-post .c-form label {
  color: #525f7f;
  font-weight: 700;
  margin-bottom: 16px;
}
.new-post .c-form__field {
  margin-bottom: 32px;
}
.new-post .c-form input {
  border: 1px solid #cad1d7;
  border-radius: 4px;
  outline: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin: 10px 0 70px 0;
}
@media (min-width: 440px) {
  .gallery {
    gap: 14px;
  }
}
@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    margin: 20px 0 140px 0;
  }
}
.gallery__image {
  height: 200px;
  max-width: 383px;
  position: relative;
  cursor: pointer;
}
.gallery__image:hover .gallery__prominent {
  opacity: 1;
}
.gallery__image:last-child {
  border: 2px dashed #b5b5b5;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery__image:last-child svg {
  width: 106px;
  height: 106px;
  margin-bottom: 25px;
}
.gallery__image:last-child input {
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.gallery__image:last-child input::-webkit-file-upload-button {
  visibility: hidden;
}
.gallery__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__prominent {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 440px) {
  .gallery__prominent {
    width: 48px;
    height: 48px;
  }
}
.gallery__prominent--left {
  bottom: 7px;
  left: 7px;
}
@media (min-width: 440px) {
  .gallery__prominent--left {
    bottom: 14px;
    left: 18px;
  }
}
.gallery__prominent--right {
  bottom: 7px;
  right: 7px;
}
@media (min-width: 440px) {
  .gallery__prominent--right {
    bottom: 14px;
    right: 18px;
  }
}
.gallery__prominent svg {
  width: 14px;
  height: 16px;
  fill: #393939;
}
@media (min-width: 440px) {
  .gallery__prominent svg {
    width: 20px;
    height: 22px;
  }
}
.gallery__prominent:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.filter label {
  font-weight: bold;
  color: #3a3a3a;
  margin-bottom: 3px;
}
.filter .c-form {
  margin-top: 0;
}
.filter select {
  color: #616161;
}
@media (max-width: 1023px) {
  .filter-wrap .filter {
    display: none;
  }
}
.filter-wrap > span {
  display: none;
}
@media (max-width: 1023px) {
  .filter-wrap > span {
    display: block;
    font-weight: 600;
    font-size: 14px;
  }
}

.shop-slider {
  overflow: hidden;
  background: #3a3a3a;
  padding: 10px 0;
  margin: 40px 0;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(54% - 50vw) !important;
}
@media (min-width: 1024px) {
  .shop-slider {
    padding: 50px 0;
    margin-top: 80px;
    margin-bottom: 80px;
    background: linear-gradient(90deg, #dedec4 80%, white 20%);
    margin-right: calc(52% - 50vw) !important;
  }
}
.shop-slider__text {
  display: none;
}
@media (min-width: 1024px) {
  .shop-slider__text {
    display: block;
    margin-right: -40px;
  }
}
.shop-slider__title {
  font-size: 4rem;
  line-height: 48px;
}
.shop-slider__container {
  display: grid;
  align-items: center;
  grid-template-columns: auto;
}
@media (min-width: 1024px) {
  .shop-slider__container {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 1340px) {
  .shop-slider__container {
    grid-template-columns: 480px 1fr;
  }
}
.shop-slider .swiper {
  width: 100%;
}
@media (min-width: 1024px) {
  .shop-slider .swiper {
    height: 585px;
    margin-right: -70px;
  }
}
@media (min-width: 1340px) {
  .shop-slider .swiper {
    height: 685px;
  }
}
.shop-slider .swiper-slide {
  background: #c4c4c4;
  position: relative;
  width: 130px;
  cursor: grab;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 1023px) {
  .shop-slider .swiper-slide:hover .swiper-slide-info {
    background: #858585;
  }
}
.shop-slider .swiper-slide:hover .swiper-slide-info span svg {
  transform: scale(1.5);
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide:hover {
    background: #b5b5b5;
  }
}
@media (min-width: 440px) {
  .shop-slider .swiper-slide {
    width: 250px;
  }
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 530px;
    width: 300px;
  }
}
@media (min-width: 1340px) {
  .shop-slider .swiper-slide {
    height: 630px;
    width: 400px;
  }
}
.shop-slider .swiper-slide img {
  height: 130px;
  padding: 10px;
  border-radius: 50%;
  max-width: 130px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide img {
    max-width: 320px;
    height: 320px;
  }
}
.shop-slider .swiper-slide svg {
  stroke: white;
  stroke-width: 1.5px;
}
.shop-slider .swiper-slide__cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shop-slider .swiper-slide-box {
  display: flex;
  background: #303030;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: unset;
    align-items: flex-end;
  }
}
@media (min-width: 1340px) {
  .shop-slider .swiper-slide-box {
    bottom: 25px;
    left: 25px;
  }
}
.shop-slider .swiper-slide-info {
  width: 100%;
  padding: 6px;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide-info {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    padding: 34px;
  }
}
.shop-slider .swiper-slide-info p:nth-child(1) {
  color: #e8e854;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide-info p:nth-child(1) {
    color: #3a3a3a;
    font-size: 1.6rem;
    font-weight: 700;
  }
}
.shop-slider .swiper-slide-info p:nth-child(2) {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide-info p:nth-child(2) {
    font-size: 2.8rem;
    color: #3a3a3a;
  }
}
.shop-slider .swiper-slide-info span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: #616161;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-slide-info span {
    display: none;
  }
}
.shop-slider .swiper-slide-info span svg {
  width: 10px;
  height: 8px;
  stroke: #616161;
  margin-right: 5px;
  transition: 0.3s all ease-in-out;
}
.shop-slider .swiper-button-next, .shop-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(220, 220, 220, 0.6);
  box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-button-next, .shop-slider .swiper-button-prev {
    background: white;
  }
}
@media (min-width: 1024px) {
  .shop-slider .swiper-button-next:hover, .shop-slider .swiper-button-prev:hover {
    background: #f4f5f7;
    transform: scale(1.1);
  }
}
.shop-slider .swiper-button-next::after, .shop-slider .swiper-button-prev::after {
  width: 7px;
  height: 15px;
  font-size: unset;
  color: white;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-button-next::after, .shop-slider .swiper-button-prev::after {
    color: #a3a367;
  }
}
@media (min-width: 1024px) {
  .shop-slider .swiper-button-next {
    right: 33%;
  }
}
@media (min-width: 1024px) {
  .shop-slider .swiper-button-prev {
    left: 33%;
  }
}
.shop-slider .swiper-pagination {
  display: none;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-pagination {
    display: block;
    left: unset !important;
    right: 34%;
    bottom: 5px !important;
  }
}
.shop-slider .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: white;
  opacity: unset;
  margin: 0 10px !important;
  transition: 0.3s all ease-in-out;
}
.shop-slider .swiper-pagination-bullet-active {
  position: relative;
  margin: 0 18px !important;
  transition: 0.3s all ease-in-out;
}
.shop-slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -9px;
  left: -9px;
  width: 27px;
  height: 27px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.7;
}
.shop-slider .swiper-arrow {
  display: none;
}
@media (min-width: 1024px) {
  .shop-slider .swiper-arrow {
    display: flex;
  }
}

.modal {
  height: 100vh;
  position: fixed;
  z-index: 223432432432234340;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.modal::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 60, 52, 0.15);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
@media (min-width: 768px) {
  .modal {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.modal--ban .modal__title svg {
  width: 20px;
  height: 20px;
}
.modal--secondary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: none;
}
.modal__container {
  box-shadow: 0px 15px 35px rgba(50, 50, 93, 0.1), 0px 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  margin: 20px;
  padding: 35px 0 10px 0;
  z-index: 100000000000;
  max-height: 90vh;
  background: white;
  max-width: 1100px;
}
@media (max-height: 900px) {
  .modal__container {
    overflow-y: scroll;
  }
}
@media (min-width: 440px) {
  .modal__container {
    padding: 50px 30px 20px 50px;
  }
}
.modal__container--secondary {
  height: unset;
  overflow-y: unset;
  background: linear-gradient(180deg, white 43%, #f4f4f4 43%);
}
@media (max-width: 439px) {
  .modal__container--secondary {
    padding: 20px;
  }
}
@media (min-width: 440px) {
  .modal__container--secondary {
    background: linear-gradient(180deg, white 35%, #f4f4f4 35%);
  }
}
.modal__title {
  display: flex;
  margin-bottom: 25px;
  flex-direction: column;
  margin-top: 20px;
  align-items: flex-start;
}
@media (min-width: 440px) {
  .modal__title {
    align-items: center;
    flex-direction: row;
    margin-top: 0;
  }
}
.modal__title svg {
  width: 23px;
  height: 13px;
  min-width: 23px;
  margin-right: 13px;
  margin-bottom: 5px;
}
@media (min-width: 440px) {
  .modal__title svg {
    margin-bottom: 0;
  }
}
.modal__button a {
  background: white;
}
.modal__exit {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  transform: rotateX(45deg) scale(1.5);
  color: #46211e;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: center;
  gap: 5px;
}

.page-item {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:first-child:hover .page-link {
  background: #d8d8d8;
}

.page-link {
  position: relative;
  display: block;
  padding: 15px;
  color: #393939;
  background-color: #fff;
  border: 1px solid #dee2e6;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s all ease-in-out;
}
.page-link:hover {
  background: #a3a367;
  border: 1px solid #a3a367;
}
@media (min-width: 440px) {
  .page-link {
    padding: 20px;
  }
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #a3a367;
  border-color: #a3a367;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item:last-child:hover .page-link {
  background: #d8d8d8;
  border: 1px solid #d8d8d8;
}

#google-map-holder {
  height: 339px !important;
}
#google-map-holder .gm-style-iw-d img {
  max-width: 70px;
  border-radius: 50%;
  margin: 0 auto;
}
#google-map-holder .gm-style-iw-d h3 {
  font-size: 1.6rem;
  margin: 10px 0;
}
@media (min-width: 640px) {
  #google-map-holder .gm-style-iw-d h3 {
    font-size: 2rem;
  }
}

.post-comments {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  list-style: none;
}
.post-comments__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0px;
}
.post-comments__wrap-nested .post-comment {
  border: unset;
  border-top: 1px solid #d0d0d0;
  border-radius: unset;
  margin-top: 12px;
  padding: 12px 0px 0px 32px;
}
.post-comments__top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #080808;
}
.post-comments__title {
  margin: 0px;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .post-comments__title {
    font-size: 2.4rem;
    line-height: 120%;
    font-weight: 700;
  }
}
.post-comments__count {
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 500;
}
.post-comments__form-title {
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .post-comments__form-title {
    font-size: 2.4rem;
    line-height: 120%;
    font-weight: 700;
  }
}
.post-comments__form-field {
  width: 100%;
  min-height: 67px;
  min-width: 100%;
  max-width: 100%;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  margin-bottom: 12px;
}
.post-comments__login p {
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.post-comments__login a {
  width: -moz-fit-content;
  width: fit-content;
}
.post-comment {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 12px;
  background-color: white;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  padding: 16px;
}
.post-comment__reply {
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #CCCC5F;
  color: #080808;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.post-comment__text {
  margin-block: 12px;
  color: #080808;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.post-comment__footer {
  font-size: 12px;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 10px;
}
.post-comment__name {
  color: #080808;
  margin: 0px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
.post-comment__name a {
  color: inherit;
}
.post-comment__date {
  color: #b3b3b3;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .post-comment__date {
    margin-left: auto;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.post-comment__content__top-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .post-comment__content__top-container {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.post-comment__avatar {
  width: 33px;
  height: 33px;
  margin-top: -3px;
  border-radius: 999px;
  border: 3px solid #CCCC5F;
  box-sizing: content-box;
  justify-self: center;
  overflow: hidden;
}
.post-comment__action {
  display: flex;
  align-items: center;
}
.post-comment__action.active {
  cursor: not-allowed;
  pointer-events: none;
}
.post-comment__action svg {
  stroke: rgba(151, 151, 151, 0.7490196078);
  margin-right: 4px;
  transition: 0.1s ease-in-out;
}
.post-comment__action span {
  line-height: 1;
}
.post-comment__action--like.active svg, .post-comment__action--like:hover svg {
  stroke: #3A3A3A;
}
.post-comment__action--dislike svg {
  transform: rotate(180deg);
}
.post-comment__action--dislike.active svg, .post-comment__action--dislike:hover svg {
  stroke: #E1444D;
}
.post-comment .post-comments__form--reply {
  margin-top: 10px;
}
.post-comment .post-comments__form--reply .post-comments__form-field {
  width: 100%;
  min-height: 67px;
  min-width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  margin-bottom: 12px;
}
.post-comment .post-comments__form--reply .button {
  padding: 6px 20px;
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  margin: 0;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.breadcrumbs li:not(:last-of-type)::after {
  content: "/";
  color: #080808;
  margin-inline: 3px;
}
.breadcrumbs li a {
  color: #080808;
  text-decoration: underline;
}

.feedback-modal {
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 20001 !important;
}
.feedback-modal__wrapper {
  box-shadow: 0px 15px 35px rgba(50, 50, 93, 0.1), 0px 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  margin: 30px;
  padding: 50px 20px 20px 20px;
  z-index: 20001;
  max-height: 90vh;
  max-width: 1100px;
  background: white;
}
.feedback-modal__container {
  display: grid;
  grid-template-columns: minmax(auto, 693px) 1fr;
}
.feedback-modal__container form {
  margin-top: 0 !important;
}
.feedback-modal__stars {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 10px !important;
  gap: 20px;
}
.feedback-modal__stars li {
  align-items: center;
  background-color: white;
  border: 1px solid #a3a367;
  border-radius: 50%;
  color: #393939;
  display: flex;
  height: 45px;
  width: 45px;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.feedback-modal__stars li:hover {
  color: white;
  background: #a3a367;
  border: 1px solid #a3a367;
}
.feedback-modal__stars li.active {
  color: white;
  background: #a3a367;
  border: 1px solid #a3a367;
}
@media (min-width: 768px) {
  .feedback-modal__stars {
    justify-content: left;
  }
}
.feedback-modal__answers {
  list-style: none;
  margin-bottom: 20px !important;
}
.feedback-modal__answers li {
  margin-bottom: 5px;
}
.feedback-modal__answers li input[type=checkbox] {
  vertical-align: middle;
  display: inline-block;
}
.feedback-modal__answers li input[type=checkbox]:checked {
  accent-color: #a3a367;
}
.feedback-modal__answers li label {
  vertical-align: middle;
  color: #616161;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
}
.feedback-modal__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.feedback-cta {
  position: fixed;
  bottom: 90px;
  right: 80px;
  z-index: 2000;
  cursor: pointer;
}
@media (max-width: 767px) {
  .feedback-cta {
    right: 8px;
    bottom: 80px;
  }
}
.feedback-cta__image {
  width: auto;
  height: 70px;
}
@media (max-width: 767px) {
  .feedback-cta__image {
    height: 60px;
  }
}
.feedback-cta:hover {
  opacity: 0.7;
}

.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
  border-right-width: 0;
  color: #616161;
}

.dropdown__content {
  display: none;
  position: absolute;
  padding: 12px;
  background-color: white;
  border: solid 1px #e1e8ed;
  border-radius: 8px;
  z-index: 1000;
}
.dropdown__content[data-state=open] {
  animation: animate-in 0.2s ease-out;
}
.dropdown__content[data-state=closed] {
  animation: animate-out 0.2s ease-out;
}
.dropdown__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2px;
  color: #080808;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 500;
}
.dropdown__list a {
  color: inherit;
}
.dropdown__list li {
  padding-inline: 8px;
  padding-block: 6px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.dropdown__list li:hover {
  background-color: #e1e8ed;
}

@keyframes animate-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animate-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.related-articles {
  margin-top: 80px;
}
.related-articles__title {
  border-bottom: 1.5px solid rgba(58, 58, 58, 0.12);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  padding-bottom: 32px;
}
.related-articles__grid {
  margin-top: 48px;
  margin-bottom: 0;
}

[role=tablist] {
  display: flex;
  height: 44px;
  border: 1px solid #CCCC5F;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 640px) {
  [role=tablist] {
    width: -moz-fit-content;
    width: fit-content;
  }
}
[role=tablist] [role=tab] {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 1;
  padding-inline: 16px;
  color: #080808;
  border: unset;
  width: 100%;
  height: 100%;
  text-wrap: nowrap;
  transition: background-color 0.2s ease;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}
@media (min-width: 640px) {
  [role=tablist] [role=tab] {
    min-width: 175px;
    font-size: 1.6rem;
    line-height: 120%;
    font-weight: 700;
  }
}
[role=tablist] [role=tab][aria-selected=true] {
  background-color: #CCCC5F;
}
[role=tablist] [role=tab][aria-selected=false] {
  background-color: white;
}
[role=tablist] [role=tab][aria-selected=false]:hover {
  background-color: rgb(247.144549763, 247.144549763, 230.355450237);
}

[role=tabpanel][data-state=active] {
  display: block;
}
[role=tabpanel][data-state=inactive] {
  display: none;
}

.compound-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #a0a0a0;
  background-color: white;
  color: #080808;
  width: 100%;
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 500;
}
.compound-input.primary {
  border-color: #CCCC5F;
}
.compound-input:has(.compound-input__slot--left) input {
  padding-left: 53px;
}
.compound-input:has(.compound-input__slot--right) input {
  padding-right: 53px;
}
.compound-input:has(.compound-input__addon--left) input {
  padding-left: 0;
}
.compound-input:has(.compound-input__addon--right) input {
  padding-right: 0;
}
.compound-input__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.compound-input__slot--left {
  left: 16px;
}
.compound-input__slot--right {
  right: 16px;
}
.compound-input__addon {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 12px;
  color: #080808;
  text-wrap: nowrap;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.compound-input__addon--right {
  border-left: 1px solid #CCCC5F;
}
.compound-input__addon--left {
  border-right: 1px solid #CCCC5F;
}
.compound-input__input {
  width: 100%;
  height: 100%;
  padding-inline: 16px;
  outline: none;
  border: none;
  background-color: transparent;
}
.compound-input__input::-moz-placeholder {
  color: #7f7f7f;
}
.compound-input__input::placeholder {
  color: #7f7f7f;
}

.form-container {
  padding: 16px;
}
@media (min-width: 768px) {
  .form-container {
    padding: 40px 52px;
    border: 1px solid #CCCC5F;
    border-radius: 12px;
  }
}
.form-container__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-container__grid {
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: column;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-container__grid {
    grid-template-columns: repeat(2, minmax(0px, 363px));
    margin-top: 38px;
    gap: 64px;
  }
}
.form-container__column {
  width: 100%;
}
.form-container__column.full {
  grid-column: 1/-1;
}
.form-container__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .form-container__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-container__title {
  color: #080808;
  margin: 0px;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
}
.form-container__info {
  color: #7f7f7f;
  margin-top: 15px;
  margin-bottom: 0px;
  text-wrap-style: pretty;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.form-container__info a {
  color: #080808;
  font-weight: 700;
  text-decoration: none;
}

.cke {
  border: none !important;
}
.cke_top {
  background-color: white !important;
  border: 1px solid #CCCC5F !important;
  border-radius: 8px;
}
.cke_contents {
  border: 1px solid #CCCC5F !important;
  border-radius: 8px;
  margin-top: 10px !important;
}
.cke_bottom {
  display: none !important;
}
.cke_combopanel, .cke_panel {
  border: 1px solid #CCCC5F !important;
  border-radius: 8px;
  transform: translateY(6px) !important;
}
.cke_button, .cke_combo_button, .cke_button_expandable {
  border-radius: 4px !important;
}
.cke_button:hover, .cke_combo_button:hover, .cke_button_expandable:hover {
  background-color: rgb(252.7784090909, 252.7784090909, 245.7215909091) !important;
  border: 1px solid #CCCC5F !important;
}
.cke_button_on {
  border: 1px solid #CCCC5F !important;
}

.article-page {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "preview" "specifications" "seller" "questions" "related-articles";
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 38px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  --margin-inline: 16px;
}
.article-page:has:not(.article-page__specification-section) {
  grid-template-areas: "preview" "seller" "questions" "related-articles";
}
@media (min-width: 1024px) {
  .article-page {
    grid-template-columns: auto 387px;
    grid-template-areas: "preview seller" "specifications ." "questions ." "related-articles related-articles";
  }
  .article-page:has:not(.article-page__specification-section) {
    grid-template-areas: "preview seller" "questions ." "related-articles related-articles";
  }
}
.article-page__section-title {
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .article-page__section-title {
    font-size: 2.4rem;
    line-height: 120%;
    font-weight: 700;
  }
}
.article-page .article-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  background-color: #F6F6E3;
  grid-area: preview;
}
@media (min-width: 768px) {
  .article-page .article-preview {
    border-radius: 12px;
    gap: 16px;
    padding: 24px;
  }
}
.article-page .article-preview__top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .article-page .article-preview__top-container {
    flex-wrap: nowrap;
  }
}
.article-page .article-preview__actions-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}
@media (min-width: 768px) {
  .article-page .article-preview__actions-container {
    gap: 32px;
    justify-content: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.article-page .article-preview__options-button {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #080808;
  font-size: 12px;
  background-color: transparent;
  padding: 0px;
  border: none;
  outline: none;
}
@media (min-width: 768px) {
  .article-page .article-preview__options-button {
    font-size: 1.4rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.article-page .article-preview__options-button svg {
  width: 3px;
}
@media (min-width: 768px) {
  .article-page .article-preview__options-button svg {
    width: 4px;
  }
}
.article-page .article-preview__save-button {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #080808;
  font-size: 12px;
}
@media (min-width: 768px) {
  .article-page .article-preview__save-button {
    font-size: 1.4rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.article-page .article-preview__save-button svg {
  width: 25px;
}
@media (min-width: 768px) {
  .article-page .article-preview__save-button svg {
    width: 30px;
  }
}
.article-page .article-preview__save-button.active svg {
  fill: #CCCC5F;
}
.article-page .article-preview__save-button.active svg path {
  stroke: #646429;
}
.article-page .article-preview__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-page .article-preview__title-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #080808;
}
.article-page .article-preview__title {
  letter-spacing: -0.64px;
  margin: 0;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .article-page .article-preview__title {
    font-size: 3.2rem;
    line-height: 120%;
    font-weight: 800;
    letter-spacing: -2%;
  }
}
.article-page .article-preview__price-container {
  display: flex;
  gap: 8px;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .article-page .article-preview__price-container {
    font-size: 3.2rem;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -2%;
  }
}
.article-page .article-preview__price {
  color: #080808;
}
.article-page .article-preview__old-price {
  color: #7f7f7f;
  text-decoration-line: line-through;
}
.article-page .article-preview__images__main .swiper-button-next, .article-page .article-preview__images__main .swiper-button-prev {
  display: none;
}
@media (min-width: 768px) {
  .article-page .article-preview__images__main .swiper-button-next, .article-page .article-preview__images__main .swiper-button-prev {
    display: flex;
  }
}
.article-page .article-preview__images__main .swiper-button-prev {
  left: 19px;
}
.article-page .article-preview__images__main .swiper-button-next {
  transform: rotate(180deg);
  right: 19px;
}
.article-page .article-preview__images__thumbnails {
  margin-top: 16px;
}
.article-page .article-preview__images__thumbnails .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  grid-template-rows: repeat(auto-fill, minmax(46px, 46px));
  gap: 8px;
}
@media (min-width: 768px) {
  .article-page .article-preview__images__thumbnails .swiper-wrapper {
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(102px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(102px, 46px));
  }
}
.article-page .article-preview__images__thumbnails .swiper-slide {
  opacity: 0.6;
  width: -moz-fit-content !important;
  width: fit-content !important;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
.article-page .article-preview__images__thumbnails .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.article-page .article-preview__images__thumbnails .swiper-slide-thumb-active {
  opacity: 1;
}
.article-page .article-preview__description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  color: #080808;
}
.article-page .article-preview__description__text {
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .article-page .article-preview__description__text {
    font-size: 1.6rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.article-page .seller {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px;
  background-color: white;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  margin-inline: var(--margin-inline);
  grid-area: seller;
}
@media (min-width: 768px) {
  .article-page .seller {
    margin-inline: 0;
  }
}
.article-page .seller .profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-page .seller .profile-info__image {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .article-page .seller .profile-info__image {
    width: 90px;
    height: 90px;
  }
}
.article-page .seller .profile-info__image__flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
}
.article-page .seller .profile-info__image__avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
}
.article-page .seller .profile-info__info-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-page .seller .profile-info__name {
  color: #080808;
  margin: 0;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
.article-page .seller .profile-info__location {
  color: #080808;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.article-page .seller__verified-container {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #080808;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.article-page .seller__verified-container svg {
  width: 36px;
  height: 36px;
}
.article-page .seller__login-description {
  color: #080808;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.article-page .seller__actions-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-page .seller__owner-actions-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.article-page .seller__owner-actions-container .new-button {
  justify-content: space-between;
  padding-left: 20px;
  font-weight: 500;
}
.article-page .seller__delete-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  background-color: #f10d11;
  border-radius: 6px;
  margin-right: -6px;
}
.article-page .seller__share {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #080808;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.article-page .seller__share span {
  margin-right: 8px;
}
.article-page .seller__share svg {
  width: 38px;
  height: 38px;
}
.article-page__specification-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-inline: var(--margin-inline);
  grid-area: specifications;
}
@media (min-width: 768px) {
  .article-page__specification-section {
    margin-inline: 0px;
    gap: 10px;
  }
}
.article-page__specification-section p {
  grid-column: 1/3;
}
.article-page__specification-section__list {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 8px;
  list-style: none;
}
@media (min-width: 768px) {
  .article-page__specification-section__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
}
.article-page__specification-section__item {
  padding: 14px 12px;
  color: #080808;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .article-page__specification-section__item {
    font-size: 1.6rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.article-page__questions {
  margin-inline: var(--margin-inline);
  background-color: #F6F6E3;
  border-radius: 12px;
  grid-area: questions;
}
@media (min-width: 768px) {
  .article-page__questions {
    margin-inline: 0px;
  }
}
.article-page__questions__question {
  background-color: white;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  padding: 16px;
}
.article-page__related-articles {
  margin-inline: var(--margin-inline);
  background-color: #F6F6E3;
  border-radius: 12px;
  padding: 24px;
  grid-area: related-articles;
  overflow: hidden;
}
@media (min-width: 768px) {
  .article-page__related-articles {
    margin-inline: 0px;
  }
}
.article-page__related-articles .article-page__section-title {
  margin-bottom: 0px;
}
.article-page__related-articles .swiper-slide {
  height: auto;
}
.article-page__related-articles__top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-page__related-articles__top-container .swiper-button-next, .article-page__related-articles__top-container .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
.article-page__related-articles__navigation-container {
  display: flex;
  gap: 6px;
}
.article-page__related-articles__content {
  margin-top: 16px;
}
.article-page .swiper-button-next, .article-page .swiper-button-prev {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: white;
  margin: unset;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .article-page .swiper-button-next, .article-page .swiper-button-prev {
    width: 43px;
    height: 43px;
  }
}
.article-page .swiper-button-next svg, .article-page .swiper-button-prev svg {
  height: 12px;
  color: #080808;
}
.article-page .swiper-button-next::after, .article-page .swiper-button-prev::after {
  display: none;
}
.article-page .swiper-button-next {
  transform: rotate(180deg);
}

.article-form-page .my-account {
  display: none;
}
@media (min-width: 640px) {
  .article-form-page .my-account {
    display: block;
  }
}
.article-form-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (min-width: 640px) {
  .article-form-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.styleguide__colors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.styleguide__colors div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  text-align: center;
  padding: 10px;
}
.styleguide__section {
  margin-top: 100px;
}
.styleguide__section span {
  color: #a3a367;
}
.styleguide__icons {
  background: #f4f5f7;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  justify-items: center;
}
.styleguide__icons svg {
  width: 50px;
}
.styleguide__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.styleguide__list {
  font-size: 2rem;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.styleguide__list div {
  margin-bottom: 50px;
}
.styleguide__alerts {
  display: flex;
  gap: 5px;
}

.page-content {
  padding: 60px 0 25px 0;
}
@media (min-width: 1024px) {
  .page-content {
    padding: 114px 0 53px 0;
  }
}
.page-content__title-logo {
  display: flex;
  border-bottom: 2px solid #C6C6C5;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (min-width: 640px) {
  .page-content__title-logo {
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    gap: 50px;
    flex-direction: row;
    padding-bottom: 0;
  }
}
.page-content__title-logo svg {
  width: 227px;
  height: 38px;
  min-width: 227px;
  min-height: 38px;
}
.page-content__title {
  color: #3a3a3a;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .page-content__title {
    margin-bottom: 24px;
  }
}
.page-content__menu {
  list-style-type: none;
  display: flex;
  padding-bottom: 5px;
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-content__menu {
    padding-bottom: 0;
  }
}
.page-content__menu--small {
  padding-left: 60px;
  gap: 100px;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 15px;
}
.page-content__menu--small::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f4f4f4;
}
.page-content__menu::-webkit-scrollbar {
  height: 2px;
  background: white;
}
.page-content__menu::-webkit-scrollbar-thumb {
  height: 7px;
  background: #616161;
}
.page-content__menu .active {
  color: #a3a367;
}
.page-content__menu .active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  transform: scale(0);
  background: currentColor;
  transition: transform 0.3s ease-in-out;
}
.page-content__menu .active--small::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 4px;
  transform: scale(0);
  background: currentColor;
  transition: transform 0.3s ease-in-out;
}
.page-content__menu__item {
  color: #616161;
  padding-bottom: 5px;
  position: relative;
}
.page-content__menu__item.active::after {
  transform: scale(1);
  color: #a3a367;
}
.page-content__menu__item.active.active--small::after {
  transform: translateX(-50%);
}
.page-content__menu__item:hover {
  color: #a3a367;
  transition: color 0.3s ease-in-out;
}
.page-content__text {
  background: #f5f5f5;
  border-radius: 0px 0px 4px 4px;
  padding: 15px;
  margin-bottom: 35px;
  color: #393939;
  position: relative;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-content__text {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .page-content__text {
    margin-bottom: 75px;
    padding: 27px;
  }
}
.page-content__text p {
  padding-bottom: 10px;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .page-content__text p {
    padding-bottom: 20px;
  }
}
.page-content__text p:nth-child(1), .page-content__text p:nth-child(3), .page-content__text p:nth-child(4) {
  padding-bottom: 15px;
}
@media (min-width: 1024px) {
  .page-content__text p:nth-child(1), .page-content__text p:nth-child(3), .page-content__text p:nth-child(4) {
    padding-bottom: 30px;
  }
}
.page-content__text ul {
  font-size: 1.4rem;
  padding-left: 26px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .page-content__text ul {
    padding-bottom: 20px;
  }
}

.my-account-page {
  position: relative;
}
.my-account-page__modal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(60, 60, 52, 0.15);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: 100;
}
.my-account-page__tab {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  width: 90%;
}
@media (min-width: 1024px) {
  .my-account-page__tab {
    width: 55%;
  }
}
.my-account-page__tab .c-form__tab {
  background: white;
  margin-bottom: 0;
}
.my-account-page__tab .c-form__container {
  margin-bottom: 0;
}

.my-account {
  margin-bottom: 38px;
}
.my-account__container {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #F6F6E3;
  background-color: #F6F6E3;
}
@media (min-width: 768px) {
  .my-account__container {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .my-account__container {
    grid-template-columns: 1fr minmax(auto, 300px);
    justify-content: space-between;
    gap: 20px;
  }
}
.my-account__name {
  white-space: nowrap;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
.my-account__left {
  display: flex;
  gap: 20px;
}
.my-account__image {
  position: relative;
  width: 90px;
  height: 90px;
  z-index: 2;
}
.my-account__image__flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
}
.my-account__image__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.my-account__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.my-account__info p {
  margin: 0;
}
.my-account__verified-container {
  display: flex;
  align-items: center;
  gap: 11px;
}
.my-account__verified-container svg {
  width: 36px;
  height: 36px;
}
.my-account__title {
  margin: 0px;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: 800;
}
.my-account__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  align-items: flex-end;
}
.my-account__right__items {
  display: flex;
  gap: 8px;
}
.my-account__input {
  white-space: nowrap;
  font-size: 1.6rem;
}
@media (min-width: 640px) {
  .my-account__input {
    font-size: 3.8rem;
  }
}
@media (min-width: 1024px) {
  .my-account__input {
    margin-right: 5px;
  }
}
.my-account__contact {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .my-account__contact {
    padding-top: 45px;
  }
}
.my-account__contact svg {
  width: 20px;
  height: 20px;
}
.my-account__ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d8d8d8;
  background: #fbfbff;
  height: 48px;
  position: relative;
}
.my-account__ad a:last-child {
  background: #bed4ed;
}
.my-account__field {
  display: flex;
  align-items: center;
  height: 48px;
}
.my-account__field input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  background: #f4f4f4;
  padding: 0;
  padding-left: 10px;
  padding-right: 15px;
}
.my-account__field input::-moz-placeholder {
  color: #616161;
}
.my-account__field input::placeholder {
  color: #616161;
}
.my-account__field svg {
  fill: white;
}
.my-account__field a,
.my-account__field a:hover {
  background: #a3a367;
}
.my-account__button {
  margin-bottom: 15px;
}
.my-account__button a {
  width: 100%;
}
.my-account__contact-wrapper {
  display: grid;
  gap: 15px;
  border: 1px solid #cad1d7;
  border-radius: 4px;
  padding: 12px;
}
@media (min-width: 440px) {
  .my-account__contact-wrapper {
    border: unset;
    padding: unset;
  }
}
.my-account__contact-wrapper__box {
  display: flex;
  align-items: baseline;
  width: -moz-fit-content;
  width: fit-content;
  gap: 7px;
  margin: 0 auto;
}
@media (min-width: 440px) {
  .my-account__contact-wrapper__box {
    display: none;
  }
}
.my-account__contact-wrapper__box svg {
  stroke: #393939;
  width: 11px;
  height: 7px;
  stroke-width: 2px;
}
.my-account__contact-wrapper .my-account__box {
  display: none;
}
@media (min-width: 440px) {
  .my-account__contact-wrapper .my-account__box {
    display: block;
  }
}
.my-account__contact-wrapper .my-account__box.active {
  display: block;
}
.my-account__hidden {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.listing {
  display: flex;
  flex-direction: column;
}
.listing__ad {
  display: block;
}
@media (max-width: 1023px) {
  .listing__ad {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .listing {
    margin: 0 0 130px 0;
    gap: 40px;
  }
}
.listing__gallery {
  overflow: hidden;
}
.listing__container {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
@media (min-width: 1024px) {
  .listing__container {
    display: grid;
    grid-template-columns: 1fr 483px;
    grid-auto-rows: auto auto 140px auto;
  }
}
.listing .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.listing .swiper-slide {
  background: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.listing .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #3a3a3a;
  max-height: 564px;
}
.listing .swiper-button-prev, .listing .swiper-button-next {
  background: #a3a367;
  width: 32px;
  height: 110px;
  transform: translateY(-30%);
  transition: 0.3s all ease-in-out;
}
.listing .swiper-button-prev:hover, .listing .swiper-button-next:hover {
  opacity: 0.8;
}
.listing .swiper-button-prev::after, .listing .swiper-button-next::after {
  width: 8px;
  height: 13px;
  font-size: unset;
  color: white;
  font-weight: 900;
}
.listing .swiper-button-next {
  right: 0;
}
.listing .swiper-button-prev {
  left: 0;
}
.listing__description {
  grid-column: 1/2;
  order: 8;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .listing__description {
    order: unset;
    font-size: 1.6rem;
    margin-bottom: 0;
    margin-top: 25px;
  }
}
.listing__description__text {
  border: 1px solid #b5b5b5;
  padding: 10px 10px 30px 10px;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .listing__description__text {
    padding: 17px 24px 80px 24px;
    border-radius: unset;
  }
}
.listing__description__text ul,
.listing__description__text ol {
  padding-left: 30px;
  margin-bottom: 16px;
}
.listing__description__text img {
  width: auto !important;
}
.listing__description__text pre {
  white-space: normal !important;
}
.listing__description__text table {
  width: auto !important;
}
.listing__intro {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .listing__intro {
    margin-bottom: 250px;
  }
}
.listing__finished {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 0 0;
  letter-spacing: 2px;
  margin-bottom: -10px;
}
@media (min-width: 1024px) {
  .listing__finished {
    margin-bottom: unset;
    padding: 0 0 10px 0;
  }
}
.listing__finished h3 {
  font-size: 1.8rem;
}
@media (min-width: 640px) {
  .listing__finished h3 {
    font-size: 2.4rem;
  }
}
.listing__finished img {
  width: 30px;
  height: 30px;
}
.listing__title {
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  gap: 10px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .listing__title {
    gap: unset;
  }
}
.listing__title div {
  display: flex;
}
.listing__title div:nth-child(2) {
  margin-left: -5px;
}
.listing__title .discount {
  position: unset;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
@media (min-width: 1024px) {
  .listing__title .discount {
    display: none;
  }
}
.listing__title .discount svg {
  width: 10px;
  height: 10px;
}
.listing__title .discount--star svg {
  width: 10px !important;
  height: 10px !important;
}
@media (min-width: 1024px) {
  .listing__title {
    font-size: 3.6rem;
    line-height: 37px;
    margin-bottom: 16px;
  }
}
.listing__weapon {
  display: flex;
  align-items: center;
  order: -1;
  margin-bottom: 5px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .listing__weapon {
    order: unset;
    margin-bottom: 16px;
    margin-top: 0;
  }
}
.listing__weapon a {
  color: #979797;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .listing__weapon a {
    padding: 2px 20px;
    background: #d8d8d8;
    text-align: center;
    font-weight: bold;
    color: #616161;
    font-size: 1.6rem;
  }
}
.listing__weapon a.has-sub-breadcrumb-item {
  position: relative;
  margin-right: 25px;
}
.listing__weapon a.has-sub-breadcrumb-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='8' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.8355 0L0.401001 1.41L5.06059 6L0.401001 10.59L1.8355 12L7.93977 6L1.8355 0Z' fill='%23616161'/%3E%3C/svg%3E");
  width: 5px;
  height: 8px;
}
@media (min-width: 1024px) {
  .listing__weapon a.has-sub-breadcrumb-item::after {
    width: 8px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.8355 0L0.401001 1.41L5.06059 6L0.401001 10.59L1.8355 12L7.93977 6L1.8355 0Z' fill='%23616161'/%3E%3C/svg%3E");
  }
}
.listing__numbers {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  order: 1;
  font-size: 1.2rem;
}
@media (min-width: 640px) {
  .listing__numbers {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .listing__numbers {
    border-bottom: 1px solid #d8d8d8;
    order: unset;
    margin-bottom: 16px;
  }
}
.listing__numbers p:first-child {
  margin-right: 30px;
}
.listing__user {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  order: 9;
  position: relative;
  z-index: 1;
}
.listing__user p {
  display: none;
  font-size: 1.8rem;
}
@media (min-width: 1024px) {
  .listing__user p {
    display: block;
  }
}
.listing__price {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .listing__price {
    flex-direction: column;
    gap: 10px;
    border-bottom: unset;
    margin-bottom: 0;
  }
}
.listing__price div {
  display: flex;
  text-align: center;
  white-space: nowrap;
  align-items: flex-end;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .listing__price div {
    font-size: 1.6rem;
  }
}
.listing__price div p {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .listing__price div p {
    padding: 17px 30px;
  }
}
@media (min-width: 1024px) {
  .listing__price div p:first-child {
    background: #f4f4f4;
  }
}
@media (min-width: 1024px) {
  .listing__price div p:last-child {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.listing__price div svg {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
.listing__state {
  font-size: 1.4rem;
  line-height: 21px;
  color: #616161;
  margin-left: 5px;
}
@media (min-width: 1024px) {
  .listing__state {
    border: 1px solid #a3a367;
    font-size: 2.4rem;
    color: #a3a367;
    margin-left: 0;
  }
}
.listing__pricing {
  font-size: 1.8rem;
  color: #a3a367;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .listing__pricing {
    background: #a3a367;
    color: white;
    font-size: 2.4rem;
    margin-left: 0;
    display: unset;
    flex-direction: unset;
  }
}
.listing__pricing svg {
  display: none;
}
@media (min-width: 1024px) {
  .listing__pricing svg {
    display: block;
  }
}
.listing__subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  background: #efefef;
  padding: 8px 16px 8px 0;
}
@media (min-width: 1024px) {
  .listing__subtitle {
    width: unset;
    background: unset;
    margin-bottom: 8px;
    padding: unset;
  }
}
.listing__subtitle h3 {
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  .listing__subtitle h3 {
    font-size: 2.4rem;
  }
}
.listing__subtitle svg {
  width: 24px;
  height: 17px;
  order: -1;
}
.listing__info {
  position: relative;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .listing__info {
    display: flex;
    justify-content: flex-end;
    box-shadow: unset;
    padding: 15px;
    align-items: center;
    background: #f4f4f4;
  }
}
.listing__info img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .listing__info img {
    width: 122px;
    height: 122px;
    margin-left: 22px;
    position: unset;
    transform: unset;
  }
}
.listing__info svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.listing__info ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  text-align: end;
  padding: 10px 16px 10px 0;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .listing__info ul {
    padding: unset;
    font-size: 1.6rem;
  }
}
.listing__info ul li {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .listing__info ul li:first-child {
    font-weight: 600;
  }
}
.listing__info-cta {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.listing__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .listing__contact {
    grid-template-columns: repeat(2, 1fr);
    height: 48px;
  }
}
.listing__phone {
  display: flex;
  height: 48px;
}
.listing__phone svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.listing__phone input {
  width: 100%;
  border: none;
  outline: none;
  padding: 13px 16px;
}
.listing__phone input::-moz-placeholder {
  color: #616161;
}
.listing__phone input::placeholder {
  color: #616161;
}
.listing__phone a,
.listing__phone a:hover {
  background: #a3a367;
}
.listing__category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 10px;
  margin-bottom: 11px;
  border: 1px solid #cad1d7;
  border-radius: 4px;
}
.listing__category p {
  margin-bottom: 0;
}
.listing__title-box {
  display: flex;
  flex-direction: column;
}
.listing__button {
  margin-bottom: 10px;
}
.listing__button a {
  width: 100%;
}
.listing__button--mobile {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .listing__button--mobile {
    display: none;
  }
}
.listing__categories {
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .listing__categories {
    font-size: 1.6rem;
    margin-top: 25px;
  }
}
.listing__options {
  order: 20;
  margin-top: 10px;
}
@media (min-width: 640px) {
  .listing__options {
    align-items: unset;
  }
}
.listing__options-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}
@media (min-width: 640px) {
  .listing__options-buttons {
    align-items: flex-end;
    flex-direction: row;
    gap: 10px;
    margin-top: 0;
  }
}
.listing__options-buttons a {
  width: 100% !important;
  padding: 11px 25px !important;
  margin-top: 0;
}

.notification-bar {
  width: 100%;
  background: #1ABC9C;
  z-index: 1000;
}
.menu-open .notification-bar {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.notification-bar__container {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 10px 50px;
}
.notification-bar__container a {
  color: #525f7f;
  text-decoration: underline;
}
.notification-bar__symbol {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
  transform: rotateX(45deg) scale(1.5);
}

.message__container {
  display: flex;
  flex-direction: column;
}
.message__boxes {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .message__boxes {
    grid-template-columns: 250px 1fr;
    gap: unset;
  }
}
.message__box1 {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
}
.message__box1 a {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 8px;
  background: #f4f5f7;
  transition: 0.3s all ease-in-out;
}
.message__box1 a:hover {
  background: #d8d8d8;
  color: #a3a367;
}
.message__box1 a:hover svg {
  fill: #a3a367;
}
.message__box1 a.active {
  background: #d8d8d8;
  color: #a3a367;
  font-weight: 600;
}
.message__box1 a.active svg {
  fill: #a3a367;
}
.message__box1 a svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #1D1D1D;
  transition: 0.3s all ease-in-out;
}
.message__box2 {
  background: #ECECEC;
}
.message__box2 ul {
  min-height: 200px;
  list-style-type: none;
}
.message__box2 ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #b5b5b5;
  padding: 10px 15px;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 440px) {
  .message__box2 ul li {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .message__box2 ul li {
    gap: 20px;
  }
}
.message__box2 ul li:hover {
  background: #c6c6c5;
}
@media (min-width: 440px) {
  .message__box2 ul li:hover .message__time {
    display: none;
  }
}
@media (min-width: 440px) {
  .message__box2 ul li:hover .message__actions {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.message__box2 ul li a {
  color: #3a3a3a;
}
.message__box2 ul li a:last-child {
  margin-left: 20px;
}
.message__box2 ul li.active {
  background: #a3a367;
}
.message__box2 ul li.active .message__excerpt {
  text-decoration: underline;
}
.message__box2 ul li.active .message__title {
  text-decoration: underline;
}
.message__box2 input {
  cursor: pointer;
}
.message__intro {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #b5b5b5;
  padding: 15px;
  flex-direction: column;
  align-items: baseline;
}
@media (min-width: 440px) {
  .message__intro {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}
.message__intro a {
  padding: 5px 6px;
  font-size: 1.4rem;
}
.message__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.message__user {
  font-weight: 600;
  color: #3a3a3a;
}
.message__title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.message__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (min-width: 440px) {
  .message__excerpt {
    max-width: 50px;
  }
}
@media (min-width: 640px) {
  .message__excerpt {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .message__excerpt {
    max-width: 100px;
  }
}
@media (min-width: 1024px) {
  .message__excerpt {
    margin-left: 20px;
    max-width: 350px;
  }
}
.message__time {
  margin-left: auto;
  font-size: 1.2rem;
  color: #3a3a3a;
  white-space: nowrap;
  order: 1;
}
.message__count {
  margin-left: auto;
}
.message__actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-left: auto;
}
@media (min-width: 440px) {
  .message__actions {
    display: none;
  }
}
.message__actions svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.message__actions svg:hover {
  transform: scale(1.2);
}
.message__actions--private {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: unset;
}
@media (min-width: 440px) {
  .message__actions--private {
    margin-right: 15px;
    margin-left: auto;
  }
}
.message__important, .message__delete, .message__back, .message__user-2, .message__unread {
  position: relative;
  width: 16px;
  height: 16px;
}
.message__important-text, .message__delete-text, .message__back-text, .message__user-2-text, .message__unread-text {
  opacity: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  background: #e89f71;
  padding: 2px 6px;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s all ease-in-out;
  pointer-events: none;
}
.message__important:hover .message__important-text, .message__delete:hover .message__important-text, .message__back:hover .message__important-text, .message__user-2:hover .message__important-text, .message__unread:hover .message__important-text {
  opacity: 1;
  pointer-events: initial;
}
.message__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #b5b5b5;
  padding: 15px;
  justify-content: space-between;
}
@media (min-width: 440px) {
  .message__header {
    flex-direction: row;
  }
}
.message__header-title {
  font-size: 1.6rem;
}
@media (min-width: 640px) {
  .message__header-title {
    font-size: 2.4rem;
  }
}
.message__body {
  display: flex;
  padding: 20px 15px;
  flex-direction: column;
  gap: 30px;
}
.message__body-item {
  display: grid;
  justify-items: center;
}
@media (min-width: 1024px) {
  .message__body-item {
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.message__body-item--grey .message__body-user {
  background: #d8d8d8;
}
.message__body-item--grey .message__body-text {
  background: #d8d8d8;
}
.message__body-user {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #a3a367;
  border-radius: 10px;
  background: white;
  margin-bottom: 20px;
  width: 150px;
  height: 100px;
}
@media (min-width: 1024px) {
  .message__body-user {
    margin-bottom: 0;
  }
}
.message__body-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.message__body-user span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 200px;
  text-align: center;
  margin-top: 10px;
}
.message__body-text {
  background: white;
  border-radius: 10px;
  padding: 20px 15px;
  position: relative;
  width: 100%;
}
.message__body-text p {
  white-space: pre-line;
}
.message__body-text span {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.2rem;
}
.message__body-type {
  margin-bottom: 20px;
}
.message__body-type textarea {
  cursor: unset;
  outline: none;
  width: 100%;
  padding: 12px;
  border: 1px solid #a3a367;
  border-radius: 10px;
  margin: 5px 0;
  resize: none;
  height: 120px;
}
.message__body-type__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.message__body-type__buttons svg {
  width: 20px;
  height: 20px;
  fill: white;
  stroke: white;
}
.message__body-type__buttons a:first-child {
  margin-right: 10px;
}

.page-404 {
  margin: 40px 0;
}
@media (min-width: 768px) {
  .page-404 {
    margin: 80px 0;
  }
}
.page-404__title {
  font-size: 10rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-404__title {
    font-size: 20rem;
  }
}
.page-404__subtitle {
  margin-bottom: 25px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page-404__subtitle {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}

.locations {
  padding: 0 18px;
}
.locations .mapouter {
  position: relative;
  text-align: right;
  height: 300px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .locations .mapouter {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .locations .mapouter {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.locations .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .locations .gmap_canvas {
    height: 500px;
  }
}
.locations__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
  list-style-type: decimal;
  padding: 0 18px;
  font-size: 1.2rem;
}
@media (min-width: 640px) {
  .locations__list {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .locations__list {
    margin-bottom: 70px;
  }
}
.locations__list-item {
  display: flex;
  align-items: center;
  color: #a3a367;
  font-weight: 600;
  padding-left: 5px;
}
.locations__list-country {
  width: 20px;
  min-width: 20px;
  height: 15px;
  margin-right: 10px;
}
.locations__list-icon {
  width: 14px;
  min-width: 14px;
  height: 24px;
  fill: #3a3a3a;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.locations__list-icon:hover {
  fill: #9c9c9c;
}
.locations .c-form {
  max-width: 317px;
}
.locations .c-form label {
  margin-bottom: 16px;
  font-weight: 700;
  color: #525f7f;
}
.locations .c-form input {
  border: 1px solid #cad1d7;
  border-radius: 4px;
  outline: 0;
  color: #adb5bd;
}
.locations .c-form input::-moz-placeholder {
  color: #adb5bd;
}
.locations .c-form input::placeholder {
  color: #adb5bd;
}
.locations .c-form a {
  margin: 10px 0 40px 0;
}
.locations .c-form a svg {
  margin-left: 5px;
}
.locations__title {
  margin-bottom: 40px;
}
.locations__box {
  padding: 0 18px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .locations__box {
    padding-top: 0;
  }
}
.locations-title {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .locations-title {
    margin-bottom: 40px;
  }
}
.locations-subtitle {
  padding-bottom: 20px;
  border-bottom: 1px solid #c6c6c5;
}
.locations__buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.blog-post-featured {
  display: block;
  margin-bottom: 20px;
}

.blog-post-intro {
  background: #3a3a3a;
  color: #fff;
  padding: 30px 0;
}
.blog-post-intro__title {
  margin-bottom: 10px;
}
.blog-post-intro__author {
  display: flex;
  color: #e8e854;
  gap: 20px;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .blog-single-post h1 {
    margin-bottom: 22px !important;
  }
}
@media (min-width: 1024px) {
  .blog-single-post .blog__author {
    padding: 22px 0 !important;
  }
}

.blog-intro {
  position: relative;
}
.blog-intro__meta {
  background: rgba(58, 58, 58, 0.5);
  padding: 16px;
  color: #fff;
  max-width: 750px;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .blog-intro__meta {
    margin-bottom: 32px;
  }
}
.blog-intro__title {
  font-size: 2.2rem;
}
@media (min-width: 640px) {
  .blog-intro__title {
    font-size: 3.6rem;
  }
}
@media (min-width: 768px) {
  .blog-intro__title {
    font-size: 5.2rem;
  }
}
.blog-intro .wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-intro__author {
  display: flex;
  gap: 32px;
  color: #e8e854;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}
.blog-intro__image {
  max-height: 540px;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.blog-card {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #CCCC5F;
  border: 1px solid #98983c;
  border-radius: 8px;
  height: 100%;
}
.blog-card a {
  color: #080808;
}
.blog-card img {
  width: 100%;
  height: 164px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
@media (min-width: 640px) {
  .blog-card img {
    height: 289px;
  }
}
.blog-card__date {
  color: #333333;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
.blog-card__details {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  width: 100%;
  height: 100%;
}
.blog-card__details > a {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 16px;
  margin-bottom: 0px;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
}
.blog-card__description {
  flex: 1;
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 500;
}
.blog-card__read-more {
  color: white;
  background-color: #080808;
  border-radius: 8px;
  padding: 7px 12px;
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 700;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}
.blog-tags a {
  padding: 10px 22px;
  background: #E1E1E1;
  border-radius: 18px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  color: #000000;
}

.related-posts-holder {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .related-posts-holder__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-posts-holder .product-grid {
  margin-top: 0;
}
.related-posts-holder h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3A3A3A;
}

.blog-content img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.blog-content p {
  margin-bottom: 30px;
}
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 50px;
}
.blog-content ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 24px;
}
.blog-content ol {
  list-style: numeric;
  padding-left: 32px;
  margin-bottom: 24px;
}
.blog-gallery {
  margin-top: 50px;
}
.blog-gallery h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3A3A3A;
}
.blog-gallery img {
  border-radius: 12px;
}
.blog-gallery .swiper-button-prev,
.blog-gallery .swiper-button-next {
  height: 54px;
  width: 54px;
  background: rgba(217, 217, 217, 0.35);
  border-radius: 50%;
  top: calc(50% + 14px);
}
.blog-gallery .swiper-button-prev:after,
.blog-gallery .swiper-button-next:after {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.register__form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .register__form-footer {
    align-items: flex-start;
    margin-top: 38px;
  }
}
.register__form-footer #captcha-holder {
  width: -moz-fit-content;
  width: fit-content;
}
.register__form-footer__submit-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 38px;
  gap: 16px;
}
@media (min-width: 640px) {
  .register__form-footer__submit-container {
    flex-direction: row;
    gap: 100px;
    justify-content: center;
  }
}
.register__form-footer__info {
  text-wrap-style: balance;
  color: #7f7f7f;
  max-width: 400px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 640px) {
  .register__form-footer__info {
    text-align: left;
  }
}
.register__form-footer button {
  min-width: 170px;
}
.register__privacy-label {
  display: flex;
  flex-direction: column;
  color: #7f7f7f !important;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 640px) {
  .register__privacy-label {
    flex-direction: row;
    gap: 42px;
  }
}
.register__privacy-label .link {
  color: #080808;
  font-weight: 700;
}
.register__privacy-label .link a {
  color: inherit;
}

.home-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .home-page {
    gap: 64px;
  }
}
.home-page__carousel {
  position: relative;
  border-radius: 12px;
  height: 279px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .home-page__carousel {
    height: 352px;
  }
}
.home-page__carousel .swiper {
  height: 100%;
}
.home-page__carousel__item {
  position: relative;
  background-color: rgba(0, 0, 0, 0.9);
}
.home-page__carousel__item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
}
.home-page__carousel__item__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
@media (min-width: 640px) {
  .home-page__carousel__item__content {
    padding: 44px;
  }
}
.home-page__carousel__item__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 39.2px;
  letter-spacing: -0.56px;
  color: white;
}
@media (min-width: 640px) {
  .home-page__carousel__item__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 72.8px;
    letter-spacing: -1.04px;
    max-width: 765px;
  }
}
.home-page__carousel__item__action {
  display: flex;
  align-items: center;
  margin-top: 33px;
  padding: 9px 14px;
  border-radius: 12px;
  background-color: white;
  color: #080808;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 800;
  line-height: 17.28px;
}
@media (min-width: 640px) {
  .home-page__carousel__item__action {
    padding: 12px 18px;
    margin-top: auto;
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 800;
  }
}
.home-page__carousel__navigation {
  position: absolute;
  display: none;
  gap: 6px;
  right: 24px;
  bottom: 24px;
}
@media (min-width: 640px) {
  .home-page__carousel__navigation {
    display: flex;
  }
}
.home-page__carousel__navigation .swiper-button-prev, .home-page__carousel__navigation .swiper-button-next {
  position: static;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: white;
  flex-shrink: 0;
  margin: unset;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #d0d0d0;
}
.home-page__carousel__navigation .swiper-button-prev svg, .home-page__carousel__navigation .swiper-button-next svg {
  height: 12px;
  color: #080808;
}
@media (min-width: 640px) {
  .home-page__carousel__navigation .swiper-button-prev svg, .home-page__carousel__navigation .swiper-button-next svg {
    height: 14px;
  }
}
.home-page__carousel__navigation .swiper-button-prev::after, .home-page__carousel__navigation .swiper-button-next::after {
  display: none;
}
.home-page__carousel__navigation .swiper-button-prev.swiper-button-disabled, .home-page__carousel__navigation .swiper-button-next.swiper-button-disabled {
  pointer-events: all !important;
}
.home-page__carousel__navigation .swiper-button-prev {
  left: 10px;
}
.home-page__carousel__navigation .swiper-button-next {
  transform: rotate(180deg);
  right: 10px;
}
.home-page__carousel .swiper-pagination {
  height: 10px !important;
  bottom: 25px !important;
}
@media (min-width: 640px) {
  .home-page__carousel .swiper-pagination {
    display: none;
  }
}
.home-page__carousel .swiper-pagination-bullet {
  border: 1px solid #d0d0d0;
  border-radius: 99px;
  background-color: white;
  width: 10px;
  height: 10px;
}
.home-page__carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #CCCC5F;
}
.home-page__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .home-page__section-header {
    margin-bottom: 26px;
  }
}
.home-page__section-action-link {
  color: #080808;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 1.4rem;
  line-height: 120%;
  font-weight: 500;
}
@media (min-width: 640px) {
  .home-page__section-action-link {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 500;
  }
}
.home-page__section-title {
  color: #080808;
  letter-spacing: -0.48px;
  margin: 0px;
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 800;
  letter-spacing: -2%;
}
@media (min-width: 640px) {
  .home-page__section-title {
    font-size: 3.2rem;
    line-height: 120%;
    font-weight: 800;
    letter-spacing: -2%;
  }
}
@media (min-width: 640px) {
  .home-page__section--featured {
    border-radius: 12px;
    border: 6px solid #CCCC5F;
    padding: 36px;
  }
}
.home-page__section .new-button {
  margin-top: 27px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .home-page__section .new-button {
    margin-top: 36px;
  }
}
.home-page__shops {
  border-radius: 12px;
  border: 1px solid #bfbf90;
  background: #F6F6E3;
  padding: 24px 16px;
}
@media (min-width: 640px) {
  .home-page__shops {
    padding: 52px 24px;
  }
}
.home-page__shops__slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-page__shops .swiper-button-prev, .home-page__shops .swiper-button-next {
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 999px;
  background-color: white;
  flex-shrink: 0;
  margin: unset;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #d0d0d0;
}
@media (min-width: 640px) {
  .home-page__shops .swiper-button-prev, .home-page__shops .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
  }
}
.home-page__shops .swiper-button-prev svg, .home-page__shops .swiper-button-next svg {
  height: 12px;
  color: #080808;
}
@media (min-width: 640px) {
  .home-page__shops .swiper-button-prev svg, .home-page__shops .swiper-button-next svg {
    height: 14px;
  }
}
.home-page__shops .swiper-button-prev::after, .home-page__shops .swiper-button-next::after {
  display: none;
}
.home-page__shops .swiper-button-prev.swiper-button-disabled, .home-page__shops .swiper-button-next.swiper-button-disabled {
  pointer-events: all !important;
}
.home-page__shops .swiper-button-prev {
  left: 10px;
}
.home-page__shops .swiper-button-next {
  transform: rotate(180deg);
  right: 10px;
}
@media (min-width: 640px) {
  .home-page__shops .swiper-slide {
    margin-top: 0px !important;
  }
}
.home-page__shops__list {
  list-style: none;
  margin-bottom: 0px;
}
.home-page__shops__shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 148px;
  margin: auto;
}
@media (min-width: 640px) {
  .home-page__shops__shop {
    gap: 28px;
    padding-bottom: 24px;
    width: 224px;
  }
}
.home-page__shops__shop__image {
  width: 125px;
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 9999px;
}
@media (min-width: 640px) {
  .home-page__shops__shop__image {
    width: 190px;
    height: 190px;
  }
}
.home-page__shops__shop__name {
  color: #080808;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 14.303px;
}
@media (min-width: 640px) {
  .home-page__shops__shop__name {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 800;
  }
}
.home-page__blog-posts {
  position: relative;
}
.home-page__blog-posts .swiper-button-prev, .home-page__blog-posts .swiper-button-next {
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  top: 60px;
  border-radius: 999px;
  background-color: white;
  flex-shrink: 0;
  margin: unset;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #d0d0d0;
}
@media (min-width: 640px) {
  .home-page__blog-posts .swiper-button-prev, .home-page__blog-posts .swiper-button-next {
    display: none;
  }
}
.home-page__blog-posts .swiper-button-prev svg, .home-page__blog-posts .swiper-button-next svg {
  height: 12px;
  color: #080808;
}
@media (min-width: 640px) {
  .home-page__blog-posts .swiper-button-prev svg, .home-page__blog-posts .swiper-button-next svg {
    height: 14px;
  }
}
.home-page__blog-posts .swiper-button-prev::after, .home-page__blog-posts .swiper-button-next::after {
  display: none;
}
.home-page__blog-posts .swiper-button-prev.swiper-button-disabled, .home-page__blog-posts .swiper-button-next.swiper-button-disabled {
  pointer-events: all !important;
}
.home-page__blog-posts .swiper-button-prev {
  left: 10px;
}
.home-page__blog-posts .swiper-button-next {
  transform: rotate(180deg);
  right: 10px;
}
.home-page__blog-posts .swiper-slide {
  height: auto;
}
