@charset "UTF-8";
:root {
  --font-family: "Montserrat", system-ui, sans-serif;
  --font-panton: "Panton", system-ui, sans-serif;
  --content-width: 1230px;
  --content-offset: 15px;
  --container-width: calc(var(--content-width) + var(--content-offset) * 2);
  --accent-color: #67bc63;
  --accent-2-color: #ffda6b;
  --promo-color: #449740;
  --bg-color: #ffffff;
  --bg-footer-color: #333333;
  --gray-color: #f4f3f3;
  --gray-slide-color: #f0f0f0;
  --light-color: #fff;
  --title-color: #000000;
  --text-color: #111111;
  --link-color: #444444;
  --menu-color: #747474;
  --swiper-pagination-bullet-size: 11px;
  --swiper-pagination-bullet-horizontal-gap: 2.5px;
  --swiper-pagination-bullet-border-radius: 11px;
  --swiper-pagination-color: #777777;
  --swiper-pagination-bullet-inactive-color: #c4c4c4;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: -1px;
  --input-background-color: transparent;
  --input-background-color-focus: transparent;
  --input-border-color: #e1e1e1;
  --header-height: 80px;
}

/* stylelint-disable */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Panton";
  src: url("../fonts/Panton-Trial-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Panton";
  src: url("../fonts/Panton-Trial-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Panton";
  src: url("../fonts/Panton-Trial-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Panton";
  src: url("../fonts/Panton-Trial-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0rem;
  border: 0rem;
  padding: 0rem;
}

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

*::before,
*::after {
  display: inline-block;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
  scrollbar-gutter: stable;
}
@media (prefers-reduced-motion: no-preference) {
  html :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 50px);
  }
}

html:focus-within {
  /* Добавлять к якорям tabindex="-1"  */
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  background: var(--bg-color);
  background-blend-mode: multiply;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text-color);
  line-height: 1.4;
  font-family: var(--font-family);
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.disable-scroll {
  overflow: hidden !important;
}

.page__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: max(var(--header-height), 57px) 1fr auto;
  grid-template-rows: max(var(--header-height), 57px) 1fr auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.page__wrapper > * {
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .page__wrapper {
    -ms-grid-rows: max(var(--header-height), 188px) 1fr auto;
    grid-template-rows: max(var(--header-height), 188px) 1fr auto;
  }
}
@media screen and (min-width: 1400px) {
  .page__wrapper {
    -ms-grid-rows: max(var(--header-height), 202px) 1fr auto;
    grid-template-rows: max(var(--header-height), 202px) 1fr auto;
  }
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

section {
  position: relative;
  padding: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem) 0; /* 25 - 50 */
  width: 100%;
  max-width: 100vw;
}

section:first-of-type .container {
  outline: none !important;
  border: 0;
}

.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: clamp(1.25rem, 0.398rem + 3.64vw, 3.125rem); /* 20 - 50 */
  text-align: left;
}
@media (min-width: 1024px) {
  .section-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .section-top:has(.stiker) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.page__title {
  position: relative;
  max-width: 30ch;
  font-weight: 700;
  font-size: clamp(2rem, 1.631rem + 1.57vw, 3.5rem);
  font-family: var(--second-family);
}
.page__title span {
  color: var(--accent-color);
}

.section__title {
  position: relative;
  z-index: 0;
  padding-left: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--title-color);
  font-weight: 700;
  font-size: clamp(1.375rem, 1.261rem + 0.48vw, 1.625rem);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section__title {
    padding-left: 10px;
  }
}
.section__title span {
  color: var(--accent-color);
}
.section__title.stiker {
  text-align: left;
}
.section__title.stiker::before {
  position: absolute;
  top: -1.1ch;
  left: 0ch;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
  background-color: var(--accent-color);
  width: 20px;
  height: 30px;
  content: "";
}
@media screen and (min-width: 567px) {
  .section__title.stiker::before {
    top: -1ch;
    left: 0.2ch;
  }
}
@media screen and (min-width: 992px) {
  .section__title.stiker::before {
    top: -0.8ch;
    left: 0.1ch;
  }
}

.container {
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  width: 100%;
  max-width: var(--container-width);
}

footer {
  -ms-grid-row: 3;
  grid-row: 3;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
  line-height: 1.1;
}

p,
li,
figcaption {
  max-width: 120ch;
  text-wrap: pretty;
}

p {
  margin-bottom: clamp(10px, 0.823rem + 0.49vw, 15px);
  text-wrap: pretty;
}

img,
picture,
video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  shape-margin: 0.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  height: 100%;
  font-style: italic;
}

picture img {
  width: 100%;
}

svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

