/* VARS */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey: #b0b0b0;
  --color-grey-light: #f2f2f2;
  --color-grey-light2: #dddddd;
  --color-grey-dark: #a4a4a4;
  --color-red: #ff0000;
}

/* FONTS */

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

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

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

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  min-width: 360px;
  height: 100%;
  background-color: var(--color-black);
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

input,
button,
textarea,
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  background-color: transparent;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

legend {
  display: block;
}

/* BODY */

body {
  color: var(--color-black);
  font-family: "BrandonGrotesque", sans-serif;
  font-size: 18px;
  line-height: 1;
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* WRAPPER */

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--color-white);
}

.wrapper::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: -1;
  background-color: var(--color-black);
}

.wrapper > main {
  margin-top: 172px;
  padding-bottom: 100px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > main:has(.seo-text:last-child) {
  padding-bottom: 24px;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1480px;
}

/* ANIMATION */

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* COMMON */

/* SECTION */

.section:not(:last-child) {
  margin-bottom: 60px;
}

.section-top {
  margin-bottom: 32px;
}

.section-title {
  padding-left: 20px;
  position: relative;
  font-size: 34px;
  line-height: 1.1;
}

.section-title:not(:last-child) {
  margin-bottom: 28px;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 2px;
  height: 0.7em;
  background-color: var(--color-grey-light2);
}

.section-text {
  font-size: 18px;
  line-height: 1.55;
}

.section-text p:not(:last-child) {
  margin-bottom: 20px;
}

/* CONTENT EDITOR */

.content-editor {
  font-size: 20px;
  line-height: 1.55;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-editor hr {
  display: block;
  background-color: var(--color-grey-light2);
  margin-bottom: 20px;
}

.content-editor b,
.content-editor strong {
  font-weight: 600;
}

.content-editor u,
.content-editor em {
  text-decoration: underline;
}

.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  padding: 0;
  margin: 0;
  margin-top: 32px;
  margin-bottom: 24px;
  padding-left: 20px;
  position: relative;
  font-weight: 400;
  line-height: 1.1;
}

.content-editor h1::before,
.content-editor h2::before,
.content-editor h3::before,
.content-editor h4::before,
.content-editor h5::before,
.content-editor h6::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 2px;
  height: 0.7em;
  background-color: var(--color-grey-light2);
}

.content-editor h1,
.content-editor h2 {
  font-size: 34px;
}

.content-editor h3 {
  font-size: 28px;
}

.content-editor h4,
.content-editor h5,
.content-editor h6 {
  font-size: 24px;
}

.content-editor p {
  margin-bottom: 20px;
}

.content-editor img {
  width: 100%;
  height: auto;
  max-height: 412px;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-editor a {
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.content-editor ul:not(:last-child),
.content-editor ol:not(:last-child) {
  margin-bottom: 20px;
}

.content-editor ul > li,
.content-editor ol > li {
  line-height: 1.4;
}

.content-editor ul > li:not(:last-child),
.content-editor ol > li:not(:last-child) {
  margin-bottom: 20px;
}

.content-editor ul {
  padding-left: 28px;
  list-style: disc;
}

.content-editor ul > li {
  list-style: disc;
}

.content-editor ul > li::marker {
  font-size: 12px;
  line-height: 1;
}

.content-editor ol {
  padding-left: 22px;
}

.content-editor ol > li::marker {
  font-weight: 500;
}

.content-editor._3cols > ul {
  column-count: 4;
  column-gap: 40px;
}

.content-editor._3cols > ul > li {
  break-inside: avoid-column;
}

/* BUTTONS */

.btn {
  padding: 0 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  height: 58px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* FORMS */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

.form {
  position: relative;
}

.form:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: url("../img/loading.svg") center/60px 60px no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form._sending::after {
  opacity: 1;
  visibility: visible;
}

.form._sending > * {
  opacity: 0.3;
  pointer-events: none;
}

.sell-form.form .form-input.form-input--ta {
  height: 200px;
}

.form-row {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.form-row._2cols {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

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

.form-row > .form-row {
  margin: 0;
}

.form-row > .form-row:not(:last-child) {
  margin: 0;
}

.form-item {
  position: relative;
}

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

.form-input {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0 28px;
  display: block;
  width: 100%;
  height: 58px;
  font-size: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-black);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-black);
  -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-black);
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-black);
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input::placeholder {
  color: var(--color-black);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-input.form-input--big {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.form-input.form-input--ta {
  padding: 16px 28px;
  resize: none;
  height: 120px;
  overflow: auto;
  outline: none;
}

.form-input._error {
  border-color: var(--color-red);
}

.form-input-error {
  margin-top: 4px;
  display: block;
  width: 100%;
  color: var(--color-red);
  font-size: 14px;
  text-align: right;
}

.form-input-error > div {
  display: none;
}

.form-input-error > div._active {
  display: block;
}

.form-bottom {
  margin-top: 40px;
  text-align: center;
}

.form-btn {
  width: 100%;
  max-width: 268px;
}

.form-bottom__text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
}

/* FILE-INPUT */

.file-area {
  display: block;
  position: relative;
  width: 100%;
  min-height: 200px;
  border: 1px solid var(--color-grey);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.file-area:has(._error) {
  border-color: var(--color-red);
}

.file-area:has(.file-preview) .file-area__content {
  opacity: 0.2;
}

.file-area._dragover {
  border-color: var(--color-black);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-size: 0;
  opacity: 0;
  cursor: pointer;
}

.file-area__content {
  padding: 16px 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  text-align: center;
}

.file-area__text {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.1;
}

.file-area__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 20px;
  border-bottom: 1px dotted var(--color-black);
}

.file-previews {
  padding: 20px;
  pointer-events: none;
  position: relative;
  z-index: 3;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
}

.file-preview {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 8px;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}

.file-preview__delete {
  pointer-events: all;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  z-index: 2;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.file-preview__delete svg,
.file-preview__delete img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.file-preview__img {
  padding-bottom: 120%;
  position: relative;
  width: 100%;
}

.file-preview__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* CHECKBOX & RADIO */

.radio-label,
.checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}

.radio-input,
.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-txt,
.checkbox-txt {
  position: relative;
  color: var(--color-black);
  font-size: 20px;
  line-height: 1;
  -webkit-transition: color 0.2s ease, text-shadow 0.2s ease;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.radio-custom,
.checkbox-custom {
  margin-left: 10px;
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-black);
}

.radio-label:has(input:checked) > .radio-custom::after,
.checkbox-label:has(input:checked) > .radio-custom::after,
.radio-label:has(input:checked) > .checkbox-custom::after,
.checkbox-label:has(input:checked) > .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-custom::after,
.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background-color: var(--color-black);
  transition: transform 0.2s ease;
}

.checkbox-btn {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  border: 1px solid var(--color-grey);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.checkbox-btn:has(input:checked) {
  border-color: var(--color-black);
}

.checkbox-btn:has(input:checked) .checkbox-txt {
  text-shadow: 0 0 1px var(--color-black);
}

.checkbox-btn:has(._error) {
  border-color: var(--color-red);
}

.checkbox-btn .checkbox-txt {
  font-size: 18px;
  -webkit-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
}

.checkbox-icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.checkbox-icon svg,
.checkbox-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* CUSTOM SCROLLBAR */

/* SWIPER SLIDER */

.swiper .swiper-nav {
  pointer-events: none;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.swiper .swiper-nav .swiper-button-prev,
.swiper .swiper-nav .swiper-button-next,
.swiper .swiper-nav .swiper-pagination {
  pointer-events: auto;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  right: auto;
  width: auto;
}

.swiper .swiper-nav .swiper-button-prev,
.swiper .swiper-nav .swiper-button-next {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.swiper .swiper-nav .swiper-button-prev::after,
.swiper .swiper-nav .swiper-button-next::after {
  font-size: 16px;
}

.swiper .swiper-nav .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 20px;
}

.swiper .swiper-nav .swiper-pagination > .swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 0;
  opacity: 1;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.swiper .swiper-nav .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-grey-dark);
}

/* BREADCRUMBS */

.breadcrumbs-wrapper {
  margin-bottom: 40px;
}

.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 4px;
}

.breadcrumbs > span > span {
  white-space: nowrap;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  color: var(--color-grey);
  font-size: 18px;
}

.breadcrumbs > span > span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 50%;
}

.breadcrumbs > span > span:last-child {
  padding-right: 0;
}

.breadcrumbs > span > span:last-child:after {
  display: none;
}

.breadcrumbs > span > span > a {
  color: var(--color-black);
}

/* DROPDOWN */

.dropdown {
  position: relative;
  z-index: 2;
}

.dropdown._active > .dropdown-body {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-btn {
  padding-right: 30px;
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.dropdown-btn svg,
.dropdown-btn img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  z-index: 2;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.dropdown-body {
  padding: 30px 18px 30px 30px;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 212px;
  z-index: 3;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-light2);
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.dropdown-list {
  padding: 4px 16px 4px 0;
  max-height: 320px;
  text-align: right;
  overflow-x: hidden;
  overflow-y: auto;
}

.dropdown-list > li:has(.dropdown-list__reset) {
  display: none;
}

.dropdown-list:has(input:checked) > li:has(.dropdown-list__reset) {
  display: block;
}

.dropdown-list__reset {
  margin: 0px 0 12px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1;
  border-bottom: 1px dotted var(--color-black);
  transition: color 0.2s ease;
}

@media (pointer: fine){
  .dropdown-list__reset:hover {
    color: var(--color-grey);
  }
}

.dropdown-list > li {
  white-space: nowrap;
}

.dropdown-list > li:not(:last-child) {
  margin-bottom: 14px;
}

.dropdown-list > li .radio-input:checked ~ .radio-txt,
.dropdown-list > li .radio-input:checked ~ .check-txt,
.dropdown-list > li .checkbox-input:checked ~ .radio-txt,
.dropdown-list > li .checkbox-input:checked ~ .check-txt {
  text-shadow: 0 0 1px var(--color-black);
}

.dropdown-list > li .radio-input:disabled ~ .radio-txt,
.dropdown-list > li .radio-input:disabled ~ .check-txt,
.dropdown-list > li .checkbox-input:disabled ~ .radio-txt,
.dropdown-list > li .checkbox-input:disabled ~ .check-txt {
  opacity: 0.1;
}

.dropdown-list > li .radio-txt,
.dropdown-list > li .checkbox-txt {
  color: var(--color-black);
  font-size: 20px;
}

/* PAGINATION */

.pagination {
  margin-top: 54px;
}

.pagination-inner > .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.page-numbers > li {
  text-align: center;
}

.page-numbers > li > a,
.page-numbers > li > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.page-numbers > li > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.page-numbers > li > .dots {
  margin: 0 -10px;
}

.page-numbers > li > .current {
  color: var(--color-grey);
}

.page-numbers > li > .prev,
.page-numbers > li > .next {
  font-size: 18px;
}

.page-numbers > li > .prev {
  margin-right: 12px;
}

.page-numbers > li > .next {
  margin-left: 12px;
}

.pagination-info {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

/* READMORE */

[data-readmore]._readmore-init [data-readmore-body] {
  position: relative;
  overflow: hidden;
  will-change: height;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}

[data-readmore]._readmore-init [data-readmore-body]::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 16px;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  background: linear-gradient(to top, var(--color-white), transparent 60%);
  transition: opacity 0.2s, visibility 0.2s;
}

[data-readmore]._readmore-init [data-readmore-body]._active::after {
  opacity: 0;
  visibility: hidden;
}

.readmore-btn {
  margin-top: 12px;
  display: block;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  text-transform: capitalize;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* IMAGE ZOOM */

[data-image-zoom] {
  position: relative;
  background-position: 100% 100%;
  background-size: auto 200%;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

[data-image-zoom] img {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* TOOLTIP */

.tooltip {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  cursor: pointer;
}

.tippy-box {
  padding: 6px !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup.popup--dark {
  background-color: rgba(0, 0, 0, 0.1);
}

.popup.popup--dark .popup-content {
  padding: 60px 72px 48px;
  max-width: 680px;
  color: var(--color-white);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.88);
}

.popup.popup--dark .popup-close__btn {
  color: var(--color-white);
}

.popup.popup--dark .popup-title {
  padding-right: 0;
  font-size: 28px;
}

.popup.popup--dark .form-input {
  height: 52px;
  color: var(--color-white);
  text-align: center;
  background-color: transparent;
}

.popup.popup--dark .form-input::-webkit-input-placeholder {
  color: var(--color-white);
}

.popup.popup--dark .form-input::-moz-placeholder {
  color: var(--color-white);
}

.popup.popup--dark .form-input:-ms-input-placeholder {
  color: var(--color-white);
}

.popup.popup--dark .form-input::-ms-input-placeholder {
  color: var(--color-white);
}

.popup.popup--dark .form-input::placeholder {
  color: var(--color-white);
}

.popup.popup--dark .popup-form .form-btn {
  margin: 12px auto 0;
  padding: 4px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  height: unset;
  font-size: 20px;
  line-height: 1;
  background-color: transparent;
  border-bottom: 1px dashed var(--color-white);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.popup.popup-thanks .popup-title > span:nth-child(1),
.popup.popup-thanks.popup-thanks--payment .popup-title > span:nth-child(2),
.popup.popup-thanks.popup-thanks--sell .popup-title > span:nth-child(3) {
  display: block;
}

.popup.popup-thanks .popup-title > span:nth-child(2),
.popup.popup-thanks .popup-title > span:nth-child(3),
.popup.popup-thanks.popup-thanks--payment .popup-title > span:nth-child(1),
.popup.popup-thanks.popup-thanks--sell .popup-title > span:nth-child(1) {
  display: none;
}


.popup-body {
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 30px;
  position: relative;
  width: 100%;
  max-width: 400px;
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-close__btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  z-index: 2;
  color: var(--color-black);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.popup-close__btn svg,
.popup-close__btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup-title {
  padding-right: 16px;
  font-size: 34px;
  line-height: 1.1;
}

.popup-title:not(:last-child) {
  margin-bottom: 12px;
}

.popup-text {
  font-size: 20px;
  line-height: 1.55;
}

.popup-text:not(:last-child) {
  margin-bottom: 20px;
}

.popup-form {
  padding-top: 8px;
}

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

.popup-form .form-btn {
  width: 100%;
  max-width: unset;
}

/* HEADER */

.header {
  padding: 34px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-light2);
}

.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 36px;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-overlay._active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 252px;
  height: 58px;
}

.header-logo img,
.header-logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header-nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header-nav__top-mobile {
  display: none;
  margin-bottom: 15px;
  padding: 0 5px 13px 12px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-grey-light2);
}

.header-nav__btn-close {
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-nav__btn-close svg,
.header-nav__btn-close img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 8.8%;
}

.header-menu > li > a {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-menu > li > a::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 91%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

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

.header-btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-btn img,
.header-btn svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-search__btn {
  margin-right: 24px;
}

.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header-contacts.header-contacts--mobile {
  display: none;
}

.header-burger {
  display: none;
  margin-left: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.header-burger svg,
.header-burger img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* HEADER SEARCH */

.header-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-grey-light);
  z-index: 1;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}

.header-search._active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-form {
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
}

.search-form__input.form-input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 50px;
  font-weight: 300;
  border-right: transparent;
}

.search-form__submit {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30%;
  max-width: 268px;
  height: 50px;
  box-shadow: none !important;
  border-color: var(--color-black) !important;
}

.search-form__submit svg,
.search-form__submit img {
  display: none;
  width: 45%;
  height: 45%;
  stroke-width: 2px;
}

.search-page__top.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

.search-page__title.section-title:not(:last-child) {
  margin: 0;
}

/* SEO-TEXT */
.seo-text {
  display: none;
}

.seo-text.seo-text--mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .seo-text {
    display: block;
  }
}

.seo-text.seo-text--home {
  margin-top: -36px;
}

.seo-text.seo-text--home .seo-text__title.section-title {
  font-size: 30px;
}

.seo-text__body {
  margin-top: 24px;
  padding: 44px 40px 48px;
  background-color: var(--color-grey-light);
}

.seo-text__title.section-title {
  padding: 0;
  text-align: center;
}

.seo-text__title.section-title::before,
.seo-text__content.content-editor h1::before,
.seo-text__content.content-editor h2::before,
.seo-text__content.content-editor h3::before,
.seo-text__content.content-editor h4::before,
.seo-text__content.content-editor h5::before,
.seo-text__content.content-editor h6::before {
  display: none;
}

/* PREFOOTER */

.prefooter {
  padding: 46px 0;
  background-color: var(--color-grey-light);
}

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

.prefooter-text {
  margin-right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.prefooter-text svg,
.prefooter-text img {
  margin: 0.02em 16px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.prefooter-form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 49%;
}

.prefooter-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.prefooter-form__row > .form-input {
  padding: 0 20px;
  width: 65%;
  font-size: 16px;
  font-weight: 300;
  border-right: transparent;
}

.prefooter-form__row > .form-btn {
  width: 35%;
}

.prefooter-form__row > .form-btn svg {
  display: none;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 70%;
  height: 70%;
}

/* FOOTER */

.footer {
  padding: 60px 0 36px;
  color: var(--color-white);
  background-color: var(--color-black);
}

.footer-top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
}

.footer-logo {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 252px;
  height: 54px;
}

.footer-logo svg,
.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.footer-menu {
  /* margin-right: 4%; */
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 60px;
  min-width: 0;
}

@media screen and (min-width: 1560px) {
  .footer-menu {
    flex: 0 0 564px;
    width: 564px;
    max-width: unset;
  }
}

.footer-menu > li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  min-width: 0;
}

.footer-menu > li > a {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu > li > a::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 91%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.footer-contacts {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-contacts__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-contacts__link svg,
.footer-contacts__link img {
  margin-right: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.footer-contacts__link > span {
  padding-top: 2px;
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  color: var(--color-grey);
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

/* INTRO */

.intro {
  padding-top: 12px;
}

.intro-text {
  padding: 36px 20px;
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
  background-color: var(--color-grey-light);
}

/* CATALOG */

.catalog-home__top.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 32px;
  min-width: 0;
}

.catalog-home__title.section-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.catalog-home__title.section-title:not(:last-child) {
  margin: 0;
}

.catalog-home__link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-black);
  font-size: 20px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.catalog-home__link svg,
.catalog-home__link img {
  margin-left: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog-home__bottom {
  display: none;
  margin-top: 28px;
  text-align: center;
}

.catalog-home__link-mobile.btn {
  width: 100%;
  max-width: 268px;
}

.catalog-filters {
  margin-bottom: 50px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.catalog-tabs {
  margin-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 60px;
}

.catalog-tabs__btn .radio-input:checked ~ .radio-txt,
.catalog-tabs__btn .radio-input:checked ~ .checkbox-txt,
.catalog-tabs__btn .checkbox-input:checked ~ .radio-txt,
.catalog-tabs__btn .checkbox-input:checked ~ .checkbox-txt {
  pointer-events: none;
  border-color: transparent;
  text-shadow: 0 0 1px var(--color-black);
}

.catalog-tabs__btn .radio-txt,
.catalog-tabs__btn .checkbox-txt {
  font-size: 20px;
  line-height: 1;
  border-bottom: 1px dotted var(--color-black);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.catalog-dropdowns {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}

.catalog-dropdown {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.catalog-view {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.catalog-view__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 25px;
  height: 26px;
  color: var(--color-grey-light2);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.catalog-view__btn._active {
  color: var(--color-black);
}

.catalog-view__btn svg,
.catalog-view__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog-body {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

.catalog-body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: url("../img/loading.svg") center / 88px 88px no-repeat;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.catalog-body.catalog-body--nogrid {
  display: block;
}

.catalog-body._loading::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* PRODUCT-CARD */

.product-card {
  padding-bottom: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-card._disabled {
  opacity: 0.5;
}

/* .product-card._disabled .product-card__price {
  opacity: 0;
  visibility: hidden;
} */

.product-card__img {
  margin-bottom: 24px;
  padding-bottom: 108%;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  background-color: var(--color-grey-light);
  overflow: hidden;
}

.product-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.product-card__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 18px;
  padding: 0 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.product-card__title > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.product-card__info {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.product-card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-black);
}

.product-card__info-item._disabled {
  color: var(--color-grey-dark);
}

.product-card__info-item svg,
.product-card__info-item img {
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.product-card__info-item > span {
  font-size: 16px;
  line-height: 1.1;
}

.product-card__price {
  padding-top: 20px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  word-break: break-word;
}

.product-card__price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--color-grey-light2);
}

/* INFO */
.info-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 40px;
  text-align: center;
  background-color: var(--color-grey-light);
}

.info-intem__icon {
  margin: 0 auto 32px;
  width: 100px;
  height: 80px;
}

.info-intem__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.info-item__title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.info-item__title:not(:last-child) {
  margin-bottom: 20px;
}

/* CARD */

.card.section:not(:last-child) {
  margin-bottom: 84px;
}

.card-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-body:not(:last-child) {
  margin-bottom: 52px;
}

.card-body__col {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  min-width: 0;
}

.card-description .content-editor {
  font-size: 24px;
}

.card-slider__main.swiper {
  margin-bottom: 24px;
}

.card-slider__main-img {
  padding-bottom: 112.5%;
  position: relative;
  height: 0;
  display: block;
}

.card-slider__main-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-slider__thumbs-img {
  padding-bottom: 108%;
  position: relative;
  height: 0;
  cursor: pointer;
}

.card-slider__thumbs-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-title {
  margin-bottom: 26px;
  font-size: 34px;
  line-height: 1.3;
}

.card-info {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.card-price {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 600;
}

.card-info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.card-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-black);
  font-size: 17px;
}

.card-info__item._disabled {
  color: var(--color-grey-dark);
}

.card-info__item svg,
.card-info__item img {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-info__delivery {
  padding-left: 25px;
  position: relative;
  font-size: 17px;
}

.card-info__delivery::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 190%;
  background-color: var(--color-grey-light2);
}

.card-contacts {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-contacts__title {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1.1;
}

.card-contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.card-contacts__btn {
  padding: 0 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 42px;
  font-size: 20px;
  border: 1px solid var(--color-grey-light2);
  -webkit-transition: border-color 0.2s ease, text-shadow 0.2s ease;
  transition: border-color 0.2s ease, text-shadow 0.2s ease;
}

.card-contacts__btn svg,
.card-contacts__btn img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-body__title {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
}

.card-specs {
  padding-top: 24px;
  border-top: 1px solid var(--color-grey-light2);
}

.card-specs:not(:last-child) {
  margin-bottom: 44px;
}

.card-specs .card-body__title {
  margin-bottom: 4px;
}

.card-items__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.card-items__list > li {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  position: relative;
  padding: 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  line-height: 1.1;
  border-bottom: 1px solid var(--color-grey-light2);
}

.card-items__list > li:has(.tooltip) {
  padding-right: 28px;
}

.card-items__list > li > span:last-of-type {
  text-align: right;
}

.card-items__list > li > .tooltip {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.card-specs__btn.btn {
  display: none;
  margin-top: 15px;
  width: 100%;
}

/* .card-description__global {
  margin-top: 60px;
} */

/* SIMILAR */

.similar-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ABOUT */

.about-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-content.content-editor {
  margin-right: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  line-height: 1.65;
}

.about-content.content-editor p:not(:last-child) {
  margin-bottom: 32px;
}

.about-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 41%;
}

.about-img > .img {
  padding-bottom: 85%;
  position: relative;
  width: 100%;
  height: 0;
}

.about-img > .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* CONTACTS */

.contacts-body {
  padding: 40px 28px;
  background-color: var(--color-grey-light);
}

.contacts-body:not(:last-child) {
  margin-bottom: 40px;
}

.contacts-body__text {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 1.1;
}

.contacts-body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-qr {
  margin-right: 30px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background-color: var(--color-white);
}

.contacts-qr img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-items {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.contacts-items__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 56px;
}

.contacts-items__row:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-light2);
}

.contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-item__icon {
  margin-right: 12px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-white);
}

.contacts-item__icon img,
.contacts-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-item__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.contacts-item__title {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.1;
}

a.contacts-item__link {
  word-break: break-word;
  font-size: 22px;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a.contacts-item__link[href^="tel"],
a.contacts-item__link[href^="mailto"] {
  text-decoration: none;
}

.contacts-banners {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contacts-banner {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding-bottom: 35.2%;
  position: relative;
  height: 0;
}

a.contacts-banner {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.contacts-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* PAYMENT */

.payment-form:not(:last-child) {
  margin-bottom: 88px;
}

.payment-info.content-editor {
  font-size: 20px;
}

/* SELL */
.sell-brands__content.content-editor._3cols > ul > li:not(:last-child) {
  margin-bottom: 12px;
}

.sell-brands__bottom {
  display: none;
  margin-top: 32px;
  text-align: center;
}

.sell-brands__btn.btn {
  width: 100%;
  max-width: 200px;
  height: 44px;
}

/* 404 */

.page-404 {
  padding: 0 50px;
}

.page-404__inner {
  padding: 20vh 0;
}

.page-404__inner > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.page-404__title {
  color: var(--color-black);
  font-size: 240px;
  font-weight: 600;
}

/* RESPONSIVE */

@media screen and (max-width: 1439.98px) {
  .content-editor._3cols > ul {
    column-count: 3;
  }

  .wrapper > main {
    margin-top: 140px;
  }

  .header {
    padding: 20px 0;
  }

  .header-logo {
    width: 180px;
    height: 44px;
  }

  .prefooter-text {
    margin-right: 24px;
    font-size: 24px;
  }

  .footer {
    padding: 52px 0 36px;
  }

  .footer-logo {
    width: 180px;
    height: 44px;
  }

  /* .footer-menu {
    margin: 0;
  } */

  .intro {
    padding-top: 8px;
  }

  .page-404 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1199.98px) {
  .form-row:has(.form-row--checkboxes)._2cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .swiper .swiper-nav {
    pointer-events: none;
    padding: 0 10px;
  }

  .breadcrumbs-wrapper {
    margin-bottom: 36px;
  }

  .header-menu {
    gap: 8px 36px;
  }

  .header-search__btn {
    margin-right: 20px;
  }

  .header-contacts {
    gap: 20px;
  }

  .header-btn {
    width: 30px;
    height: 30px;
  }

  .seo-text__body {
    padding: 44px 32px 48px;
  }

  .prefooter-form__row > .form-input {
    width: 71%;
  }

  .prefooter-form__row > .form-btn {
    width: 29%;
  }

  .footer-menu {
    gap: 8px 24px;
  }

  .footer-contacts__link svg,
  .footer-contacts__link img {
    margin-right: 15px;
  }

  .catalog-filters {
    margin-bottom: 44px;
    padding-bottom: 28px;
  }

  .catalog-tabs {
    margin-right: 44px;
    gap: 12px 32px;
  }

  .catalog-dropdowns {
    gap: 32px;
  }

  .catalog-home__link svg,
  .catalog-home__link img {
    margin-left: 12px;
  }

  .product-card__info-item svg,
  .product-card__info-item img {
    width: 22px;
    height: 22px;
  }

  .info-item {
    padding: 32px 20px;
  }

  .info-intem__icon {
    margin: 0 auto 28px;
  }

  .card.section:not(:last-child) {
    margin-bottom: 68px;
  }

  .card-slider__main.swiper {
    margin-bottom: 20px;
  }

  .card-body {
    gap: 20px;
  }

  .card-items__list {
    gap: 0 20px;
  }

  .card-description .content-editor {
    font-size: 20px;
  }

  .about-content.content-editor {
    margin-right: 20px;
  }

  .contacts-body__text {
    font-size: 24px;
  }

  .contacts-items__row {
    gap: 24px 44px;
  }

  .contacts-items__row:not(:last-child) {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .contacts-banners {
    gap: 20px;
  }

  .payment-info.content-editor {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-top {
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 36px 20px;
  }

  .footer-logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer-menu {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: unset;
    gap: 8px 9%;
  }

  .footer-contacts {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 991.98px) {
  .content-editor._3cols > ul {
    column-count: 2;
  }

  .wrapper > main {
    margin-top: 116px;
    padding-bottom: 80px;
  }

  .sell-form.form .form-input.form-input--ta {
    height: 150px;
  }

  .form-row {
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .form-row:not(:last-child) {
    margin-bottom: 20px;
  }

  .form-row.form-row--checkboxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-row.form-row--checkboxes > .checkbox-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: auto;
  }

  .form-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .form-input {
    padding: 0 20px;
  }

  .form-input:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .form-input.form-input--big {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .form-input.form-input--ta {
    padding: 16px 20px;
    height: 150px;
  }

  .form-bottom {
    margin-top: 30px;
  }

  .form-bottom__text {
    margin-top: 20px;
    font-size: 16px;
  }

  .file-previews {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .file-preview {
    padding: 4px;
  }

  .file-preview__delete {
    top: 0;
    right: 0;
  }

  .file-area {
    min-height: 150px;
  }

  .file-area__content {
    padding: 16px 20px;
  }

  .file-area__text {
    font-size: 20px;
  }

  .file-area__btn {
    font-size: 16px;
  }

  .swiper .swiper-nav {
    padding: 0 4px;
  }

  .swiper .swiper-nav .swiper-button-prev,
  .swiper .swiper-nav .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .swiper .swiper-nav .swiper-button-prev::after,
  .swiper .swiper-nav .swiper-button-next::after {
    font-size: 14px;
  }

  .header {
    padding: 15px 0;
  }

  .header > .container {
    gap: 28px;
  }

  .header-logo {
    width: 170px;
    height: 40px;
  }

  .header-menu {
    gap: 8px 24px;
  }

  .search-form {
    padding: 15px 0;
  }

  .footer {
    padding: 40px 0 36px;
  }

  .footer-logo {
    width: 170px;
    height: 40px;
  }

  .intro {
    padding-top: 0;
  }

  .intro-text {
    font-size: 24px;
  }

  .catalog-filters {
    margin-bottom: 36px;
    padding-bottom: 24px;
  }

  .catalog-body {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
  }

  .info-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .info-item:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .card-body {
    display: block;
  }

  .card-body__col:first-child {
    margin: 0 auto 32px;
    max-width: 500px;
  }

  .card-slider__main.swiper {
    margin-bottom: 16px;
  }

  .card-title {
    text-align: center;
  }

  .card-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .card-contacts {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .card-slider__thumbs-img {
    padding-bottom: 100%;
  }

  /* .card-description__global {
    margin-top: 44px;
  } */

  .similar-body {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .about-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-content.content-editor {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
  }

  .about-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 32px;
    width: 100%;
  }

  .about-img > .img {
    padding-bottom: 68%;
  }

  .contacts-body {
    padding: 32px 20px;
  }

  .contacts-qr {
    margin-right: 24px;
    width: 160px;
    height: 160px;
  }

  a.contacts-item__link {
    font-size: 20px;
  }

  .sell-brands__content:has(> ul li:nth-child(n+16)) ~ .sell-brands__bottom {
    display: block;
  }

  .sell-brands__content > ul > li:nth-child(n+17) {
    display: none;
  }

  .sell-brands__content._active > ul > li:nth-child(n+17) {
    display: list-item;
  }

  .sell-brands__content._active ~ .sell-brands__bottom {
    display: none !important;
  }
}

@media screen and (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 12px;
  }

  .section:not(:last-child) {
    margin-bottom: 50px;
  }

  .section:has(+ .seo-text) {
    margin-bottom: 0;
  }

  .section-title {
    padding-left: 16px;
    font-size: 30px;
  }

  .section-title:not(:last-child) {
    margin-bottom: 12px;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .content-editor {
    font-size: 18px;
    line-height: 1.65;
  }

  .content-editor hr {
    margin-bottom: 16px;
  }

  .content-editor h1,
  .content-editor h2,
  .content-editor h3,
  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    margin-top: 20px;
    margin-bottom: 16px;
    padding-left: 16px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 30px;
  }

  .content-editor h3 {
    font-size: 24px;
  }

  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    font-size: 20px;
  }

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

  .content-editor ul > li,
  .content-editor ol > li {
    line-height: 1.65;
  }

  .file-previews {
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  }

  .swiper .swiper-nav {
    gap: 20px;
  }

  .swiper .swiper-nav .swiper-pagination {
    gap: 10px 16px;
  }

  .swiper .swiper-nav .swiper-pagination > .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
  }

  .breadcrumbs-wrapper {
    margin-bottom: 20px;
  }

  .dropdown-btn {
    padding-right: 22px;
    font-size: 18px;
  }

  .dropdown-btn svg,
  .dropdown-btn img {
    width: 12px;
    height: 12px;
  }

  .dropdown-body {
    padding: 24px 14px 24px 20px;
    min-width: 184px;
    top: calc(100% + 12px);
  }

  .dropdown-list {
    padding: 4px 12px 4px 0;
  }

  .dropdown-list > li .radio-txt,
  .dropdown-list > li .checkbox-txt {
    font-size: 18px;
  }

  .seo-text.seo-text--home .seo-text__title.section-title {
    font-size: 26px;
  }

  .pagination {
    margin-top: 40px;
  }

  .pagination > .page-numbers {
    gap: 20px;
  }

  .page-numbers > li > .dots {
    margin: 0 -8px;
  }

  .page-numbers > li > .prev {
    margin-right: 8px;
  }

  .page-numbers > li > .next {
    margin-left: 8px;
  }

  .pagination-info {
    margin-top: 20px;
    font-size: 16px;
  }

  .popup.popup--dark .popup-content {
    padding: 60px 44px 48px;
  }

  .header {
    position: fixed;
  }

  .header-nav {
    padding: 13px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
    width: 248px;
    height: 100%;
    z-index: 3;
    background-color: var(--color-grey-light);
    overflow: hidden;
    will-change: transform;
  }

  .header-nav._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  html._loaded .header-nav {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }

  .header-nav__top-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 12px;
    display: block;
    text-align: right;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header-menu > li {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-grey-light2);
  }

  .header-menu > li > a {
    font-size: 18px;
  }

  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .seo-text__body {
    margin-top: 20px;
    padding: 40px 20px;
  }

  .prefooter > .container {
    display: block;
  }

  .prefooter-text {
    margin: 0 0 20px;
  }

  .prefooter-form {
    width: 100%;
  }

  .intro-text {
    padding: 28px 16px;
  }

  .catalog-body {
    gap: 20px;
  }

  .catalog-tabs {
    margin-right: 40px;
    gap: 12px 28px;
  }

  .catalog-tabs__btn .radio-txt,
  .catalog-tabs__btn .checkbox-txt {
    font-size: 18px;
  }

  .catalog-dropdowns {
    gap: 28px;
  }

  .catalog-home__link {
    font-size: 18px;
  }

  .catalog-home__link svg,
  .catalog-home__link img {
    width: 12px;
    height: 12px;
  }

  .product-card__img {
    margin-bottom: 16px;
  }

  .product-card__title {
    margin-bottom: 12px;
    padding: 0;
    font-size: 16px;
  }

  .product-card__price {
    padding-top: 14px;
    font-size: 18px;
  }

  .product-card__info {
    display: none;
  }

  .info-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-item:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .card.section:not(:last-child) {
    margin-bottom: 50px;
  }

  .card-title {
    font-size: 32px;
  }

  .card-price {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .card-info__items {
    display: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .card-info__delivery {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .card-description .content-editor {
    font-size: 18px;
  }

  .about-content.content-editor {
    line-height: 1.75;
  }

  .about-content.content-editor p:not(:last-child) {
    margin-bottom: 24px;
  }

  .contacts-body__inner {
    display: block;
  }

  .contacts-qr {
    margin: 0 auto 32px;
  }

  .contacts-items__row {
    display: block;
  }

  .contacts-items__row:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contacts-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-grey-light2);
  }

  .contacts-banners {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .payment-info.content-editor {
    font-size: 16px;
  }

  .page-404 {
    padding: 0;
  }

  .page-404__inner {
    padding: 160px 0;
    border-radius: 0;
  }

  .page-404__title {
    font-size: 35vw;
  }
}

@media screen and (max-width: 575.98px) {
  .content-editor._3cols > ul {
    column-count: 1;
  }

  .wrapper > main {
    margin-top: 102px;
  }

  .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-row._2cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-row.form-row--checkboxes {
    gap: 14px;
  }

  .form-input {
    font-size: 16px;
  }

  .form-input:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .form-btn {
    max-width: unset;
  }

  .form-bottom__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

  .file-previews {
    padding: 12px;
  }

  .file-area {
    min-height: 58px;
  }

  .file-area__text {
    margin-bottom: 0;
    font-size: 16px;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  .file-area__btn {
    display: none;
  }

  .checkbox-btn {
    padding: 0 8px;
  }

  .checkbox-btn .checkbox-txt {
    font-size: 16px;
  }

  .checkbox-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }

  .swiper .swiper-nav {
    display: none;
  }

  .breadcrumbs > span > span {
    padding-right: 15px;
    margin-right: 15px;
    font-size: 14px;
  }

  .dropdown-body {
    left: 0;
    right: auto;
  }

  .dropdown-list {
    padding: 4px 4px 4px 0;
    text-align: left;
  }

  .dropdown-list .radio-label, .dropdown-list .checkbox-label {
    flex-direction: row-reverse;
  }

  .dropdown-list .radio-custom, .dropdown-list .checkbox-custom {
    margin: 0 10px 0 0;
  }

  .pagination {
    margin-top: 40px;
  }

  .page-numbers > li > .prev,
  .page-numbers > li > .next {
    margin: 0;
    font-size: 14px;
  }

  .pagination-info {
    font-size: 14px;
  }

  .popup.popup--dark .popup-content {
    padding: 52px 20px 36px;
  }

  .popup.popup--dark .popup-title {
    font-size: 24px;
  }

  .popup-content {
    padding: 20px;
  }

  .popup-title {
    padding-right: 28px;
    font-size: 30px;
  }

  .popup-text {
    font-size: 18px;
  }

  .header-btn img,
  .header-btn svg {
    width: 80%;
    height: 80%;
    stroke-width: 2px;
  }

  .header-search__btn {
    margin-right: 0;
  }

  .header-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
  }

  .header-contacts.header-contacts--desktop {
    display: none;
  }

  .header-contacts.header-contacts--mobile {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-contacts.header-contacts--mobile > .header-btn {
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
  }

  .header-contacts.header-contacts--mobile > .header-btn img,
  .header-contacts.header-contacts--mobile > .header-btn svg {
    width: 60%;
    height: 60%;
    stroke-width: 1px;
  }

  .search-form__submit {
    padding: 0;
    width: 50px;
  }

  .search-form__submit > span {
    display: none;
  }

  .search-form__submit svg,
  .search-form__submit img {
    display: block;
  }

  .prefooter {
    padding: 36px 0 40px;
  }

  .prefooter-text {
    margin: 0 0 14px;
  }

  .prefooter-form__row > .form-input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: auto;
    height: 50px;
  }

  .prefooter-form__row > .form-btn {
    width: 50px;
    height: 50px;
  }

  .prefooter-form__row > .form-btn > span {
    display: none;
  }

  .prefooter-form__row > .form-btn svg {
    display: block;
  }

  .footer {
    padding: 24px 0 28px;
  }

  .footer-top {
    margin-bottom: 20px;
    gap: 20px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: block;
    text-align: center;
  }

  .footer-menu > li:not(:last-child) {
    margin-bottom: 24px;
  }

  .footer-contacts {
    margin: 0 auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .intro-text {
    font-size: 22px;
  }

  .catalog-home__bottom {
    display: block;
  }

  .catalog-home__link-mobile.btn {
    max-width: unset;
  }

  .catalog-filters {
    margin-bottom: 32px;
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
  }

  .catalog-tabs {
    margin: 0 0 36px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px 20px;
  }

  .catalog-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .catalog-home__link {
    display: none;
  }

  .catalog-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .catalog-body._1col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog-body._2cols .product-card__img {
    margin-bottom: 16px;
  }

  .catalog-body._2cols .product-card__title {
    font-size: 16px;
  }

  .product-card__img {
    padding-bottom: 93%;
  }

  .product-card__title {
    font-size: 18px;
  }

  .card-body__col:first-child {
    max-width: unset;
  }

  .card-slider__main.swiper {
    margin-bottom: 10px;
  }

  .card-slider__thumbs.swiper {
    overflow: visible;
  }

  .card-title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .card-info {
    margin-bottom: 28px;
    gap: 24px 20px;
  }

  .card-price {
    font-size: 18px;
  }

  .card-info__items {
    gap: 16px;
  }

  .card-info__item {
    font-size: 16px;
  }

  .card-info__item svg,
  .card-info__item img {
    width: 22px;
    height: 22px;
  }

  .card-info__delivery {
    padding-left: 20px;
    font-size: 18px;
  }

  .card-info__delivery::before {
    height: 130%;
  }

  .card-contacts {
    display: block;
  }

  .card-contacts__title {
    margin: 0 0 20px;
    font-size: 20px;
    text-align: center;
  }

  .card-contacts__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }

  .card-specs {
    padding-top: 6px;
    border-top: none;
  }

  .card-body__title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .card-specs._active .card-items__list > li:nth-child(n + 14) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeUp 0.2s ease 0s forwards;
    animation: fadeUp 0.2s ease 0s forwards;
  }

  .card-items__list {
    display: block;
  }

  .card-items__list > li:last-child {
    border-bottom: none;
  }

  .card-items__list > li:nth-child(n + 14) {
    display: none;
  }

  .card-specs__btn.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .card-body__bottom {
    display: none;
  }

  /* .card-description__global {
    margin-top: 36px;
  } */

  .similar-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-img {
    margin: 0 0 20px;
  }

  .contacts-body {
    padding: 20px;
  }

  .contacts-qr {
    margin: 0 auto 20px;
    width: 118px;
    height: 118px;
  }

  .contacts-body__text {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
  }

  .contacts-item__title {
    font-size: 16px;
  }

  a.contacts-item__link {
    font-size: 18px;
  }

  .payment-form:not(:last-child) {
    margin-bottom: 48px;
  }

  .sell-brands__content.content-editor._3cols > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }

  .sell-brands__content.content-editor._3cols > ul > li {
    line-height: 1.3;
  }

  .sell-brands__bottom {
    margin-top: 24px;
  }

  .sell-brands__btn.btn {
    max-width: unset;
  }

  .page-404__inner {
    padding: 120px 0;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    color: var(--color-grey);
  }

  .btn:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }

  .file-preview__delete:hover {
    color: var(--color-red);
  }

  @-moz-document url-prefix() {
    .custom-scrollbar {
      scrollbar-width: thin;
      scrollbar-color: var(--color-black) var(--color-grey-light2);
    }
  }

  .custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .custom-scrollbar::-webkit-scrollbar-track {
    background: var(--color-grey-light2);
  }

  .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--color-black);
  }

  .swiper .swiper-nav .swiper-button-prev:hover,
  .swiper .swiper-nav .swiper-button-next:hover {
    color: var(--color-grey-dark);
  }

  .dropdown-btn:hover {
    color: var(--color-grey);
  }

  .dropdown-list > li .radio-label:hover > .radio-txt,
  .dropdown-list > li .radio-label:hover > .check-txt,
  .dropdown-list > li .check-label:hover > .radio-txt,
  .dropdown-list > li .check-label:hover > .check-txt {
    color: var(--color-grey);
  }

  .page-numbers > li > a:hover {
    color: var(--color-grey);
  }

  .readmore-btn:hover {
    color: var(--color-grey);
  }

  [data-image-zoom]:hover img {
    opacity: 0;
  }

  .popup.popup--dark .popup-close__btn:hover,
  .popup-close__btn:hover {
    color: var(--color-grey);
  }

  .popup.popup--dark .popup-form .form-btn:hover {
    color: var(--color-white);
    opacity: 0.75;
  }

  .header-menu > li > a:hover::after {
    width: 100%;
  }

  .header-btn:hover {
    color: var(--color-grey);
  }

  .footer-menu > li > a:hover::after {
    width: 100%;
  }

  .footer-contacts__link:hover {
    color: var(--color-grey);
  }

  .catalog-home__link:hover {
    color: var(--color-grey);
  }

  .catalog-tabs__btn .radio-txt:hover,
  .catalog-tabs__btn .checkbox-txt:hover {
    color: var(--color-grey);
    border-color: var(--color-grey);
  }

  .product-card__img:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .product-card__title > a:hover {
    color: var(--color-grey);
  }

  .card-contacts__btn:hover {
    border-color: var(--color-black);
    text-shadow: 0 0 1px var(--color-black);
  }

  a.contacts-item__link:hover {
    color: var(--color-grey);
  }

  a.contacts-banner:hover {
    opacity: 0.8;
  }
}

@media (pointer: fine) and (pointer: fine) {
  .breadcrumbs > span > span > a:hover {
    text-decoration: underline;
  }
}