a,
button,
select {
  cursor: pointer;
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

a,
button {
  -webkit-transition: all 0.2s !important;
  transition: all 0.2s !important;
}

.link-phone,
.link-email {
  white-space: nowrap;
}

div:has(> img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clear {
  clear: both;
}

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

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

.list-reset,
ul[class],
ol[class],
dl[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

.swiper {
  max-width: 100%;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: --input-background-color;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

input,
button,
textarea,
select {
  font: inherit;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

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

.page--ios .disable-scroll {
  position: relative;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.wpforms-form {
  --wpforms-button-background-color: var(--accent-color);
  --wpforms-button-border-radius: 10px;
  --wpforms-field-size-padding-h: 10px;
  --wpforms-field-size-padding-w: 20px;
  --wpforms-field-size-input-height: 50px;
  --wpforms-field-size-font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(18px, 1.024rem + 0.43vw, 22px);
  width: 100%;
  height: 100%;
}
.wpforms-form .wpforms-hidden,
.wpforms-form .wpforms-label-hide {
  display: none;
}
.wpforms-form .wpforms-field-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: clamp(0.625rem, 0.179rem + 2.23vw, 1.25rem);
  width: 100%;
}
.wpforms-form .wpforms-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 !important;
  width: 100%;
}
.wpforms-form label {
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-panton);
}
.wpforms-form label span {
  font-family: var(--font-family);
}
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select {
  margin: 0;
  outline: none;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 10px;
  padding: var(--wpforms-field-size-padding-h) var(--wpforms-field-size-padding-w) !important;
  width: 100%;
  height: var(--wpforms-field-size-input-height) !important;
  color: var(--text-color);
  font-size: var(--wpforms-field-size-font-size) !important;
  line-height: 1.33;
}
.wpforms-form input::-webkit-input-placeholder, .wpforms-form textarea::-webkit-input-placeholder, .wpforms-form select::-webkit-input-placeholder {
  color: #929292;
}
.wpforms-form input::-moz-placeholder, .wpforms-form textarea::-moz-placeholder, .wpforms-form select::-moz-placeholder {
  color: #929292;
}
.wpforms-form input:-ms-input-placeholder, .wpforms-form textarea:-ms-input-placeholder, .wpforms-form select:-ms-input-placeholder {
  color: #929292;
}
.wpforms-form input::-ms-input-placeholder, .wpforms-form textarea::-ms-input-placeholder, .wpforms-form select::-ms-input-placeholder {
  color: #929292;
}
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder,
.wpforms-form select::placeholder {
  color: #929292;
}
.wpforms-form textarea {
  resize: vertical;
}
.wpforms-form em.wpforms-error[role=alert] {
  position: absolute !important;
  bottom: -20px;
}
.wpforms-form button[type=submit] {
  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;
  outline: none;
  border: 1px solid transparent;
  border-radius: var(--wpforms-button-border-radius);
  background-color: var(--wpforms-button-background-color);
  padding: 0;
  width: 100%;
  height: var(--wpforms-button-size-height, 49px);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.wpforms-form button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--accent-color);
  color: var(--light-color);
}
@media (any-hover: hover) {
  .wpforms-form button[type=submit]:not(:disabled):hover {
    border-color: var(--accent-color);
    background-color: var(--bg-color);
    color: var(--accent-color);
  }
}
.wpforms-form .form-bottom-text {
  text-align: center;
  text-wrap: balance;
}
.wpforms-form .form-bottom-text a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.wpforms-form .form-bottom-text a:hover {
  text-decoration: underline;
}
.wpforms-form .error {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  color: red;
  font-weight: 400;
  font-size: 11px;
  font-family: var(--font-family);
}
.wpforms-form .wpforms-field-gdpr-checkbox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.wpforms-form .wpforms-field-gdpr-checkbox ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wpforms-form .wpforms-field-gdpr-checkbox ul li {
  display: block;
  text-align: center;
}
.wpforms-form .wpforms-field-gdpr-checkbox ul li input {
  display: none;
  width: 25px;
  height: 25px;
}

.wpforms-page-button:focus:after {
  border-radius: inherit !important;
}

.wpforms-container-full .wpforms-form .iti--allow-dropdown .iti__country-container .iti__dropdown-content .iti__country-list {
  max-height: 110px !important;
}

.form-order .wpforms-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@supports ((-webkit-appearance: base-select) or (-moz-appearance: base-select) or (appearance: base-select)) {
  select, select::picker(select) {
    -webkit-appearance: base-select;
    -moz-appearance: base-select;
    appearance: base-select;
  }
}

select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #b4b4b4;
  border-radius: 10px;
  background: var(--bg-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23FFF' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A") right 10px center/20px no-repeat;
  padding-inline: 20px 30px;
  padding-block: 10px;
  min-width: clamp(10.125rem, 7.341rem + 13.92vw, 16.25rem); /* 162 - 260 */
  color: #3f3e3f;
  font-weight: 700;
  font-size: 12px !important;
  line-height: 1;
}
@supports ((-webkit-appearance: base-select) or (-moz-appearance: base-select) or (appearance: base-select)) {
  select {
    background-image: none;
    padding-inline: 15px;
    padding-block: 9px;
  }
  select:open {
    /**/
  }
  select::picker-icon {
    -webkit-transition: rotate 0.2s ease-out;
    transition: rotate 0.2s ease-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='black' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
    width: 15px;
    height: 15px;
    content: "";
  }
  select:open::picker-icon {
    rotate: 180deg;
  }
  select::picker(select) {
    opacity: 0;
    -webkit-transition: height 0.4s ease-out, opacity 0.4s ease-out, overlay 0.4s, display 0.4s;
    transition: height 0.4s ease-out, opacity 0.4s ease-out, overlay 0.4s, display 0.4s;
    transition-behavior: allow-discrete;
    margin-top: 5px;
    border: 1px solid #b4b4b4;
    border-radius: 10px;
    background: white;
    padding: 0;
    height: 0;
    overflow: clip;
    font-weight: 400;
  }
  select:open::picker(select) {
    opacity: 1;
    height: calc-size(auto, size);
    overflow: auto;
  }
  @starting-style {
    select:open::picker(select) {
      opacity: 0;
      height: 0;
    }
  }
  select option {
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: color, background;
    transition-property: color, background;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    cursor: pointer;
    padding: 8px;
  }
  select option:not(:disabled):where(:hover, :focus, :active) {
    background: #f0f0f0;
    color: #323031;
  }
  select option:checked {
    background: #f4f3f3;
    color: #333333;
  }
  select option::checkmark {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: auto;
    color: var(--accent-color);
  }
  select option:first-child {
    border: 0;
  }
}

.btn {
  --btn-padding: 15px 17px;
  --btn-gap: 10px;
  --btn-border-width: 1px;
  --btn-border-style: solid;
  --btn-border-color: var(--accent-color);
  --btn-border-radius: 10px;
  --btn-font-family: inherit;
  --btn-font-size: 17px;
  --btn-font-weight: 500;
  --btn-color: var(--light-color);
  --btn-bg-color: var(--accent-color);
  --btn-bg-hover-color: var(--light-color);
  --btn-hover-color: var(--accent-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--btn-gap);
  -webkit-transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  border-width: var(--btn-border-width, 1px);
  border-style: var(--btn-border-style);
  border-color: var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-bg-color);
  padding: var(--btn-padding);
  color: var(--btn-color);
  font-weight: var(--btn-font-weight, 500);
  font-size: var(--btn-font-size, 16px);
  line-height: 1;
  font-family: var(--font-panton);
  text-decoration: none;
}
.btn svg path {
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
@media (any-hover: hover) {
  .btn:hover {
    border-color: var(--btn-hover-color);
    background-color: var(--btn-bg-hover-color);
    color: var(--btn-hover-color);
  }
  .btn:hover svg path {
    fill: var(--btn-hover-color);
  }
}
.btn:focus {
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.btn-link {
  --btn-border-width: 0px;
  --btn-bg-color: transparent;
  --btn-color: var(--link-color);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 0;
}
@media (any-hover: hover) {
  .btn-link:hover {
    color: var(--accent-color);
  }
}
.btn:disabled {
  opacity: 0.5;
  cursor: auto;
  border-color: var(--btn-border-color) !important;
  background-color: var(--btn-bg-color) !important;
  color: var(--btn-color) !important;
}
.btn-empty {
  --btn-padding: 10px 10px;
  --btn-bg-color: transparent;
  --btn-color: var(--accent-color);
}
@media (any-hover: hover) {
  .btn-empty:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
  }
  .btn-empty:hover svg path {
    fill: var(--bg-color);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: var(--bg-color);
  width: 100%;
  color: var(--text-color);
}
.header .header__container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .header {
    top: 0;
    -webkit-animation: headerTop 0.4s forwards;
    animation: headerTop 0.4s forwards;
  }
}
.header.topheader {
  top: -300px;
  backdrop-filter: blur(25px);
}
.header.topheader .header__container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .header.topheader .header__container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header.topheader .header__top {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
  }
}
.header.sticky {
  top: 0;
  backdrop-filter: blur(25px);
  width: 100%;
}
.header.sticky .header__container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .header.sticky .header__container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header.sticky .header__top {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr 1fr auto;
  grid-template-columns: auto 1fr 1fr auto;
  -webkit-column-gap: clamp(0.938rem, 0.757rem + 0.77vw, 1.25rem);
  -moz-column-gap: clamp(0.938rem, 0.757rem + 0.77vw, 1.25rem);
  column-gap: clamp(0.938rem, 0.757rem + 0.77vw, 1.25rem); /* 15 - 20 */
  row-gap: 19px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  max-height: 300px;
  overflow: initial;
}
@media (min-width: 1024px) {
  .header__top {
    -ms-grid-rows: auto 50px;
    grid-template-rows: auto 50px;
    -webkit-column-gap: clamp(1.25rem, -12.731rem + 21.84vw, 4.063rem);
    -moz-column-gap: clamp(1.25rem, -12.731rem + 21.84vw, 4.063rem);
    column-gap: clamp(1.25rem, -12.731rem + 21.84vw, 4.063rem); /* 20 - 65 */
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: clamp(5.75rem, -4.692rem + 21.26vw, 11.25rem); /* 92 - 180 */
  height: clamp(2.313rem, -1.603rem + 7.97vw, 4.375rem); /* 37 - 70 */
}
.header__logo img, .header__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.header .contacts-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: clamp(0.5rem, -0.119rem + 2.64vw, 0.938rem);
  -moz-column-gap: clamp(0.5rem, -0.119rem + 2.64vw, 0.938rem);
  column-gap: clamp(0.5rem, -0.119rem + 2.64vw, 0.938rem); /* 8 - 15 */
  row-gap: 6px;
  -ms-flex-line-pack: center;
  align-content: center;
}
@media (min-width: 1024px) {
  .header .contacts-item {
    -ms-grid-rows: 18px 17px;
    grid-template-rows: 18px 17px;
  }
}
.header .contacts-item.address {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-column-align: center;
  justify-self: center;
}
@media (min-width: 768px) {
  .header .contacts-item.address {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media (min-width: 1024px) {
  .header .contacts-item.address {
    -ms-grid-column-align: start;
    justify-self: start;
  }
}
.header .contacts-item.operating {
  display: none;
}
@media (min-width: 1024px) {
  .header .contacts-item.operating {
    display: -ms-grid;
    display: grid;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 3;
    grid-column: 3;
  }
}
.header .contacts-item.phones {
  display: none;
}
@media (min-width: 1024px) {
  .header .contacts-item.phones {
    display: -ms-grid;
    display: grid;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 4;
    grid-column: 4;
  }
}
.header .contacts-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: clamp(0.688rem, 0.182rem + 2.16vw, 1.563rem); /* 11 - 25 */
  height: clamp(0.688rem, 0.182rem + 2.16vw, 1.563rem); /* 11 - 25 */
}
@media (min-width: 1024px) {
  .header .contacts-item__icon {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
.header .contacts-item__icon img, .header .contacts-item__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.header .contacts-item__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: clamp(0.688rem, 0.334rem + 1.51vw, 0.938rem); /* 11 - 15 */
  line-height: clamp(0.875rem, 0.4rem + 0.97vw, 1.125rem); /* 14 - 18 */
  font-family: var(--font-family);
}
.header .contacts-item__title a {
  color: inherit;
}
.header .contacts-item__title a:hover {
  color: var(--accent-color);
}
.header .contacts-item__text {
  display: none;
}
@media (min-width: 1024px) {
  .header .contacts-item__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    line-height: -1px;
    font-family: var(--font-panton);
  }
}
.header .menu-katalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 120px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 3px 9px 20px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 3px 9px 20px 0px rgba(0, 0, 0, 0.29);
  border-radius: 10px;
  background-color: var(--bg-color);
  width: min(var(--content-width), 100vw - var(--content-offset) * 2);
  pointer-events: none;
}
.header .menu-katalog__wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .header .menu-katalog__wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 20;
  }
}
.header .menu-katalog .vertical-tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-right: 1px solid #d7ddd7;
  padding: 28px 0 28px 16px;
  width: 230px;
}
.header .menu-katalog .tab-button {
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  border-radius: 10px 0px 0px 10px;
  padding: 10px;
  width: 100%;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-panton);
  text-align: right;
}
@media (any-hover: hover) {
  .header .menu-katalog .tab-button:hover {
    color: var(--accent-color);
  }
}
.header .menu-katalog .tab-button.active {
  border-top: 1px solid #d7ddd7;
  border-bottom: 1px solid #d7ddd7;
  border-left: 1px solid #d7ddd7;
  font-weight: 700;
}
.header .menu-katalog .tab-button.active::after {
  position: absolute;
  top: 0;
  right: -2px;
  z-index: 1;
  background-color: var(--bg-color);
  width: 2px;
  height: 100%;
  content: "";
}
.header .menu-katalog .vertical-tab-content {
  padding: 15px 40px;
}
.header .menu-katalog .tab-content-item {
  display: none;
}
.header .menu-katalog .tab-content-item.active {
  display: block;
  height: 100%;
}
.header .menu-katalog .submenu {
  display: block;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-column-width: 230px;
  -moz-column-width: 230px;
  column-width: 230px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
  height: 100%;
}
.header .menu-katalog .submenu > li {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.header .menu-katalog .submenu > li > a {
  display: block;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-panton);
  text-wrap: nowrap;
}
.header .menu-katalog .submenu > li > a > span {
  font-family: var(--font-family);
}
@media (any-hover: hover) {
  .header .menu-katalog .submenu > li > a:hover {
    color: var(--accent-color);
  }
}
.header .btn-katalog {
  z-index: 5;
}
.header .dropdown.show .dropdown-menu {
  top: calc(100% + 8px);
  visibility: visible;
  opacity: 1;
  z-index: 4;
  pointer-events: all;
}
.header .btn-link {
  display: none;
}
@media (min-width: 1024px) {
  .header .btn-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header .btn-empty {
  display: none;
}
@media (min-width: 768px) {
  .header .btn-empty {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 3;
    grid-column: 3;
  }
}
@media (min-width: 1024px) {
  .header .btn-empty {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 4;
    grid-column: 4;
  }
}
.header .burger-btn {
  position: relative;
  -ms-grid-column: 4;
  grid-column: 4;
  color: var(--accent-color);
  --anim-menu-btn-size: 32px;
  --anim-menu-btn-icon-size: 25px;
  --anim-menu-btn-icon-stroke: 2px;
}
@media (min-width: 1024px) {
  .header .burger-btn {
    display: none;
  }
}
.header .burger-btn .anim-menu-btn__icon::before {
  width: 70%;
}
.header .burger-btn.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before {
  width: 50%;
}
.header-nav {
  display: -ms-grid;
  display: grid;
  position: fixed;
  top: var(--header-height);
  right: -102%;
  -ms-grid-rows: auto 1fr auto auto;
  grid-template-rows: auto 1fr auto auto;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
  background-color: var(--bg-color);
  padding: 20px;
  width: 100%;
  max-width: 550px;
  height: calc(100vh - var(--header-height) + 10px);
  height: calc(100dvh - var(--header-height) + 10px);
  overflow-y: auto;
}
.header-nav.menu--active {
  right: 0;
}
@media (min-width: 1024px) {
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    gap: clamp(10px, -9rem + 7.83vw, 70px);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--gray-color);
    padding: 0;
    width: auto;
    max-width: none;
    height: auto;
    overflow: initial;
  }
}
.header-nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-nav .contacts-item {
  display: -ms-grid !important;
  display: grid !important;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
@media (min-width: 1024px) {
  .header-nav .contacts-item {
    display: none !important;
  }
}
.header-nav .contacts-item__title {
  font-size: 14px;
}
.header-nav .contacts-item.phones {
  margin-left: auto;
}
.header-nav .btn-link {
  --btn-padding: 0;
  --btn-font-size: clamp(
    0.813rem,
    0.085rem + 3.64vw,
    0.938rem
  ); /* 13 - 15 */
  --btn-font-weight: 700;
}
.header-nav .btn-link svg {
  display: none;
}
@media screen and (min-width: 425px) {
  .header-nav .btn-link svg {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header-nav .btn-link:first-of-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media (min-width: 1024px) {
  .header-nav .btn-link:first-of-type {
    display: none;
  }
}
.header-nav .btn-link.btn-zamer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media (min-width: 1024px) {
  .header-nav .btn-link.btn-zamer {
    display: none;
  }
}
.header-nav .btn-empty {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media (min-width: 768px) {
  .header-nav .btn-empty {
    display: none !important;
  }
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 0.528rem + 3.08vw, 40px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    gap: clamp(24px, -6.33rem + 12.23vw, 70px);
    width: 100%;
  }
}
.header-menu > li {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .header-menu > li:hover .sub-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.header-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto;
  padding-top: clamp(0.375rem, 0.261rem + 0.57vw, 0.625rem);
  padding-bottom: clamp(0.375rem, 0.261rem + 0.57vw, 0.625rem);
  color: var(--menu-color);
  font-weight: 600;
  font-size: 17px;
  line-height: -1px;
  font-family: var(--font-panton);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header-menu > li > a {
    margin: 0;
    padding-top: 0;
    padding-block: 9px;
    font-size: 18px;
  }
}
.header-menu > li > a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--accent-color);
}

@-webkit-keyframes headerTop {
  0% {
    top: -300px;
  }
  100% {
    top: 0;
  }
}

@keyframes headerTop {
  0% {
    top: -300px;
  }
  100% {
    top: 0;
  }
}
.contacts-item__title.dropdown-address > span {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.contacts-item__title.dropdown-address:hover > span {
  color: var(--accent-color);
}

.dropdown-address {
  cursor: pointer;
}
.dropdown-address .dropdown-menu-address {
  position: absolute;
  top: 60px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -webkit-box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: var(--bg-color);
  padding: 15px 18px;
  min-width: 170px;
}
.dropdown-address .dropdown-menu-address ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.dropdown-address .dropdown-menu-address ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  cursor: pointer;
  color: #505050;
  font-weight: 600;
  font-size: 15px;
}
.dropdown-address .dropdown-menu-address ul > li.sel {
  color: var(--accent-color);
}
.dropdown-address .dropdown-menu-address ul > li.sel::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 8px;
  height: 5px;
  content: url(../img/check.svg);
}
.dropdown-address .dropdown-menu-address ul > li:hover {
  color: var(--accent-color);
}

.dropdown-address.show .dropdown-menu-address {
  top: calc(100% + 3px);
  visibility: visible;
  opacity: 1;
}

.section-promotions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
.section-promotions .promotions-slider {
  --padding-block-pagination-promoslider: clamp(
    0.625rem,
    0.057rem + 2.42vw,
    1.875rem
  ); /* 10 - 30 */
  --height-promo-slider: clamp(
    14.25rem,
    4.648rem + 40.97vw,
    35.375rem
  ); /* 228 - 566 */
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: var(--height-promo-slider);
}
.section-promotions .promotions-slider .swiper-slide {
  height: 100%;
  overflow: hidden;
}
.section-promotions .promotions-slider .swiper-slide::before, .section-promotions .promotions-slider .swiper-slide::after {
  position: absolute;
  width: clamp(21rem, -46.636rem + 105.68vw, 32.625rem);
  height: clamp(21rem, -46.636rem + 105.68vw, 32.625rem);
  content: "";
}
@media screen and (max-width: 1023.98px) {
  .section-promotions .promotions-slider .swiper-slide::after {
    content: none;
  }
}
.section-promotions .promotions-slider .swiper-slide:has(> div.yellow)::before {
  top: -11%;
  left: 34%;
  z-index: 1;
  background-image: url(../img/promotions/three-square.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-promotions .promotions-slider .swiper-slide:has(> div.yellow)::after {
  top: 13%;
  right: -5%;
  z-index: 0;
  background-image: url(../img/promotions/two-square.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-promotions .promotions-slider .swiper-slide:has(> div.gray)::before {
  top: -20%;
  left: -5%;
  z-index: 1;
  background-image: url(../img/promotions/three-square.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-promotions .promotions-slider .swiper-slide:has(> div.gray)::after {
  top: 21%;
  right: 35%;
  z-index: 0;
  background-image: url(../img/promotions/two-square.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-promotions .promotions-slider .promotions-swiper-pagination {
  padding-top: var(--padding-block-pagination-promoslider);
  padding-bottom: var(--padding-block-pagination-promoslider);
}
.section-promotions .promotions-slider .promotions-swiper-pagination .swiper-pagination-bullet-active {
  width: 21px;
}
.section-promotions .promotions-slider .promotions-form {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-promotions .promotions-slider .promotions-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 43%;
    right: 2%;
    left: 50%;
    -webkit-transform: translateY(-50%) skewX(-4deg);
    -ms-transform: translateY(-50%) skewX(-4deg);
    transform: translateY(-50%) skewX(-4deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    z-index: 3;
    -webkit-animation: rightPromoFormDesktop 0.5s forwards;
    animation: rightPromoFormDesktop 0.5s forwards;
    -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    background-color: var(--bg-color);
    padding: 20px 0;
    width: 387px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  .section-promotions .promotions-slider .promotions-form {
    -webkit-animation: rightPromoForm 0.5s forwards;
    animation: rightPromoForm 0.5s forwards;
  }
}
.section-promotions .promotions-slider .promotions-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  row-gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transform: skewX(4deg);
  -ms-transform: skewX(4deg);
  transform: skewX(4deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: 2;
  height: 100%;
  min-height: 360px;
}
.section-promotions .promotions-slider .promotions-form::before {
  position: absolute;
  top: 17%;
  left: 63%;
  -webkit-transform: translateX(-50%) skewX(4deg);
  -ms-transform: translateX(-50%) skewX(4deg);
  transform: translateX(-50%) skewX(4deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: 0;
  /* Фолбэк */
  background-image: url(../img/forms/roof.png);
  /* Для Chrome и Safari */
  background-image: -webkit-image-set(url(../img/forms/roof.png) 1x);
  /* Для Firefox */
  background-image: image-set(url(../img/forms/roof.png) 1x);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 530px;
  height: 310px;
  pointer-events: none;
  content: "";
}
.section-promotions .promotions-slider .promotions-form__title {
  width: 86%;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-panton);
  text-align: center;
}
.section-promotions .promotions-slider .promotions-form__text {
  margin-bottom: 20px;
  width: 90%;
  font-size: 14px;
  font-family: var(--font-panton);
  text-align: center;
}
.section-promotions .promotions-slider .promotions-form__info {
  margin: 0;
  margin-right: 26%;
  max-width: 40ch;
  font-weight: 300;
  font-size: 9px;
  font-family: var(--font-panton);
  text-align: center;
}
.section-promotions .promotions-slider .promotions-form__info a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (any-hover: hover) {
  .section-promotions .promotions-slider .promotions-form__info a:hover {
    color: var(--accent-color);
  }
}
.section-promotions .promotions-slider .promotions-form .wpforms-form {
  row-gap: 25px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-right: 2%;
  width: 88%;
}
.section-promotions .promotions-slider .promotions-form .wpforms-form .form__btn {
  margin-left: 7%;
  width: 80%;
}
@media (any-hover: hover) {
  .section-promotions .promotions-slider .promotions-form .wpforms-form .form__btn:hover {
    border-color: var(--btn-accent-color);
    background-color: var(--bg-color);
    color: var(--accent-color);
  }
}
.section-promotions .promotions-slider.even .promotions-form {
  right: 2%;
  left: 62%;
  -webkit-animation: leftPromoForm 1s forwards;
  animation: leftPromoForm 1s forwards;
}
@media screen and (min-width: 1440px) {
  .section-promotions .promotions-slider.even .promotions-form {
    left: 50%;
  }
}
.section-promotions .promotions-slider.odd .promotions-form {
  right: 2%;
  left: 0;
  -webkit-animation: rightPromoFormDesktop 1s forwards;
  animation: rightPromoFormDesktop 1s forwards;
}
@media screen and (min-width: 1440px) {
  .section-promotions .promotions-slider.odd .promotions-form {
    right: 2%;
    left: 0;
    -webkit-animation: rightPromoForm 1s forwards;
    animation: rightPromoForm 1s forwards;
  }
}
.section-promotions .promotions-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 100vw;
  min-height: var(--height-promo-slider);
  overflow: hidden;
}
.section-promotions .promotions-item.yellow {
  background-color: var(--accent-2-color);
}
.section-promotions .promotions-item.yellow .promotions-item__content {
  right: auto;
  left: max((100vw - var(--content-width)) / 2, 15px);
}
.section-promotions .promotions-item.yellow .promotion__colors {
  background-color: var(--accent-2-color);
}
.section-promotions .promotions-item.gray {
  background-color: var(--gray-slide-color);
}
.section-promotions .promotions-item.gray .promotions-item__content {
  right: max((100vw - var(--content-width)) / 2, 15px);
  left: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.section-promotions .promotions-item.gray .promotion__colors {
  background-color: var(--gray-slide-color);
}
.section-promotions .promotions-item.gray .promotion__text {
  text-align: right;
}
.section-promotions .promotions-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: var(--bg-color);
  height: calc(var(--padding-block-pagination-promoslider) * 2 + 21px);
  content: "";
}
.section-promotions .promotions-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 45%;
  row-gap: clamp(0.625rem, 0.199rem + 1.82vw, 1.563rem); /* 10 - 25 */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  margin-top: -2%;
}
@media screen and (min-width: 1024px) {
  .section-promotions .promotions-item__content {
    margin-top: 0;
  }
}
.section-promotions .promotions-item .promotion {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--light-color);
}
.section-promotions .promotions-item .promotion__colors {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  border-radius: 2px;
  width: clamp(0.875rem, 0.676rem + 0.85vw, 1.313rem); /* 14 -21 */
  height: clamp(1rem, 0.744rem + 1.09vw, 1.563rem); /* 16 - 25 */
}
.section-promotions .promotions-item .promotion__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.705rem + 0.73vw, 1.25rem); /* 14 - 20 */
  line-height: -1px;
  font-family: var(--font-panton);
}
.section-promotions .promotions-item .promotion__title {
  margin-bottom: clamp(0rem, -9.091rem + 14.2vw, 1.563rem);
  font-weight: 800;
  font-size: clamp(2.813rem, 1.989rem + 3.52vw, 4.625rem); /* 45 - 74 */
}
.section-promotions .promotions-item .promotion__text {
  margin: 0;
  max-width: 35ch;
  font-size: clamp(0.813rem, 0.784rem + 0.12vw, 0.875rem); /* 13 - 14 */
  font-family: var(--font-panton);
  text-transform: uppercase;
}
.section-promotions .promotions-item .promotion__text p {
  margin: 0;
}
.section-promotions .promotions-item .promotion__text span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section-promotions .promotions-item .promotion__text span {
    display: inline-block;
  }
}
.section-promotions .promotions-item .promotions-item__image {
  position: absolute;
  z-index: 3;
}
.section-promotions .promotions-item .promotions-item__image picture {
  position: absolute;
  inset: 0;
}
.section-promotions .promotions-item .promotions-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.section-promotions .promotions-item.yellow .promotions-item__image {
  top: -74%;
  left: -60%;
  aspect-ratio: 1680/1050;
  width: clamp(42.063rem, 13.455rem + 122.06vw, 105rem); /* 673 - 1680 */
  height: auto;
}
@media screen and (min-width: 425px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -70%;
    left: -60%;
  }
}
@media screen and (min-width: 567px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -69%;
    left: -43%;
  }
}
@media screen and (min-width: 768px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -66%;
    left: -47%;
  }
}
@media screen and (min-width: 1024px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -70%;
    left: -74%;
  }
}
@media screen and (min-width: 1180px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -70%;
    left: -65%;
  }
}
@media screen and (min-width: 1440px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -68%;
    left: -43%;
  }
}
@media screen and (min-width: 1600px) {
  .section-promotions .promotions-item.yellow .promotions-item__image {
    top: -69%;
    left: -23%;
  }
}
.section-promotions .promotions-item.gray .promotions-item__image {
  top: -58%;
  right: -26%;
  aspect-ratio: 1034/908;
  width: clamp(26.25rem, 8.807rem + 74.42vw, 64.625rem); /* 420 - 1034 */
}
@media screen and (min-width: 375px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -58%;
    right: -19%;
  }
}
@media screen and (min-width: 567px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -55%;
    right: -25%;
  }
}
@media screen and (min-width: 1024px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -52%;
    right: -25%;
  }
}
@media screen and (min-width: 1180px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -56%;
    right: -7%;
  }
}
@media screen and (min-width: 1440px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -56%;
    right: -5%;
  }
}
@media screen and (min-width: 1600px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -56%;
    right: -4%;
  }
}
@media screen and (min-width: 1900px) {
  .section-promotions .promotions-item.gray .promotions-item__image {
    top: -56%;
    right: -3.1%;
  }
}

@-webkit-keyframes leftPromoForm {
  100% {
    right: 0;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(-160%);
    transform: translateY(-50%) skewX(-4deg) translateX(-160%);
  }
}

@keyframes leftPromoForm {
  100% {
    right: 0;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(-160%);
    transform: translateY(-50%) skewX(-4deg) translateX(-160%);
  }
}
@-webkit-keyframes rightPromoForm {
  100% {
    right: 2%;
    left: 50%;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(49%);
    transform: translateY(-50%) skewX(-4deg) translateX(49%);
  }
}
@keyframes rightPromoForm {
  100% {
    right: 2%;
    left: 50%;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(49%);
    transform: translateY(-50%) skewX(-4deg) translateX(49%);
  }
}
@-webkit-keyframes rightPromoFormDesktop {
  100% {
    right: 0%;
    left: 40%;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(49%);
    transform: translateY(-50%) skewX(-4deg) translateX(49%);
  }
}
@keyframes rightPromoFormDesktop {
  100% {
    right: 0%;
    left: 40%;
    -webkit-transform: translateY(-50%) skewX(-4deg) translateX(49%);
    transform: translateY(-50%) skewX(-4deg) translateX(49%);
  }
}
.section-catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
@media screen and (min-width: 640px) {
  .section-catalog__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .section-catalog__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-catalog .catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  -webkit-box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background-color: #f8f8f8;
  padding: 7px;
}
.section-catalog .catalog-item:first-of-type {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-catalog .catalog-item:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
}
@media screen and (min-width: 1024px) {
  .section-catalog .catalog-item:first-of-type {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
  }
}
.section-catalog .catalog-item__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.875rem, -1.03rem + 9.52vw, 1.5rem); /* 14 - 24 */
  -webkit-transition: border-color 0.2s ease-in-out, color 0.2s, background-color 0.2s;
  transition: border-color 0.2s ease-in-out, color 0.2s, background-color 0.2s;
  border: 1px solid transparent;
  border-radius: 12px;
  background-color: var(--accent-color);
  padding: clamp(0.5rem, 0.119rem + 1.9vw, 0.625rem) clamp(0.625rem, -0.137rem + 3.81vw, 0.875rem); /* 8 - 10  10 - 14 */
  color: var(--light-color);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem); /* 14 - 16 */
  text-align: left;
}
@media screen and (min-width: 640px) {
  .section-catalog .catalog-item__btn {
    cursor: auto;
  }
}
.section-catalog .catalog-item__btn .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.section-catalog .catalog-item__btn .icon img, .section-catalog .catalog-item__btn .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.section-catalog .catalog-item__btn .arrow {
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
  margin-left: auto;
}
@media screen and (min-width: 640px) {
  .section-catalog .catalog-item__btn .arrow {
    display: none;
  }
}
.section-catalog .catalog-item__categories {
  visibility: hidden;
  transition-behavior: allow-discrete;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: block-size, content-visibility;
  transition-property: block-size, content-visibility;
  margin-top: -10px;
  width: 100%;
  block-size: 0;
  overflow: hidden;
}
.section-catalog .catalog-item__categories.show-product {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  block-size: auto;
  block-size: calc-size(auto, size);
}
@media screen and (min-width: 640px) {
  .section-catalog .catalog-item__categories {
    -webkit-column-gap: 22px;
    -moz-column-gap: 22px;
    column-gap: 22px;
    -webkit-column-width: 390px;
    -moz-column-width: 390px;
    column-width: 390px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    block-size: auto;
    block-size: calc-size(auto, size);
  }
}
.section-catalog .catalog-item__categories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 4px;
  border-radius: 10px;
  background: var(--bg-color);
  padding: clamp(0.188rem, 0.011rem + 0.75vw, 0.313rem); /* 3 - 5 */
  color: var(--link-color);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-panton);
}
.section-catalog .catalog-item__categories .category > span > span {
  font-family: var(--font-family);
}
.section-catalog .catalog-item__categories .category__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: 1px solid var(--gray-color);
  border-radius: 7px;
  width: 42px;
  height: 42px;
  overflow: hidden;
}
.section-catalog .catalog-item__categories .category__icon img, .section-catalog .catalog-item__categories .category__icon svg {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (any-hover: hover) {
  .section-catalog .catalog-item__categories .category:hover {
    color: var(--accent-color);
  }
  .section-catalog .catalog-item__categories .category:hover .category__icon {
    border-color: var(--accent-color);
  }
}
.section-catalog .catalog-item__categories .category:focus {
  outline: none;
}
.section-catalog .catalog-item__categories .category:focus-visible {
  outline: 2px solid var(--accent-2-color);
  outline-offset: 2px;
}
.section-catalog .catalog-item:has(.show-product) .catalog-item__btn .arrow {
  rotate: 180deg;
}

.section-category-catalog .catalog-grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .catalog-grid {
    -ms-grid-columns: 260px 1fr 1fr;
    grid-template-columns: 260px 1fr 1fr;
  }
}
.section-category-catalog .catalog-grid .btn-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border-color 0.2s ease-in-out, color 0.2s, background-color 0.2s;
  transition: border-color 0.2s ease-in-out, color 0.2s, background-color 0.2s;
  border: 1px solid transparent;
  border-radius: 12px;
  background-color: var(--accent-color);
  padding: 10px;
  max-width: 130px;
  color: var(--light-color);
  font-weight: 600;
  font-size: 12px;
}
.section-category-catalog .catalog-grid .btn-filters::after {
  -webkit-transition: rotate 0.2s ease-out;
  transition: rotate 0.2s ease-out;
  margin-left: auto;
  width: 15px;
  height: 15px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='white' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
}
.section-category-catalog .catalog-grid .btn-filters.open::after {
  rotate: 180deg;
}
.section-category-catalog .catalog-grid__filters {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row-align: start;
  align-self: start;
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .catalog-grid__filters {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-category-catalog .catalog-grid__title {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .catalog-grid__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    font-weight: 900;
    font-size: 17px;
    font-family: var(--font-panton);
    text-transform: uppercase;
  }
}
.section-category-catalog .catalog-grid__sorting {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-column-align: end;
  justify-self: end;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .catalog-grid__sorting {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 3;
    grid-column: 3;
  }
}
.section-category-catalog .catalog-grid__cards {
  -ms-grid-row: 2;
  grid-row: 2;
  grid-column: 1/-1;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .catalog-grid__cards {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
    grid-column: 2/-1;
  }
}
.section-category-catalog .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 48px;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  z-index: 2;
  -webkit-transition: height 0.4s ease-out, opacity 0.4s ease-out, overlay 0.4s, display 0.4s;
  transition: height 0.4s ease-out, opacity 0.4s ease-out, overlay 0.4s, display 0.4s;
  transition-behavior: allow-discrete;
  -webkit-box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgb(248, 248, 248);
  padding: 10px;
  width: 100%;
  max-width: 270px;
  height: 0;
  overflow: clip;
  font-family: var(--font-panton);
}
.section-category-catalog .filters.open-filters {
  opacity: 1;
  height: calc-size(auto, size);
  min-height: 774px;
  overflow: auto;
}
@starting-style {
  .section-category-catalog .filters.open-filters {
    opacity: 0;
    height: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-category-catalog .filters {
    position: relative;
    top: 0;
    opacity: 1;
    height: auto;
    overflow: initial;
  }
}
.section-category-catalog .filters__title {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
}
.section-category-catalog .filters-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
  color: #333333;
  font-size: 17px;
}
.section-category-catalog .filters-form .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.section-category-catalog .filters-form .input__box {
  display: -ms-grid;
  display: grid;
  row-gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  padding: 10px;
  width: 100%;
}
.section-category-catalog .filters-form .input__box .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-category-catalog .filters-form .input__box .grid:not(:has(.grid-item:nth-of-type(3))), .section-category-catalog .filters-form .input__box .grid:has(.grid-item:nth-of-type(4)) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.section-category-catalog .filters-form .input__box .grid:has(> .grid-list) {
  -ms-grid-columns: 1fr !important;
  grid-template-columns: 1fr !important;
}
.section-category-catalog .filters-form .input__box .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-category-catalog .filters-form .input__box .grid label {
  cursor: pointer;
}
.section-category-catalog .filters-form .input__box .grid input[type=radio] {
  cursor: pointer;
  margin: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--accent-color);
}
.section-category-catalog .filters-form .input__box .grid-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 4.5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 170px;
  overflow-y: auto;
}
.section-category-catalog .filters-form .input__box .grid-list > li, .section-category-catalog .filters-form .input__box .grid-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  width: 100%;
  font-size: 17px;
  font-family: var(--font-panton);
}
.section-category-catalog .filters-form .input__box .grid-list > li label, .section-category-catalog .filters-form .input__box .grid-list__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.section-category-catalog .filters-form .input__box .grid-list > li span, .section-category-catalog .filters-form .input__box .grid-list__item span {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 110px;
  flex: 0 1 110px;
  margin-left: auto;
  border-radius: 2px;
  height: 15px;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL5005) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL5005) span {
  background-color: #0071db;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL8017) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL8017) span {
  background-color: #333333;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL6005) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL6005) span {
  background-color: #db2600;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL3005) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL3005) span {
  background-color: #7a0328;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL8417) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL8417) span {
  background-color: #0a5d00;
}
.section-category-catalog .filters-form .input__box .grid-list > li:has(input#RAL1005) span, .section-category-catalog .filters-form .input__box .grid-list__item:has(input#RAL1005) span {
  background-color: #5ac1e3;
}
.section-category-catalog .filters-form .btn {
  --btn-padding: 11px 22px;
  --btn-font-weight: 400;
}
.section-category-catalog .filters-form .btn-empty {
  --btn-color: #333333;
}/*# sourceMappingURL=vendor.css.map */
