@charset "UTF-8";

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

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

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

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

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

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Onest";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Onest";
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  color: #252525;
  font-size: 16px;
  line-height: 1.2;
}

body._lock {
  overflow: hidden;
}

body._menu-opened .header::after {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body._catalog-opened::before {
  content: '';
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 3;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

body._search-opened {
  overflow: hidden;
}

body._search-opened::before {
  content: '';
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 3;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  width: 100%;
  padding: 0 20px;
  max-width: 1210px;
  margin: 0 auto;
}

._btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 24px;
  background: #87AF00;
  -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;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  min-height: 48px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

._btn._stroke {
  border: 1px solid #87AF00;
  background: none;
  color: #87AF00;
}

._btn._stroke._white {
  color: #fff;
  border-color: #fff;
}

._btn._stroke._white svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

._btn._stroke._white svg path[fill] {
  fill: #fff;
}

._btn._stroke._white svg path[stroke] {
  stroke: #fff;
}

._btn._fw {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #F1F1F1;
  border-radius: 6px;
  background: #F1F1F1;
  cursor: pointer;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 50px;
  padding: 0px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 14px;
  height: 14px;
  margin-left: auto;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #252525;
  display: none;
  position: absolute;
  top: 100%;
  border-radius: 6px;
  overflow-y: auto;
  width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #EAEAEA;
  font-size: 16px;
  max-height: 320px;
  min-width: 220px;
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.select__option._active {
  background: #F3F3F3;
}

.select__option._active::after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: auto;
  display: inline-block;
  background: url(../img/icons/selected.svg) center/cover no-repeat;
}

.select._active {
  z-index: 1;
}

.select._active .select__title {
  border-color: #87AF00;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  width: 100%;
  display: block;
  padding: 0px 20px;
  border-radius: 6px;
  background: #F1F1F1;
  min-height: 52px;
  color: #8A8C8D;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #F1F1F1;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.input::-webkit-input-placeholder {
  color: #8A8C8D;
}

.input::-moz-placeholder {
  color: #8A8C8D;
}

.input:-ms-input-placeholder {
  color: #8A8C8D;
}

.input::-ms-input-placeholder {
  color: #8A8C8D;
}

.input::placeholder {
  color: #8A8C8D;
}

.input:focus {
  border-color: #87AF00;
}

.input._focus {
  color: #252525;
}

.input._error {
  border-color: red;
}

.input._date {
  background: url(../img/icons/calendar.svg) calc(100% - 20px) center/24px no-repeat, #F1F1F1;
}

.input._search {
  background: url(../img/icons/search.svg) calc(100% - 20px) center/18px no-repeat, #F1F1F1;
}

textarea.input {
  resize: none;
  padding: 15px 20px;
  height: 100px;
  overflow-y: auto;
}

.label {
  font-size: 16px;
  font-weight: 400;
  color: #252525;
}

.label._required::after {
  content: '*';
  color: #E30909;
  font-weight: 700;
  margin-left: 5px;
}

.form__error {
  font-size: 14px;
  color: #E30909;
  display: inline-block;
  margin-top: 5px;
}

.showpass {
  cursor: pointer;
}

.showpass._active .showpass__off {
  display: none;
}

.showpass._active .showpass__on {
  display: block;
}

.showpass__on {
  display: none;
  width: 24px;
  height: 24px;
}

.showpass__off {
  display: block;
  width: 24px;
  height: 24px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__content:before {
  background: url("../img/icons/check.svg") center/16px no-repeat, #87AF00;
}

.checkbox__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #252525;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox__content:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 8px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #EAEAEA;
}

.checkbox__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.checkbox__count {
  color: #9C9C9C;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.checkbox a {
  color: #87AF00;
  text-decoration: underline;
}

.checkbox._error .checkbox__content:before {
  border: 1px solid #ee1212;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px;
  border: 1px solid #EAEAEA;
  border-radius: 50px;
}

.switch_input {
  display: none;
}

.switch__content {
  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;
  border-radius: 50px;
  width: 65px;
  cursor: pointer;
}

.switch__icon svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.switch__icon svg path[fill] {
  fill: #A0A0A0;
}

.switch__icon svg path[stroke] {
  stroke: #A0A0A0;
}

.switch__icon svg rect {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.switch__icon svg rect[fill] {
  fill: #A0A0A0;
}

.options {
  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;
  row-gap: 20px;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #252525;
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 8px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #D1D1D6;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%) scale(0);
      -ms-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #87AF00;
  position: absolute;
  left: 5px;
  top: 50%;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  background: #F7F8FA;
  padding: 0px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  height: 12px;
  width: 12px;
  position: relative;
  cursor: pointer;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-tap-highlight-color: transparent;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: -1px 0px 0px -6px;
  background-color: #252525;
  width: 12px;
  height: 2px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.quantity__button_cart__plus::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.quantity__button_plus_products::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

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

.quantity__input input {
  height: 100%;
  color: #252525;
  font-size: 14px;
  width: 100%;
  text-align: center;
  min-width: 0px;
  max-width: 100%;
  background: none;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  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;
}

h1._title {
  color: #252525;
  font-size: 30px;
  font-weight: 700;
}

._like svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

._like svg path[fill] {
  fill: #fff;
}

._like svg path[stroke] {
  stroke: #fff;
}

._like._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

._like._active svg path[fill] {
  fill: #87AF00;
}

._like._active svg path[stroke] {
  stroke: #87AF00;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

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

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #252525;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
  display: none;
}

.qs-datepicker .qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.26392em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
  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;
  width: 33.33333%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-datepicker .qs-controls {
  width: 100%;
  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-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  color: #252525;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.26392em;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}

.qs-datepicker .qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}

.qs-datepicker .qs-arrow:after {
  content: "";
  border: 0.39062em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.qs-datepicker .qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
  outline: none;
}

.qs-datepicker .qs-month {
  padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
  padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #252525;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-square {
  width: 14.28571%;
  height: 1.5625em;
  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;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  border-radius: 0.26392em;
}

.qs-datepicker .qs-square.qs-current {
  font-weight: 700;
}

.qs-datepicker .qs-square.qs-current span {
  text-decoration: underline;
}

.qs-datepicker .qs-square.qs-active {
  background: #87AF00;
  color: #fff;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
  background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
  border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled span {
  opacity: 0.2;
}

.qs-datepicker .qs-square.qs-empty {
  cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
  cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
  cursor: default;
  font-weight: 700;
  color: grey;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #87AF00;
  color: #fff;
}

.qs-datepicker .qs-event {
  position: relative;
}

.qs-datepicker .qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
  background: #cce4ff;
}

.pagging {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__arrow {
  border: 1px solid #EAEAEA;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  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;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s 0s;
  transition: border-color 0.3s 0s;
}

.pagging__arrow img,
.pagging__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
}

.pagging__arrow svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.pagging__arrow svg path[fill] {
  fill: #252525;
}

.pagging__arrow svg path[stroke] {
  stroke: #252525;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__item {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
  color: #252525;
  font-size: 14px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s 0s, color 0.3s 0s;
  transition: border-color 0.3s 0s, color 0.3s 0s;
}

.pagging__item._active {
  background: #87AF00;
  border-color: #87AF00;
  color: #fff;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: 100dvh;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
}

.popup__body {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  height: 100vh;
  max-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__close {
  width: 15px;
  height: 15px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.popup__head {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E9E9E9;
}

.popup__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #252525;
  font-size: 26px;
  font-weight: 500;
}

.popup__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.popup__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.popup__blocks {
  margin-top: 20px;
}

.popup__block:not(._active) {
  display: none;
}

.popup__footer {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  border-top: 1px solid #E9E9E9;
}

.popup__text {
  color: #8E8E8E;
  font-size: 16px;
  text-align: center;
}

.popup__text a {
  color: #87AF00;
  text-decoration: underline;
}

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

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

.form-popup__input {
  position: relative;
}

.form-popup__showpass {
  position: absolute;
  top: 26px;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-popup__link {
  display: inline-block;
  margin-top: 9px;
  color: #87AF00;
  font-size: 16px;
}

.type-report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.type-report__input {
  display: none;
}

.type-report__input:checked + .type-report__content {
  background: #87AF00;
  border-color: #87AF00;
  font-weight: 500;
  color: #fff;
}

.type-report__content {
  color: #252525;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  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;
  border: 1px solid #EAEAEA;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
}

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

.order-request__main {
  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;
  row-gap: 10px;
}

.order-request__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  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;
  background: rgba(135, 175, 0, 0.1);
}

.order-request__icon img,
.order-request__icon svg {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}

.order-request__text {
  width: 100%;
  color: #252525;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.order-request__text > *:not(:last-child) {
  margin-bottom: 15px;
}

.order-request__footer .order-request__text {
  color: #8C8C8C;
}

.header {
  background: #fff;
  border-bottom: 1px solid #E3E3E3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 4;
}

.header::after {
  content: '';
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.header__content {
  position: relative;
}

.header__main {
  padding: 14px 0px;
  background: #fff;
}

.header__bottom {
  padding: 14px 0px;
  background: #fff;
}

.header__cart {
  position: absolute;
  top: 100%;
  right: 20px;
}

.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.main-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  width: 190px;
}

.main-header__logo img,
.main-header__logo svg {
  width: 100%;
  max-width: 100%;
}

.main-header__search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main-header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  color: #252525;
  font-size: 16px;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.main-header__login img,
.main-header__login svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.main-header__login svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.main-header__login svg path[fill] {
  fill: #252525;
}

.main-header__login svg path[stroke] {
  stroke: #252525;
}

.main-header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.search-header._result .search-header__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-header__open {
  width: 18px;
  height: 18px;
  background: none;
}

.search-header__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
}

.search-header__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.search-header__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background: #F7F6F4;
  padding: 8px 20px;
  border-radius: 4px;
}

.search-header__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  color: #AAAAAA;
  background: none;
}

.search-header__input._focus {
  color: #252525;
}

.search-header__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
  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;
  background: none;
}

.search-header__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: none;
}

.search-header__results {
  display: none;
  width: 800px;
  background: #fff;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  border-radius: 4px;
  border: 1px solid #EAEAEA;
  max-height: calc(100dvh - 100px);
  overflow: hidden;
  z-index: 3;
}

.results-search-header__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  padding: 20px;
  max-height: 100%;
  overflow-y: auto;
}

.results-search-header__section:not(:last-child) {
  margin-bottom: 30px;
}

.results-search-header__title {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
}

.results-search-header__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #252525;
  font-size: 14px;
}

.results-search-header__list a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.results-search-header__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px;
  overflow-y: auto;
  max-height: 100%;
}

.results-search-header__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.results-search-header__product {
  padding: 10px 0px;
}

.results-search-header__product:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

.results-search-header__product:first-child {
  padding-top: 0;
}

.results-search-header__product:last-child {
  padding-bottom: 0;
}

.results-search-header__footer {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #EAEAEA;
}

.product-results-search {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr;
  grid-template-columns: 50px 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product-results-search__image {
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid #EAEAEA;
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-transition: border-color 0.3s 0s;
  transition: border-color 0.3s 0s;
}

.product-results-search__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-results-search__name {
  color: #252525;
  font-size: 14px;
  font-weight: 600;
  min-height: 50px;
}

.product-results-search__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.product-results-search__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.product-results-search__price {
  margin-right: auto;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 1px;
}

.product-results-search__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product-results-search__action {
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  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: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  background: none;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product-results-search__action svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product-results-search__action svg path[fill] {
  fill: #D3D3D3;
}

.product-results-search__action svg path[stroke] {
  stroke: #D3D3D3;
}

.product-results-search__action._active {
  border-color: #87AF00;
}

.product-results-search__action._active svg path[fill] {
  fill: #87AF00;
}

.product-results-search__action._active svg path[stroke] {
  stroke: #87AF00;
}

.product-results-search__action._buy {
  border-color: #87AF00;
}

.product-results-search__action img,
.product-results-search__action svg {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}

.bottom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.bottom-header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bottom-header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.menu__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.menu__user {
  margin-top: 30px;
}

.head-menu {
  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;
  padding: 20px;
  border-bottom: 1px solid #EAEAEA;
}

.head-menu__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  width: 150px;
}

.head-menu__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: none;
}

.list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: 20px;
      flex-wrap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.list-menu__item {
  color: #252525;
  font-size: 16px;
  font-weight: 500;
}

.list-menu__link {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.list-menu__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  color: #252525;
  font-size: 16px;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.list-menu__login img,
.list-menu__login svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.list-menu__login svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.list-menu__login svg path[fill] {
  fill: #252525;
}

.list-menu__login svg path[stroke] {
  stroke: #252525;
}

.list-menu__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
}

.user-menu {
  padding: 20px 0px;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}

.user-menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.user-menu__top._active .user-menu__arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.user-menu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.user-menu__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.user-menu__name {
  color: #252525;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.user-menu__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7px;
          flex: 0 0 7px;
  width: 7px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.user-menu__arrow img,
.user-menu__arrow svg {
  width: 100%;
  max-width: 100%;
}

.user-menu__body {
  margin-top: 20px;
  display: none;
}

.user-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #252525;
  font-size: 16px;
}

.user-menu__list a {
  color: inherit;
}

.language {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
}

.language__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.language__head._active .language__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.language__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 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;
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.language__body {
  z-index: 2;
  background: #fff;
  position: absolute;
  left: -10px;
  top: 100%;
  width: calc(100% + 20px);
  display: none;
}

.language__item {
  padding: 5px 10px;
  display: block;
  color: #252525;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.cart-header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #252525;
  font-size: 16px;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.cart-header-btn__icon {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
}

.cart-header-btn__icon svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.cart-header-btn__icon svg path[fill] {
  fill: #252525;
}

.cart-header-btn__icon svg path[stroke] {
  stroke: #252525;
}

.cart-header-btn__count {
  position: absolute;
  right: -6px;
  top: -6px;
  background: #87AF00;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  text-align: center;
  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-weight: 600;
  font-size: 11px;
  color: #000000;
}

.icon-menu {
  display: none;
}

.cart-header {
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  -webkit-box-shadow: 0 16px 16px -8px rgba(12, 12, 13, 0.1), 0 4px 4px -4px rgba(12, 12, 13, 0.05);
          box-shadow: 0 16px 16px -8px rgba(12, 12, 13, 0.1), 0 4px 4px -4px rgba(12, 12, 13, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  max-height: calc(100dvh - 140px);
  width: 100vw;
  max-width: 320px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.cart-header:not(._active) {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cart-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px;
  border-bottom: 1px solid #EAEAEA;
}

.cart-header__title {
  color: #252525;
  font-size: 26px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cart-header__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: none;
}

.cart-header__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px;
  overflow-y: auto;
}

.cart-header__product {
  padding: 20px 0px;
  border-bottom: 1px solid #E5E5E5;
}

.cart-header__product:first-child {
  padding-top: 0;
}

.cart-header__details {
  margin-top: 20px;
}

.cart-header__footer {
  padding: 0px 20px 20px;
}

.product-cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product-cart-header__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 76px 1fr 24px;
  grid-template-columns: 76px 1fr 24px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.product-cart-header__image {
  border-radius: 4px;
  background: #FFF;
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-cart-header__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-cart-header__name {
  color: #000;
  font-size: 12px;
  font-weight: 600;
}

.product-cart-header__name a {
  color: inherit;
}

.product-cart-header__text {
  color: #A0A0A0;
  font-size: 12px;
  font-weight: 600;
}

.product-cart-header__other {
  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;
}

.product-cart-header__quantity {
  margin-right: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
}

.product-cart-header__price {
  text-align: right;
  font-size: 14px;
  font-weight: 800;
}

.product-cart-header__price span {
  font-size: 18px;
}

.details-cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.details-cart-header__item {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.details-cart-header__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.details-cart-header__value {
  text-align: right;
  font-weight: 800;
  font-size: 14px;
}

.details-cart-header__value span {
  font-size: 18px;
}

.catalog-header {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  border-radius: 0 0 4px 4px;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100svh - 150px);
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 3;
}

.catalog-header:not(._active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.catalog-header__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  width: 320px;
  background: #fff;
  max-height: 100%;
  overflow-y: auto;
  padding: 30px 0px 30px 30px;
}

.catalog-header__blocks {
  max-height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.catalog-header__block {
  height: 100%;
  max-height: 100%;
}

.catalog-header__block._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.catalog-header__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  width: 320px;
  padding: 30px;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  overflow-y: auto;
  border-left: 1px solid #E5E5E5;
}

.catalog-header__body {
  margin-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.catalog-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.catalog-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #252525;
  font-size: 14px;
  color: #252525;
  font-weight: 400;
}

.catalog-header__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.catalog-header__count {
  text-align: right;
  color: #A9A9A9;
}

.head-catalog-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-catalog-header__name {
  font-size: 18px;
  color: #252525;
  font-weight: 600;
  margin-right: auto;
}

.head-catalog-header__close {
  color: #8C8C8C;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  cursor: pointer;
}

.head-catalog-header__back {
  color: #8C8C8C;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  cursor: pointer;
}

.sidebar-catalog-header__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 32px 1fr 16px;
  grid-template-columns: 32px 1fr 16px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.sidebar-catalog-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.sidebar-catalog-header__name {
  color: #252525;
  font-size: 14px;
  font-weight: 400;
}

.sidebar-catalog-header__arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.mobile-nav {
  background: #fff;
  -webkit-box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 -6px 30px 0 rgba(0, 0, 0, 0.12);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.mobile-nav__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.mobile-nav__item {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  color: #252525;
  font-size: 10px;
  font-weight: 400;
  padding: 10px 0px;
}

.mobile-nav__icon {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.mobile-nav__icon img,
.mobile-nav__icon svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.back-content {
  position: fixed;
  bottom: 70px;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: #87AF00;
  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;
  right: 20px;
  z-index: 2;
}

.back-content img,
.back-content svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
}

.back-content:not(._view) {
  display: none;
}

.footer {
  background: #F6F6F6;
  padding: 60px 0px;
  position: relative;
}

.footer__columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 30px;
}

.footer__name {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  color: #252525;
  font-size: 14px;
}

.footer__list a {
  color: inherit;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
  margin-top: 12px;
}

.footer__social {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.footer__social svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.footer__social svg path[fill] {
  fill: #252525;
}

.footer__social svg path[stroke] {
  stroke: #252525;
}

.info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.info-footer__logo {
  width: 100%;
  max-width: 190px;
}

.info-footer__logo img,
.info-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.info-footer__copy {
  color: #252525;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.feedback-open {
  position: fixed;
  right: 0;
  bottom: 40%;
  background-color: #7B3ABD;
  color: white;
  padding: 20px 12px;
  font-size: 14px;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* делает текст вертикальным */
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  /* переворачивает текст */
  cursor: pointer;
  z-index: 2;
  -webkit-transition: background-color 0.3s 0s;
  transition: background-color 0.3s 0s;
}

.banner {
  padding: 30px 0px 40px;
}

.banner__slide {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 90px;
}

.banner__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

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

.banner__body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  max-width: 350px;
}

.banner__body > * {
  position: relative;
  z-index: 1;
}

.banner__title {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

.banner__text {
  font-size: 16px;
  line-height: 1.5;
}

.category-section {
  padding: 40px 0px;
}

.category-section__content {
  margin-top: 30px;
}

.category-section__slider {
  margin: -20px;
  padding: 20px;
}

.category-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 4) / 5);
          flex: 0 0 calc((100% - 30px * 4) / 5);
}

.category-section__item:not(:last-child) {
  margin-right: 30px;
}

.category-section__footer {
  margin-top: 30px;
}

.head-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.head-section__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #252525;
  font-size: 26px;
  font-weight: 500;
}

.head-section__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  color: #87AF00;
  font-weight: 400;
}

.head-section__more img,
.head-section__more svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.item-category-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -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;
  color: #252525;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  background: #F9F9F9;
  padding: 12px 20px;
  min-height: 160px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.item-category-section__icon {
  width: 42px;
  height: 42px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
}

.item-category-section__icon img,
.item-category-section__icon svg {
  width: 42px;
  height: 42px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
}

.item-category-section__name {
  -ms-hyphens: auto;
      hyphens: auto;
}

.slider-action {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.slider-action__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  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;
  -webkit-transition: border-color 0.3s 0s;
  transition: border-color 0.3s 0s;
  cursor: pointer;
}

.slider-action__arrow img,
.slider-action__arrow svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.slider-action__arrow svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.slider-action__arrow svg path[fill] {
  fill: #252525;
}

.slider-action__arrow svg path[stroke] {
  stroke: #252525;
}

.slider-action__fractions {
  font-size: 14px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.type-establishment-section {
  padding: 40px 0px;
}

.type-establishment-section__content {
  margin-top: 30px;
}

.type-establishment-section__slider {
  margin: -20px;
  padding: 20px;
}

.type-establishment-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 3) / 4);
          flex: 0 0 calc((100% - 40px * 3) / 4);
}

.type-establishment-section__item:not(:last-child) {
  margin-right: 40px;
}

.type-establishment-section__footer {
  margin-top: 30px;
}

.item-type-establishment {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 160px;
}

.item-type-establishment__image {
  width: 100%;
  height: 100%;
}

.item-type-establishment__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.item-type-establishment__body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  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;
  padding: 20px;
}

.item-type-establishment__name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.product-section {
  padding: 40px 0px;
}

.product-section__content {
  margin-top: 30px;
}

.product-section__slider {
  margin: -1px;
  padding: 1px;
}

.product-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 4px) / 5);
          flex: 0 0 calc((100% - 4px) / 5);
}

.product-section__item:not(:last-child) {
  margin-right: 1px;
}

.product-section__footer {
  margin-top: 30px;
}

.product {
  outline: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.product._no-stock .product__head,
.product._no-stock .product__main {
  opacity: 0.35;
}

.product._no-stock .product__buttons {
  width: 100%;
  max-width: 100%;
}

.product._no-stock .product__main,
.product._no-stock .product__row-info {
  opacity: 0.5;
}

.product._bought .product__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product._bought .product__buy {
  display: none;
}

.product__head {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.product__image {
  overflow: hidden;
  height: 200px;
  display: block;
  width: 100%;
}

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

.product__fav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  cursor: pointer;
  background: none;
}

.product__fav._active svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__fav._active svg path[fill] {
  fill: #87AF00;
}

.product__fav._active svg path[stroke] {
  stroke: #87AF00;
}

.product__fav svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__fav svg path[fill] {
  fill: #ffffff;
}

.product__fav svg path[stroke] {
  stroke: #ffffff;
}

.product__mods {
  position: absolute;
  top: 12px;
  right: 12px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product__mod {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background: #D43557;
  padding: 6px 5px 5px;
  line-height: 0.88;
  border-radius: 4px;
}

.product__body {
  padding: 10px 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product__name {
  color: #252525;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.product__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.product__text {
  color: #A0A0A0;
  font-size: 12px;
  line-height: 1.4;
}

.product__art {
  color: #9C9C9C;
  font-size: 12px;
}

.product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}

.product__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #252525;
  font-size: 16px;
  font-weight: 700;
}

.product__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product__buttons .product__notify {
  min-height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  background: none;
}

.product__like img,
.product__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.product__like svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__like svg path[fill] {
  fill: #d3d3d3;
}

.product__like svg path[stroke] {
  stroke: #d3d3d3;
}

.product__like._active {
  border-color: #87AF00;
}

.product__like._active svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__like._active svg path[fill] {
  fill: #87AF00;
}

.product__like._active svg path[stroke] {
  stroke: #87AF00;
}

.product__buy {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #87AF00;
  border-radius: 4px;
}

.product__buy img,
.product__buy svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.product__quantity {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  width: 75px;
  min-height: 40px;
  background: none;
  display: none;
  margin-left: auto;
}

.product__notify {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
}

.product__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.product__row-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  display: none;
}

.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.product__info-det {
  color: #A0A0A0;
  font-size: 12px;
  font-weight: 400;
}

.product__footer {
  display: none;
}

.packing-option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.packing-option__item:first-child .packing-option__content {
  border-radius: 4px 0px 0px 4px;
}

.packing-option__item:last-child .packing-option__content {
  border-radius: 0px 4px 4px 0px;
}

.packing-option__input {
  display: none;
}

.packing-option__input:checked + .packing-option__content {
  color: #fff;
  background: #87AF00;
}

.packing-option__content {
  color: #878787;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 5px;
  white-space: nowrap;
  background: #E8E8E8;
  cursor: pointer;
}

.product-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr 60px;
  grid-template-columns: 60px 1fr 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 0px;
}

.product-row._no-stock .product-row__image,
.product-row._no-stock .product-row__body,
.product-row._no-stock .product-row__button,
.product-row._no-stock .product-row__buy {
  opacity: 0.35;
}

.product-row._bought .product-row__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-row._bought .product-row__buy {
  display: none;
}

.product-row__image {
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.product-row__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-row__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product-row__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.product-row__name {
  color: #252525;
  font-size: 14px;
  font-weight: 500;
}

.product-row__name a {
  color: inherit;
}

.product-row__mods {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-row__mods .product__mod {
  padding: 4px 9px;
  line-height: 0.9;
}

.product-row__info {
  color: #A0A0A0;
  font-size: 12px;
  font-weight: 400;
}

.product-row__price {
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.product-row__buy {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #87AF00;
  border-radius: 4px;
}

.product-row__buy img,
.product-row__buy svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.product-row__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #87AF00;
  border-radius: 4px;
}

.product-row__button img,
.product-row__button svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.product-row__quantity {
  display: none;
  margin-left: -12px;
  width: 72px;
}

._row-products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2] !important;
  grid-template-columns: repeat(2, 1fr) !important;
  -webkit-column-gap: 20px !important;
     -moz-column-gap: 20px !important;
          column-gap: 20px !important;
}

._row-products .product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr 60px;
  grid-template-columns: 60px 1fr 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 0px;
  outline: 0;
  border-bottom: 1px solid #EAEAEA;
}

._row-products .product._bought .product__footer .product__quantity {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

._row-products .product._bought .product__footer .product__buy {
  display: none !important;
}

._row-products .product .product__head .product__fav,
._row-products .product .product__head .product__mods {
  display: none;
}

._row-products .product .product__image {
  height: auto !important;
  aspect-ratio: 1;
  padding: 0;
}

._row-products .product .product__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

._row-products .product .product__body {
  padding: 0px;
  row-gap: 5px;
}

._row-products .product .product__main {
  display: none;
}

._row-products .product .product__row-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

._row-products .product .product__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

._row-products .product .product__other .product__buy,
._row-products .product .product__other .product__quantity,
._row-products .product .product__other .product__notify,
._row-products .product .product__other .product__buttons {
  display: none;
}

._row-products .product .product__other .product__price {
  font-size: 14px;
}

._row-products .product .product__footer {
  display: block;
}

._row-products .product .product__footer .product__quantity {
  width: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  padding: 0px;
}

.about-row {
  padding: 40px 0px;
}

.about-row__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.about-row__wrapper._revers {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about-row__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
}

.about-row__image img {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

.about-row__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.about-row__content .about-row__image {
  width: 100%;
  max-width: 100%;
}

.about-row__body {
  color: #252525;
  font-size: 16px;
  line-height: 1.5;
}

.about-row__title {
  color: #252525;
  font-size: 26px;
  font-weight: 500;
}

.about-row__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.about-row__item {
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  padding-left: 34px;
  position: relative;
}

.about-row__body li::after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icons/list-check.svg) center/cover no-repeat;
}

.about-row__name {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.about-row__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.our-benefits {
  padding: 40px 0px;
}

.our-benefits__content {
  margin-top: 20px;
}

.our-benefits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.our-benefits__item {
  border-radius: 4px;
  border: 1px solid #DDD;
  background: #FFF;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 12px;
  padding: 20px;
}

.our-benefits__icon {
  width: 42px;
  height: 42px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
}

.our-benefits__name {
  color: #252525;
  font-size: 18px;
  font-weight: 600;
}

.our-benefits__text {
  color: #252525;
  font-size: 16px;
  font-weight: 400;
}

.mini-about {
  padding: 40px 0px;
}

.mini-about__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 372px;
  grid-template-columns: 1fr 372px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.mini-about__content {
  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;
  row-gap: 20px;
}

.mini-about__title {
  color: #252525;
  font-size: 26px;
  font-weight: 500;
}

.mini-about__body {
  font-size: 18px;
  line-height: 1.5;
  color: #252525;
}

.mini-about__image {
  border-radius: 4px;
  min-height: 270px;
  overflow: hidden;
  position: relative;
}

.mini-about__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrums {
  padding: 20px 0px 30px;
}

.breadcrums + section {
  padding-top: 0 !important;
}

.breadcrums__list {
  color: #9C9C9C;
  font-size: 14px;
  line-height: 1.7;
}

.breadcrums__item {
  display: inline;
}

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

.breadcrums__item:not(:last-child)::after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  background: url(../img/icons/next-breadcrums.svg) center/cover no-repeat;
}

.breadcrums__item a {
  color: #252525;
}

.registration-success {
  padding: 80px 0px;
}

.registration-success__wrapper {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  border: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0px auto;
  padding: 40px;
}

.registration-success__icon {
  width: 52px;
  height: 52px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
}

.registration-success__title {
  font-size: 24px;
  font-weight: 700;
}

.registration-success__text {
  color: #252525;
  font-size: 16px;
  line-height: 1.5;
  max-width: 410px;
}

.registration-success__button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.catalog {
  padding: 50px 0px 50px;
}

.catalog__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 1fr;
  grid-template-columns: 220px 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.catalog__filter-list {
  margin-top: 30px;
}

.catalog__filter-list:not(._filter-active) {
  display: none;
}

.catalog__body {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.catalog__footer {
  margin-top: 20px;
}

.catalog__article {
  margin-top: 20px;
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.catalog__article h3 {
  font-size: 24px;
  font-weight: 600;
}

.catalog__article h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#catalog-in-row .catalog__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filter__head {
  border-bottom: 1px solid #EAEAEA;
  padding: 20px;
}

.filter__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.filter__section {
  padding: 20px 0px;
  border-bottom: 1px solid #E4E4E4;
}

.filter__section._md2 {
  border: none;
  padding-bottom: 0;
}

.filter__section:first-child {
  padding-top: 0;
}

.filter__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  cursor: pointer;
}

.filter__top._active .filter__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.filter__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.filter__body {
  display: none;
  margin-top: 20px;
}

.filter__body .head-catalog__sort {
  display: block !important;
}

.filter__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid #EAEAEA;
}

.filter__button {
  width: 100%;
  max-width: 100%;
}

.filter__reset {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #87AF00;
  background: none;
}

.head-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.head-filter__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.head-filter__title {
  color: #252525;
  font-size: 26px;
  font-weight: 500;
}

.head-filter__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: none;
}

.list-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.list-filter__item .checkbox__content {
  font-size: 14px;
}

.list-filter__sublist {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-top: 20px;
}

.list-filter__subitem {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  width: 100%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-catalog__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-catalog__title {
  color: #252525;
  font-size: 30px;
  font-weight: 700;
}

.head-catalog__count {
  color: #9C9C9C;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.head-catalog__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.head-catalog__sort {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  width: 150px;
}

.head-catalog__sort .select {
  width: 100%;
  max-width: 100%;
}

.head-catalog__sort .select__title {
  background: none;
  border-radius: 50px;
}

.head-catalog__sort .select__value {
  height: 38px;
  font-size: 14px;
}

.head-catalog__sort .select__options {
  font-size: 14px;
}

.head-catalog__filter-btn {
  padding: 5px 20px;
  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;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #252525;
  border-radius: 50px;
  min-height: 40px;
  border: 1px solid #87AF00;
  background: none;
}

.head-catalog__filter-btn._active span {
  position: relative;
}

.head-catalog__filter-btn._active span::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #87AF00;
  position: absolute;
  top: 0;
  right: -8px;
}

.filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.filter-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filter-list__item {
  background: #ECECEC;
  border-radius: 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;
  text-align: center;
  position: relative;
  padding: 5px 20px;
  min-height: 32px;
}

.filter-list__remove {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(30%, -40%);
      -ms-transform: translate(30%, -40%);
          transform: translate(30%, -40%);
  background: #505050;
  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;
  border-radius: 5px;
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.filter-list__remove img,
.filter-list__remove svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  width: 8px;
  height: 8px;
}

.filter-list__clear {
  background: #A0A0A0;
  min-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 12px;
  color: #fff;
  padding: 0px 16px;
  border-radius: 10px;
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.filter-list__clear div {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  border-radius: 5px;
  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;
  background: #fff;
}

.filter-list__clear div img,
.filter-list__clear div svg {
  width: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
}

.card {
  padding: 40px 0px;
}

.card__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 482px 1fr;
  grid-template-columns: 482px 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.card__main-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title {
  color: #252525;
  font-size: 24px;
  font-weight: 500;
}

.card__art {
  color: #9C9C9C;
  font-size: 14px;
  font-weight: 400;
}

.card__mini-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.card__status {
  margin-right: auto;
  color: #87AF00;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.card__status img,
.card__status svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.card__status._no-stock {
  color: #9C9C9C;
}

.card__link {
  font-size: 14px;
  font-weight: 400;
  color: #87AF00;
}

.card__warning {
  color: #D8A500;
  font-size: 14px;
  font-weight: 400;
}

.card__fav {
  background: none;
  width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  height: 30px;
}

.card__fav svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.card__fav svg path[fill] {
  fill: #D3D3D3;
}

.card__fav svg path[stroke] {
  stroke: #D3D3D3;
}

.card__packing-option .packing-option__content {
  font-size: 14px;
  font-weight: 400;
}

.card__order {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.card__details {
  margin-top: 30px;
}

.card__details-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.card__price {
  color: #252525;
  font-size: 20px;
  font-weight: 700;
  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;
  row-gap: 5px;
  white-space: nowrap;
}

.card__price span._new {
  color: #FF0707;
}

.card__price span._old {
  font-size: 16px;
  font-weight: 400;
  color: #BDBDBD;
  text-decoration: line-through;
}

.card__quantity {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  width: 110px;
  height: 52px;
}

.card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 310px;
}

.gallery-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.gallery-card__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) - 10px);
          flex: 0 0 calc((100% - 80px) - 10px);
}

.gallery-card__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}

.main-gallery-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.main-gallery-card__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbs-gallery-card__item {
  width: 80px;
  height: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  cursor: pointer;
}

.thumbs-gallery-card__item:not(.swiper-slide-thumb-active) {
  opacity: 0.5;
}

.thumbs-gallery-card__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbs-gallery-card__item:not(:last-child) {
  margin-bottom: 10px;
}

.volume-card__label {
  color: #8C8C8C;
  font-size: 14px;
  display: block;
}

.volume-card__list {
  margin-top: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.volume-card__input {
  display: none;
}

.volume-card__input:checked + .volume-card__content {
  background: #87AF00;
  border-color: #87AF00;
  color: #fff;
}

.volume-card__content {
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  min-height: 38px;
  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;
  font-size: 14px;
  color: #8C8C8C;
  padding: 5px 20px;
  cursor: pointer;
}

.price-list__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 80px 80px 100px 125px;
  grid-template-columns: 60px 80px 80px 100px 125px;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #8C8C8C;
}

.price-list__body {
  margin-top: 5px;
}

.price-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 80px 80px 100px 125px;
  grid-template-columns: 60px 80px 80px 100px 125px;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #EAEAEA;
  padding: 10px 0px;
  font-size: 14px;
}

.price-list__item:first-child {
  border-top: 1px solid #EAEAEA;
}

.price-list__button {
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  font-size: 14px;
  padding: 3px 10px;
  min-height: 32px;
}

.price-list__button img,
.price-list__button svg {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
}

.details-card__nav {
  background: #F4F4F4;
  padding: 5px;
  border-radius: 8px;
}

.details-card__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.details-card__item {
  min-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;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #252525;
  border-radius: 8px;
}

.details-card__item._active {
  background: #fff;
  color: #87AF00;
}

.details-card__blocks {
  margin-top: 30px;
}

.details-card__characteristic {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  font-size: 14px;
}

.details-card__characteristic td {
  vertical-align: top;
  padding: 15px 20px;
}

.details-card__characteristic td:first-child {
  width: 220px;
}

.details-card__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.cart {
  padding: 50px 0px 50px;
}

.cart__wrapper {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 400px;
  grid-template-columns: 1fr 400px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  min-height: 350px;
  row-gap: 20px;
}

.cart__main {
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.cart__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EAEAEA;
}

.cart__count {
  margin-right: auto;
  color: #252525;
  font-size: 16px;
  font-weight: 400;
}

.cart__clear {
  color: #87AF00;
  font-size: 14px;
  font-weight: 400;
}

.cart__product {
  padding: 12px 0px;
  border-bottom: 1px solid #EAEAEA;
}

.cart__product:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-cart__main {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-grid-columns: 60px 1fr 100px 100px 24px;
  grid-template-columns: 60px 1fr 100px 100px 24px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.product-cart__image {
  aspect-ratio: 1/1;
  position: relative;
}

.product-cart__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-cart__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product-cart__name {
  color: #252525;
  font-size: 14px;
  font-weight: 600;
}

.product-cart__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.product-cart__art {
  color: #949494;
  font-size: 14px;
}

.product-cart__quantity {
  height: 40px;
}

.product-cart__total {
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
}

.product-cart__remove {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-cart__remove svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product-cart__remove svg path[fill] {
  fill: #9F9F9F;
}

.product-cart__remove svg path[stroke] {
  stroke: #9F9F9F;
}

.product-cart__gift-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FF0707;
  border-radius: 50%;
  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;
}

.product-cart__gift-icon img,
.product-cart__gift-icon svg {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
}

.gift-cart._active .gift-cart__select {
  display: block;
}

.gift-cart._active .gift-cart__add .icon-plus {
  display: none;
}

.gift-cart._active .gift-cart__add .icon-minus {
  display: block;
}

.gift-cart__add {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 14px;
  color: #87AF00;
  background: none;
}

.gift-cart__add img,
.gift-cart__add svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.gift-cart__add .icon-minus {
  display: none;
}

.gift-cart__select {
  display: none;
  margin-top: 10px;
}

.select-gift {
  position: relative;
}

.select-gift._open .select-gift__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select-gift__head {
  color: #8C8C8C;
  height: 50px;
  border: 1px solid #F1F1F1;
  background: #F1F1F1;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.select-gift__head .product-cart__quantity {
  -ms-grid-column: auto;
      grid-column-start: auto;
}

.select-gift__head .quantity {
  background: #fff;
}

.select-gift__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.select-gift__prod {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42px 1fr 100px 98px;
  grid-template-columns: 42px 1fr 100px 98px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select-gift__prod .select-gift__name {
  color: #252525;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.select-gift__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.select-gift__body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
  display: none;
  -webkit-box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
}

.select-gift__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 42px 1fr 24px;
  grid-template-columns: 42px 1fr 24px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #252525;
  font-size: 14px;
  padding: 5px 20px;
}

.select-gift__item._active {
  background: #F3F3F3;
}

.select-gift__item._active .select-gift__icon-active {
  display: block;
}

.select-gift__image {
  aspect-ratio: 1;
}

.select-gift__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.select-gift__icon-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: none;
}

.sidebar-order__wrapper {
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  padding: 20px;
}

.sidebar-order__list {
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.sidebar-order__list li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.sidebar-order__list li > span span {
  font-weight: 500;
}

.sidebar-order__list li > span:last-child {
  text-align: right;
  white-space: nowrap;
}

.sidebar-order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.order {
  padding: 50px 0px 50px;
}

.order__wrapper {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 360px;
  grid-template-columns: 1fr 360px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 20px;
}

.order__main {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #EAEAEA;
}

.order__section {
  padding: 40px 0px;
}

.order__section:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

.order__section:first-child {
  padding-top: 0;
}

.order__section:last-child {
  padding-bottom: 0;
}

.order__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.order__step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  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;
  color: #87AF00;
  font-size: 18px;
  font-weight: 700;
  background: #EAF2CC;
  border-radius: 50%;
  line-height: 1;
}

.order__name {
  color: #252525;
  font-size: 22px;
  font-weight: 700;
}

.order__body {
  margin-top: 30px;
}

.delivery-order__blocks {
  margin-top: 30px;
}

.delivery-order__block:not(._active) {
  display: none;
}

.nav-delivery-order__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.nav-delivery-order__input {
  display: none;
}

.nav-delivery-order__input:checked + .nav-delivery-order__content .nav-delivery-order__icon {
  border: 2px solid #87AF00;
}

.nav-delivery-order__input:checked + .nav-delivery-order__content .nav-delivery-order__icon::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.nav-delivery-order__content {
  padding: 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr;
  grid-template-columns: 24px 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  cursor: pointer;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-size: 18px;
}

.nav-delivery-order__icon {
  width: 24px;
  height: 24px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 1px solid #EAEAEA;
  position: relative;
  border-radius: 50%;
}

.nav-delivery-order__icon::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #87AF00;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.nav-delivery-order__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.nav-delivery-order__price {
  color: #868686;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.nav-delivery-order__price span {
  color: #252525;
}

.data-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 30px;
}

.data-order__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 10px * 1) / 2);
          flex: 1 0 calc((100% - 10px * 1) / 2);
}

.data-order__warning {
  margin-top: 10px;
}

.data-order__label {
  display: inline-block;
  margin-bottom: 10px;
}

.warning-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.warning-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.warning-order__text {
  font-size: 14px;
  line-height: 1.4;
}

.pickup-delivery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.pickup-delivery__info {
  padding: 20px;
  background: #F5F9E6;
  border-radius: 4px;
}

.pickup-delivery__title {
  color: #252525;
  font-size: 16px;
  font-weight: 700;
}

.pickup-delivery__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.pickup-delivery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #252525;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.pickup-delivery__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.pickup-delivery__map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 250px;
}

.pickup-delivery__map iframe {
  width: 100%;
  height: 100%;
}

.payment-order {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}

.payment-order__item {
  padding: 20px;
  border: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  border-radius: 8px;
}

.payment-order__item._active {
  border-color: #87AF00;
  outline: 1px solid #87AF00;
}

.payment-order__text {
  font-size: 16px;
  color: #252525;
}

.payment-order__input {
  display: none;
}

.payment-order__input:checked + .payment-order__value .payment-order__icon {
  border: 2px solid #87AF00;
}

.payment-order__input:checked + .payment-order__value .payment-order__icon::after {
  content: '';
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.payment-order__value {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  cursor: pointer;
}

.payment-order__icon {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  position: relative;
}

.payment-order__icon::after {
  content: '';
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  background: #87AF00;
  border-radius: 50%;
}

.stocks {
  padding: 50px 0px 50px;
}

.stocks__content {
  margin-top: 30px;
}

.stocks__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.stocks__footer {
  margin-top: 30px;
}

.stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  border: 1px solid #EAEAEA;
  padding: 16px;
  border-radius: 8px;
}

.stock__image {
  aspect-ratio: 335/230;
  border-radius: 8px;
  overflow: hidden;
}

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

.stock__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.stock__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.stock__name {
  color: #252525;
  font-size: 18px;
  font-weight: 700;
}

.stock__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.stock__date {
  font-size: 14px;
  font-weight: 700;
  color: #87AF00;
}

.stock__text {
  color: #585858;
  font-size: 16px;
  line-height: 1.4;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partnership {
  padding: 50px 0px 50px;
}

.partnership__content {
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  line-height: 1.5;
  margin-top: 20px;
}

.partnership__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
}

.partnership__banner {
  margin-top: 70px;
}

.banner-partnership {
  background: #F5F9E6;
  border-radius: 6px;
  padding: 20px 60px;
  overflow: hidden;
}

.banner-partnership__wrapper {
  width: 100%;
  max-width: 733px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.banner-partnership__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  max-width: 340px;
  width: 100%;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  position: relative;
  z-index: 2;
}

.banner-partnership__title {
  color: #252525;
  font-size: 28px;
  font-weight: 700;
}

.banner-partnership__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  min-width: 270px;
}

.banner-partnership__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 244px;
          flex: 0 0 244px;
  width: 244px;
  margin-left: auto;
  position: relative;
}

.banner-partnership__image::before {
  content: '';
  width: 425px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-52%, -35%);
      -ms-transform: translate(-52%, -35%);
          transform: translate(-52%, -35%);
  display: inline-block;
  background: #E1ECBD;
  border: 90px solid #EEF5D7;
}

.banner-partnership__image img {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.contacts {
  padding: 50px 0px 50px;
}

.contacts__content {
  margin-top: 30px;
}

.contacts__article {
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.contacts__article h3 {
  font-weight: 600;
  font-size: 18px;
  margin: 0px 0px 10px;
}

.contacts__main {
  margin-top: 30px;
}

.main-contacts__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-contacts__info {
  border-radius: 4px;
  background: #F5F9E6;
  padding: 30px;
}

.main-contacts__map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 340px;
}

.main-contacts__map iframe {
  width: 100%;
  height: 100%;
}

.info-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.info-contacts__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.info-contacts__title {
  font-size: 20px;
  font-weight: 700;
  color: #252525;
}

.info-contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.info-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.info-contacts__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.blogs {
  padding: 50px 0px 50px;
}

.blogs__head {
  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;
  row-gap: 20px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.blogs__content {
  margin-top: 30px;
}

.blogs__body:not(._view-all) .blogs__item:not(:nth-child(-n+6)) {
  display: none;
}

.blogs__body._view-all .blogs__footer {
  display: none;
}

.blogs__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}

.blogs__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.blogs__more {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  min-height: 40px;
}

.blogs__pagging {
  margin-top: 40px;
}

.nav-blogs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav-blogs__item {
  color: #87AF00;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #87AF00;
  padding: 5px 16px;
  border-radius: 4px;
  min-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;
  cursor: pointer;
}

.nav-blogs__item._active {
  background: #87AF00;
  color: #fff;
}

.blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.blog-item__head {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.blog-item__image {
  aspect-ratio: 555/380;
  overflow: hidden;
  border-radius: 4px;
}

.blog-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-item__date {
  color: #fff;
  padding: 6px 10px;
  background: #87AF00;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  left: 12px;
  text-transform: uppercase;
}

.blog-item__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  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;
  background: rgba(37, 37, 37, 0.6);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.blog-item__more {
  min-height: 44px;
  font-size: 16px;
  font-weight: 400;
}

.blog-item__more._mini {
  min-height: 33px;
  width: 33px;
  padding: 0px;
}

.blog-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.blog-item__name {
  color: #252525;
  font-size: 20px;
  font-weight: 600;
}

.blog-item__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.blog-item__text {
  color: #969696;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.blog-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.blog-page__other {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.blog-page__date {
  color: #87AF00;
  font-size: 14px;
}

.blog-page__theme {
  padding: 6px 10px;
  background: #87AF00;
  border-radius: 2px;
  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;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.blog-page__article {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  line-height: 1.4;
}

.blog-page__article img {
  width: 100%;
  max-width: 100%;
}

.blog-page__article > *:not(:last-child) {
  margin-bottom: 10px;
}

.blog-page__article ul {
  padding-left: 20px;
}

.blog-page__article ul li {
  list-style: disc;
}

.blog-page__article ul li:not(:last-child) {
  margin-bottom: 5px;
}

.blog-page__article h3 {
  font-size: 20px;
  font-weight: 700;
}

.blog-page__article h4 {
  font-size: 16px;
  font-weight: 600;
}

.other-blogs {
  padding: 50px 0px 50px;
}

.other-blogs__content {
  margin-top: 30px;
}

.other-blogs__slider {
  margin: -1px;
  padding: 1px;
}

.other-blogs__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.other-blogs__item:not(:last-child) {
  margin-right: 30px;
}

.other-blogs__footer {
  margin-top: 30px;
}

.cabinet {
  padding: 50px 0px 50px;
}

.cabinet__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px calc(100% - 330px);
  grid-template-columns: 300px calc(100% - 330px);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: -48px;
  row-gap: 20px;
}

.cabinet__title {
  color: #252525;
  font-size: 30px;
  font-weight: 700;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.cabinet__content {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.cabinet__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 5px;
}

.cabinet__name-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #252525;
  font-size: 22px;
  font-weight: 700;
}

.cabinet__name-section._no-grow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cabinet__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #ABABAB;
  font-size: 14px;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.cabinet__back img,
.cabinet__back svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.cabinet__back svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.cabinet__back svg path[fill] {
  fill: #ABABAB;
}

.cabinet__back svg path[stroke] {
  stroke: #ABABAB;
}

.cabinet__date {
  font-size: 16px;
}

.cabinet__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 12px;
}

.cabinet__clear {
  background: #A0A0A0;
  min-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 12px;
  color: #fff;
  padding: 0px 16px;
  border-radius: 10px;
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.cabinet__clear div {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  border-radius: 5px;
  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;
  background: #fff;
}

.cabinet__clear div img,
.cabinet__clear div svg {
  width: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
}

.cabinet__create-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #87AF00;
  font-size: 16px;
  font-weight: 500;
}

.cabinet__create-template div {
  width: 28px;
  height: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 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;
  background: #87AF00;
  border-radius: 50%;
}

.cabinet__create-template div img,
.cabinet__create-template div svg {
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
}

.cabinet__body {
  margin-top: 20px;
}

.banner-cabinet {
  position: relative;
}

.banner-cabinet__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-cabinet__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.banner-cabinet__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 405px;
          flex: 0 0 405px;
  height: 100%;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.banner-cabinet__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-cabinet__body {
  background: #87AF00;
  padding: 10px 20px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-cabinet__body::after {
  content: '';
  width: 200px;
  aspect-ratio: 1;
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: inherit;
}

.banner-cabinet__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.banner-cabinet__text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
}

.banner-cabinet__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  width: 100%;
}

.banner-cabinet__pagination .swiper-pagination-bullet {
  background: #87AF00;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  opacity: 0.25;
  cursor: pointer;
}

.banner-cabinet__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sidebar-cabinet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.sidebar-cabinet__item {
  border-radius: 4px;
  border: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  padding: 12px 20px;
  color: #252525;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.sidebar-cabinet__item._active {
  color: #fff;
  background: #87AF00;
  border-color: #87AF00;
}

.sidebar-cabinet__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EAF2CC;
  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;
}

.sidebar-cabinet__icon img,
.sidebar-cabinet__icon svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.user-cabinet__section {
  padding: 20px 0px;
}

.user-cabinet__section:last-child {
  border-bottom: 1px solid #EAEAEA;
}

.user-cabinet__section:first-child {
  padding-top: 0;
}


.user-cabinet__name {
  color: #252525;
  font-size: 20px;
  font-weight: 500;
}

.user-cabinet__body {
  margin-top: 20px;
}

.manager-user {
  background: #EAF2CC;
  border-radius: 6px;
  padding: 10px 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;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.manager-user__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.manager-user__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #87AF00;
  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;
}

.manager-user__icon img,
.manager-user__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.manager-user__info {
  color: #252525;
  font-size: 14px;
  font-weight: 400;
}

.manager-user__info strong {
  font-weight: 600;
}

.manager-user__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #252525;
}

.manager-user__phone img,
.manager-user__phone svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

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

.form-cabinet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.form-cabinet__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 20px) / 2);
          flex: 1 0 calc((100% - 20px) / 2);
}

.form-cabinet__item._tr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 20px * 2) / 3);
          flex: 1 0 calc((100% - 20px * 2) / 3);
}

.form-cabinet__item._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.form-cabinet__label {
  display: inline-block;
  margin-bottom: 10px;
}

.form-cabinet__input {
  position: relative;
}

.form-cabinet__showpass {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-cabinet__footer {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.history-order__item {
  padding: 12px 0px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  border-bottom: 1px solid #EAEAEA;
}

.history-order__item:first-child {
  border-top: 1px solid #EAEAEA;
}

.history-order__name {
  color: #252525;
  font-size: 14px;
  font-weight: 500;
}

.history-order__status {
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 10px;
  background: #EEF0F1;
  border-radius: 20px;
}

.history-order__total {
  margin-left: auto;
  color: #252525;
  font-size: 16px;
  font-weight: 700;
}

.history-order__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 520px;
          flex: 0 0 520px;
}

.history-order__product {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62px;
          flex: 0 0 62px;
}

.history-order__product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.history-order__more {
  font-size: 16px;
  font-weight: 500;
}

.history-order__repeat {
  font-size: 14px;
  font-weight: 500;
  color: #87AF00;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.history-order__repeat img,
.history-order__repeat svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.history-order__footer {
  margin-top: 20px;
}

.order-cabinet__body {
  margin-top: 20px;
}

.order-cabinet__product {
  padding: 20px 0px;
  border-bottom: 1px solid #EAEAEA;
}

.order-cabinet__product:first-child {
  border-top: 1px solid #EAEAEA;
}

.order-cabinet__footer {
  margin-top: 30px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #EAEAEA;
}

.head-order-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.head-order-cabinet__back {
  color: #87AF00;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.head-order-cabinet__back img,
.head-order-cabinet__back svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.head-order-cabinet__main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-order-cabinet__name {
  color: #252525;
  font-size: 16px;
  font-weight: 500;
}

.head-order-cabinet__status {
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 3px 10px;
  border-radius: 20px;
  background: #EEF0F1;
}

.product-order-cabinet {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 72px 1fr 80px 120px;
  grid-template-columns: 72px 1fr 80px 120px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 5px;
}

.product-order-cabinet > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.product-order-cabinet__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-order-cabinet__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-order-cabinet__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  line-height: 1.4;
}

.product-order-cabinet__name {
  color: #252525;
  font-size: 14px;
  font-weight: 600;
}

.product-order-cabinet__name a {
  color: inherit;
}

.product-order-cabinet__art {
  color: #949494;
  font-size: 14px;
}

.product-order-cabinet__text {
  font-size: 14px;
}

.product-order-cabinet__count {
  font-size: 14px;
}

.product-order-cabinet__total {
  font-weight: 700;
  font-size: 16px;
}

.footer-order-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.footer-order-cabinet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.footer-order-cabinet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-order-cabinet__total {
  font-size: 16px;
  font-weight: 500;
}

.footer-order-cabinet__bottom {
  padding-top: 20px;
  border-top: 1px solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 10px;
}

.footer-order-cabinet__action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 14px;
  color: #87AF00;
}

.footer-order-cabinet__action img,
.footer-order-cabinet__action svg {
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
}

.favorite-cabinet__block:not(._active) {
  display: none;
}

.favorite-cabinet__rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.favorite-cabinet__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.templates-cabinet__item {
  padding: 20px 0px;
  border-bottom: 1px solid #EAEAEA;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 310px auto 20px 24px;
  grid-template-columns: 1fr 310px auto 20px 24px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.templates-cabinet__item > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.templates-cabinet__item:first-child {
  border-top: 1px solid #EAEAEA;
}

.templates-cabinet__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.templates-cabinet__name {
  color: #252525;
  font-size: 16px;
  font-weight: 500;
}

.templates-cabinet__date {
  color: #949494;
  font-size: 14px;
}

.templates-cabinet__price {
  font-size: 16px;
  font-weight: 700;
}

.templates-cabinet__products {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.templates-cabinet__product {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62px;
          flex: 0 0 62px;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}

.templates-cabinet__product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.templates-cabinet__more svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.templates-cabinet__more svg path[fill] {
  fill: #252525;
}

.templates-cabinet__more svg path[stroke] {
  stroke: #252525;
}

.templates-cabinet__delete svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.templates-cabinet__delete svg path[fill] {
  fill: #C9C9C9;
}

.templates-cabinet__delete svg path[stroke] {
  stroke: #C9C9C9;
}

.template-details__product {
  padding: 12px 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 72px 1fr 100px 100px 100px 24px;
  grid-template-columns: 72px 1fr 100px 100px 100px 24px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-bottom: 1px solid #EAEAEA;
}

.template-details__product:first-child {
  border-top: 1px solid #EAEAEA;
}

.template-details__product > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.template-details__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}

.template-details__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.template-details__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.template-details__name {
  font-size: 14px;
  font-weight: 600;
  color: #252525;
}

.template-details__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.template-details__art {
  color: #949494;
  font-size: 14px;
}

.template-details__price {
  color: #252525;
  font-size: 16px;
}

.template-details__quantity .quantity {
  background: #F7F8FA;
  min-height: 40px;
}

.template-details__total {
  color: #252525;
  font-size: 16px;
  font-weight: 700;
}

.template-details__delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.template-details__delete svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.template-details__delete svg path[fill] {
  fill: #C9C9C9;
}

.template-details__delete svg path[stroke] {
  stroke: #C9C9C9;
}

.template-details__footer {
  margin-top: 20px;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.template-details__info-total {
  margin-right: auto;
  color: #252525;
  font-size: 20px;
  font-weight: 500;
}

.edit-template-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.edit-template-cabinet__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.edit-template-cabinet__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.edit-template-cabinet__label {
  display: inline-block;
  margin-bottom: 10px;
}

.edit-template-cabinet__input {
  position: relative;
}

.edit-template-cabinet__results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 4px;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
}

.edit-template-cabinet__results:not(._result) {
  display: none;
}

.edit-template-cabinet__results .results-search-header__products {
  margin-top: 0;
}

.edit-template-cabinet__results .product-results-search__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.edit-template-cabinet__results .product-results-search__name {
  min-height: 0;
}

.products-cabinet__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.products-cabinet__footer {
  margin-top: 20px;
}

.item-product-cabinet {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 40px;
  grid-template-columns: 1fr 100px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-product-cabinet__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.item-product-cabinet__name {
  color: #252525;
  font-size: 14px;
}

.item-product-cabinet__text {
  color: #9C9C9C;
  font-size: 12px;
}

.item-product-cabinet__price {
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.item-product-cabinet__buy {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #87AF00;
  border-radius: 4px;
}

.item-product-cabinet__buy img,
.item-product-cabinet__buy svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 124px;
}

.page section:last-child {
  padding-bottom: 50px;
}

@media (min-width: 479.98px) {
  .switch_input:checked + .switch__content {
    background: #87AF00;
  }

  .switch_input:checked + .switch__content .switch__icon svg path[fill] {
    fill: #fff;
  }

  .switch_input:checked + .switch__content .switch__icon svg path[stroke] {
    stroke: #fff;
  }

  .switch_input:checked + .switch__content .switch__icon svg rect[fill] {
    fill: #fff;
  }

  .form-cabinet._password {
    width: calc((100% - 20px) / 2);
  }

  .form-cabinet._password .form-cabinet__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .form-cabinet._password .form-cabinet__footer {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

@media (min-width: 721.98px) {
  .search-header__open {
    display: none;
  }

  .search-header__close {
    display: none;
  }

  .results-search-header::after {
    content: '';
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 320px;
    background: #EAEAEA;
    display: inline-block;
  }

  .results-search-header__footer {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .footer__column._copy {
    display: none;
  }

  .banner__body::after {
    content: '';
    width: 2046px;
    height: 2046px;
    border-radius: 50%;
    background: rgba(135, 175, 0, 0.85);
    position: absolute;
    top: 50%;
    right: -100px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
  }

  .type-establishment-section__footer {
    display: none;
  }

  .price-list__head span:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .product-cart__total {
    white-space: nowrap;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .main-header__other {
    display: none;
  }

  .menu__head {
    display: none;
  }

  .list-menu__item {
    position: relative;
  }

  .list-menu__login {
    display: none;
  }

  .user-menu {
    display: none;
  }

  .cart-header__top {
    display: none;
  }

  .catalog-header__top {
    display: none;
  }

  .catalog-header__item._active .catalog-header__name {
    color: #87AF00;
  }

  .head-catalog-header__close {
    display: none;
  }

  .head-catalog-header__back {
    display: none;
  }

  .sidebar-catalog-header__item._active .sidebar-catalog-header__name {
    color: #87AF00;
  }

  .sidebar-catalog-header__item._active .sidebar-catalog-header__arrow {
    opacity: 1;
    visibility: visible;
  }

  .product-section__footer._md2 {
    display: none;
  }

  ._row-products .product:nth-child(-n+2) {
    border-top: 1px solid #EAEAEA;
  }

  .about-row__content .about-row__image {
    display: none;
  }

  #catalog-in-row .catalog__body .product-row:nth-child(-n+2) {
    border-top: 1px solid #EAEAEA;
  }

  .filter__head {
    display: none;
  }

  .filter__section._md2 {
    display: none;
  }

  .filter__footer {
    display: none;
  }

  .head-catalog__filter-btn {
    display: none;
  }

  .favorite-cabinet__rows .favorite-cabinet__item:nth-child(-n+2) {
    border-top: 1px solid #eaeaea;
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #F3F3F3;
  }

  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1222px) {
  .back-content {
    right: calc((100vw - 1170px) / 2 - 30px);
  }
}

@media (max-width: 1222px) {
  .banner {
    padding: 20px 0px 30px;
  }

  .banner__slide {
    min-height: 415px;
    padding: 30px 70px;
  }

  .banner__title {
    font-size: 32px;
  }

  .category-section {
    padding: 30px 0px;
  }

  .category-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
            flex: 0 0 calc((100% - 20px * 4) / 5);
  }

  .category-section__item:not(:last-child) {
    margin-right: 20px;
  }

  .type-establishment-section {
    padding: 30px 0px;
  }

  .type-establishment-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .type-establishment-section__item:not(:last-child) {
    margin-right: 20px;
  }

  .product-section {
    padding: 30px 0px;
  }

  .about-row {
    padding: 30px 0px;
  }

  .our-benefits {
    padding: 30px 0px;
  }

  .our-benefits__list {
    gap: 20px;
  }

  .mini-about {
    padding: 30px 0px;
  }

  .mini-about__wrapper {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -ms-grid-columns: 1fr 305px;
    grid-template-columns: 1fr 305px;
  }

  .mini-about__image {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    min-height: 230px;
  }

  .registration-success {
    padding: 60px 0px;
  }

  .catalog {
    padding: 30px 0px 30px;
  }

  .catalog__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .card {
    padding: 30px 0px;
  }

  .card__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .cart {
    padding: 30px 0px 30px;
  }

  .cart__wrapper {
    grid-auto-columns: 1fr 345px;
  }

  .order {
    padding: 30px 0px 30px;
  }

  .order__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .payment-order__text {
    font-size: 14px;
  }

  .stocks {
    padding: 30px 0px 30px;
  }

  .partnership {
    padding: 30px 0px 30px;
  }

  .contacts {
    padding: 30px 0px 30px;
  }

  .blogs {
    padding: 30px 0px 30px;
  }

  .blog-page {
    padding: 30px 0px 30px;
  }

  .other-blogs {
    padding: 30px 0px 30px;
  }

  .other-blogs__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px ) / 2);
            flex: 0 0 calc((100% - 30px ) / 2);
  }

  .cabinet {
    padding: 30px 0px 30px;
  }

  .cabinet__head {
    -ms-grid-columns: 270px calc(100% - 290px);
    grid-template-columns: 270px calc(100% - 290px);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .cabinet__content {
    -ms-grid-columns: 270px 1fr;
    grid-template-columns: 270px 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .banner-cabinet__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }

  .page section:last-child {
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  h1._title {
    font-size: 28px;
  }

  .header__bottom {
    display: none;
  }

  .main-header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .main-header .main-header__login {
    display: none;
  }

  .search-header__results {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
  }

  .menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu__body:not(._active) {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
  }

  .menu__content {
    padding: 20px;
  }

  .list-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .list-menu__arrow {
    margin-left: auto;
  }

  .list-menu__arrow img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #10014B;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .cart-header {
    position: fixed;
    inset: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    border: 0;
    height: 100vh;
    max-height: 100dvh;
    max-width: 100%;
  }

  .cart-header__footer {
    padding: 12px 20px;
    border-top: 1px solid #E9E9E9;
  }

  .catalog-header {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0px;
    z-index: 3;
    max-width: 100%;
    max-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 20px 0px;
  }

  .catalog-header__sidebar {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: #fff;
    margin: 0px -20px;
    padding: 0px 20px 20px 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .catalog-header__blocks {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 0px;
    z-index: 1;
    overflow: visible;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .catalog-header__block._active {
    position: absolute;
    pointer-events: all;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
  }

  .catalog-header__main {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0px 20px 0px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .catalog-header__body {
    margin: 0px -20px;
    padding: 20px;
    overflow-y: auto;
  }

  .head-catalog-header {
    padding: 20px 0px;
  }

  .sidebar-catalog-header__arrow {
    display: none;
  }

  .footer {
    padding: 40px 0px;
  }

  .footer__columns {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .banner {
    padding: 20px 0px 25px;
  }

  .banner__slide {
    min-height: 330px;
    padding: 30px 40px;
  }

  .banner__body {
    row-gap: 12px;
  }

  .banner__title {
    font-size: 24px;
  }

  .category-section {
    padding: 25px 0px;
  }

  .category-section__content {
    margin-top: 20px;
  }

  .category-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .category-section__footer {
    margin-top: 20px;
  }

  .item-category-section {
    min-height: 112px;
    row-gap: 12px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .type-establishment-section {
    padding: 25px 0px;
  }

  .type-establishment-section__content {
    margin-top: 20px;
  }

  .type-establishment-section__footer {
    margin-top: 20px;
  }

  .item-type-establishment {
    min-height: 112px;
  }

  .item-type-establishment__name {
    font-size: 16px;
  }

  .product-section {
    padding: 25px 0px;
  }

  .product-section__content {
    margin-top: 20px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 3px) / 4);
            flex: 0 0 calc((100% - 3px) / 4);
  }

  .product-section__footer {
    margin-top: 20px;
  }

  .product__image {
    height: 150px;
    padding: 15% 5% 0% 5%;
  }

  .product__fav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: 8px;
    left: 8px;
  }

  .product__fav svg path[fill] {
    fill: #d3d3d3;
  }

  .product__fav svg path[stroke] {
    stroke: #d3d3d3;
  }

  ._row-products {
    -ms-grid-columns: 100% !important;
    grid-template-columns: 100% !important;
  }

  ._row-products .product {
    padding: 16px 0px;
  }

  ._row-products .product:first-child {
    border-top: 1px solid #EAEAEA;
  }

  .about-row {
    padding: 25px 0px;
  }

  .about-row__image {
    display: none;
  }

  .about-row__content .about-row__image {
    display: block;
    aspect-ratio: 320/175;
  }

  .about-row__content .about-row__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .about-row__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .about-row__body {
    width: 100%;
  }

  .our-benefits {
    padding: 25px 0px;
  }

  .our-benefits__name {
    font-size: 16px;
  }

  .our-benefits__text {
    font-size: 14px;
  }

  .mini-about {
    padding: 25px 0px;
  }

  .mini-about__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
  }

  .mini-about__body {
    font-size: 16px;
  }

  .mini-about__image {
    width: 100%;
    max-width: 100%;
    min-height: 0px;
    aspect-ratio: 16/9;
  }

  .breadcrums {
    padding: 20px 0px;
  }

  .registration-success {
    padding: 50px 0px;
  }

  .catalog {
    padding: 25px 0px 25px;
  }

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

  .catalog__filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100dvh;
    background: #fff;
    overflow: hidden;
    z-index: 4;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .catalog__filter:not(._active) {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
  }

  .catalog__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .catalog__filter-list {
    display: none;
  }

  #catalog-in-row .catalog__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  #catalog-in-row .catalog__body .product-row:first-child {
    border-top: 1px solid #EAEAEA;
  }

  .filter__content {
    overflow-y: auto;
    padding: 20px;
  }

  .head-catalog__title {
    font-size: 28px;
  }

  .head-catalog__sort {
    display: none;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .card {
    padding: 25px 0px;
  }

  .card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

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

  .card__details {
    margin-top: 40px;
  }

  .card__actions {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 20px;
  }

  .gallery-card__main {
    max-width: 446px;
  }

  .cart {
    padding: 25px 0px 25px;
  }

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

  .sidebar-order__wrapper {
    position: static !important;
  }

  .order {
    padding: 25px 0px 25px;
  }

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

  .stocks {
    padding: 25px 0px 25px;
  }

  .stocks__content {
    margin-top: 20px;
  }

  .stocks__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership {
    padding: 25px 0px 25px;
  }

  .banner-partnership__title {
    font-size: 24px;
  }

  .banner-partnership__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 216px;
            flex: 0 0 216px;
    width: 216px;
  }

  .banner-partnership__image::before {
    width: 340px;
    border: 75px solid #EEF5D7;
  }

  .contacts {
    padding: 25px 0px 25px;
  }

  .contacts__content {
    margin-top: 20px;
  }

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

  .info-contacts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .blogs {
    padding: 25px 0px 25px;
  }

  .blogs__content {
    margin-top: 20px;
  }

  .blog-page {
    padding: 25px 0px 25px;
  }

  .other-blogs {
    padding: 25px 0px 25px;
  }

  .other-blogs__content {
    margin-top: 20px;
  }

  .other-blogs__footer {
    margin-top: 20px;
  }

  .cabinet {
    padding: 25px 0px 25px;
  }

  .cabinet__head {
    margin-top: 0;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .cabinet__content {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .cabinet__sidebar {
    display: none;
  }

  .form-cabinet__item._tr {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc((100% - 20px * 1) / 2);
            flex: 1 0 calc((100% - 20px * 1) / 2);
  }

  .favorite-cabinet__rows {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .favorite-cabinet__rows .favorite-cabinet__item:first-child {
    border-top: 1px solid #eaeaea;
  }

  .page {
    padding-top: 77px;
  }

  .page section:last-child {
    padding-bottom: 50px;
  }
}

@media (max-width: 721.98px) {
  .wrapper {
    padding-bottom: 45px;
  }

  .main-header__logo {
    margin-right: auto;
  }

  .main-header__search {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
  }

  .search-header._active .search-header__content {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    visibility: visible;
    pointer-events: all;
  }

  .search-header__content {
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
    background: #fff;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .search-header__results {
    top: 68px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }

  .results-search-header__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-bottom: 0;
  }

  .results-search-header__right {
    max-height: unset;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .cart-header:not(._active) {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 1;
  }

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

  .footer__column._main .info-footer__copy {
    display: none;
  }

  .banner {
    padding: 0px 0px 15px;
  }

  .banner__container {
    padding: 0px;
  }

  .banner__slide {
    border-radius: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .banner__slide::after {
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    position: absolute;
  }

  .banner__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .category-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .head-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .head-section__more img,
  .head-section__more svg {
    display: none;
  }

  .type-establishment-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 2px) / 3);
            flex: 0 0 calc((100% - 2px) / 3);
  }

  .our-benefits__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog__body {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .head-catalog {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .head-catalog__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    width: 100%;
  }

  .gallery-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .thumbs-gallery-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .price-list__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .price-list__head > *:nth-child(-n+3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
            flex: 0 0 calc((100% - 10px * 2) / 3);
  }

  .price-list__head span:nth-child(3) {
    text-align: right;
  }

  .price-list__item span:nth-child(3) {
    text-align: right;
  }

  .price-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .price-list__item > *:nth-child(-n+3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
            flex: 0 0 calc((100% - 10px * 2) / 3);
  }

  .price-list__quantity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 105px;
            flex: 0 0 105px;
  }

  .product-cart__main {
    -ms-grid-columns: 60px 100px 1fr 24px;
    grid-template-columns: 60px 100px 1fr 24px;
    row-gap: 5px;
  }

  .product-cart__info {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }

  .product-cart__quantity {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }

  .product-cart__total {
    -ms-grid-column: 3;
        grid-column-start: 3;
    line-height: 1.2;
    -ms-grid-row-align: center;
        align-self: center;
  }

  .product-cart__remove {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }

  .select-gift__prod {
    -ms-grid-columns: 42px 1fr 100px;
    grid-template-columns: 42px 1fr 100px;
  }

  .order__section {
    padding: 30px 0px;
  }

  .data-order__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .pickup-delivery {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .payment-order {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .banner-partnership__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .banner-partnership__button {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .banner-partnership__image {
    margin: 0px auto;
  }

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

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

  .other-blogs__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }

  .other-blogs__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cabinet__top._template-details .cabinet__back {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .banner-cabinet__image {
    width: 100%;
    height: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .banner-cabinet__body {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    text-align: center;
  }

  .banner-cabinet__body::after {
    display: none;
  }

  .history-order__item {
    row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 0px;
  }

  .history-order__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .history-order__total {
    margin-left: 0;
  }

  .history-order__products {
    display: none;
  }

  .history-order__repeat {
    margin-left: 0;
  }

  .product-order-cabinet {
    -ms-grid-columns: 72px 1fr;
    grid-template-columns: 72px 1fr;
  }

  .product-order-cabinet__count {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }

  .product-order-cabinet__total {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }

  .favorite-cabinet__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .templates-cabinet__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }

  .templates-cabinet__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .templates-cabinet__products {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .templates-cabinet__more {
    display: none;
  }

  .template-details__product {
    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;
    row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .template-details__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .template-details__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - (72px + 44px));
            flex: 0 0 calc(100% - (72px + 44px));
    padding: 0px 10px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .template-details__price {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }

  .template-details__quantity {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }

  .template-details__total {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    text-align: right;
  }

  .template-details__delete {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .products-cabinet__body {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .page {
    padding-top: 69px;
  }
}

@media (max-width: 479.98px) {
  .switch {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-radius: 0;
    margin-left: auto;
  }

  .switch_input:checked + .switch__content .switch__icon svg path[fill] {
    fill: #87AF00;
  }

  .switch_input:checked + .switch__content .switch__icon svg path[stroke] {
    stroke: #87AF00;
  }

  .switch_input:checked + .switch__content .switch__icon svg rect[fill] {
    fill: #87AF00;
  }

  .switch__content {
    height: auto;
    width: auto;
  }

  h1._title {
    font-size: 24px;
  }

  .pagging {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .pagging__list {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .popup__body {
    max-width: 100%;
  }

  .main-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
  }

  .back-content {
    width: 42px;
    height: 42px;
  }

  .back-content img,
  .back-content svg {
    width: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
  }

  .footer__columns {
    row-gap: 20px;
  }

  .banner__slide {
    min-height: 260px;
    padding: 20px;
  }

  .banner__title {
    font-size: 18px;
  }

  .banner__text {
    font-size: 14px;
  }

  .category-section {
    padding: 15px 0px;
  }

  .category-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .category-section__item:not(:last-child) {
    margin-right: 10px;
  }

  .head-section__title {
    font-size: 22px;
  }

  .type-establishment-section {
    padding: 15px 0px;
  }

  .type-establishment-section__item:not(:last-child) {
    margin-right: 10px;
  }

  .item-type-establishment__body {
    padding: 12px;
  }

  .product-section {
    padding: 15px 0px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 1px) / 2);
            flex: 0 0 calc((100% - 1px) / 2);
  }

  .product-row {
    padding: 12px 12px 12px 0px;
  }

  ._row-products .product {
    padding: 12px 0px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -ms-grid-columns: 60px 1fr 52px;
    grid-template-columns: 60px 1fr 52px;
  }

  ._row-products .product .product__footer .product__quantity {
    width: 52px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
            flex: 0 0 52px;
  }

  .about-row {
    padding: 15px 0px;
  }

  .about-row__content {
    row-gap: 20px;
  }

  .about-row__body {
    row-gap: 20px;
    font-size: 14px;
  }

  .about-row__title {
    font-size: 22px;
  }

  .about-row__item {
    font-size: 14px;
  }

  .about-row__name {
    font-size: 16px;
  }

  .about-row__button {
    width: 100%;
  }

  .our-benefits {
    padding: 15px 0px;
  }

  .mini-about {
    padding: 15px 0px;
  }

  .mini-about__title {
    font-size: 22px;
  }

  .mini-about__body {
    font-size: 14px;
  }

  .mini-about__button {
    width: 100%;
    max-width: 100%;
  }

  .registration-success {
    padding: 30px 0px;
  }

  .registration-success__wrapper {
    padding: 20px;
    row-gap: 15px;
  }

  .registration-success__title {
    font-size: 20px;
  }

  .registration-success__text {
    font-size: 14px;
    max-width: 280px;
  }

  .catalog {
    padding: 15px 0px 15px;
  }

  .catalog__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog__article {
    font-size: 14px;
  }

  .catalog__article h3 {
    font-size: 22px;
  }

  .head-catalog__view-mode {
    margin-left: auto;
  }

  .head-catalog__filter-btn {
    padding: 5px 12px;
  }

  .card {
    padding: 15px 0px;
  }

  .card__title {
    font-size: 20px;
  }

  .card__quantity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px) / 2);
            flex: 0 0 calc((100% - 30px) / 2);
    width: auto;
    margin-left: auto;
  }

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

  .thumbs-gallery-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .details-card__blocks {
    margin-top: 20px;
  }

  .details-card__characteristic td {
    padding: 12px;
  }

  .details-card__characteristic td:first-child {
    width: 50%;
  }

  .cart {
    padding: 15px 0px 15px;
  }

  .product-cart__main {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -ms-grid-columns: 32px 100px 1fr 24px;
    grid-template-columns: 32px 100px 1fr 24px;
  }

  .product-cart__gift-icon {
    width: 20px;
    height: 20px;
  }

  .product-cart__gift-icon img,
  .product-cart__gift-icon svg {
    width: 12px;
    height: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12px;
            flex: 0 0 12px;
  }

  .select-gift__head {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    padding: 5px 12px;
  }

  .select-gift__prod {
    -ms-grid-columns: 32px 1fr 80px;
    grid-template-columns: 32px 1fr 80px;
  }

  .order {
    padding: 15px 0px 15px;
  }

  .order__main {
    padding: 20px;
  }

  .order__section {
    padding: 20px 0xp;
  }

  .order__name {
    font-size: 20px;
  }

  .nav-delivery-order__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .payment-order {
    row-gap: 20px;
  }

  .stocks {
    padding: 15px 0px 15px;
  }

  .partnership {
    padding: 15px 0px 15px;
  }

  .partnership__content {
    font-size: 14px;
  }

  .banner-partnership {
    padding: 20px;
  }

  .banner-partnership__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 300px;
  }

  .banner-partnership__title {
    font-size: 20px;
  }

  .banner-partnership__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 124px;
            flex: 0 0 124px;
    width: 124px;
  }

  .banner-partnership__image::before {
    width: 200px;
    border: 40px solid #EEF5D7;
  }

  .contacts {
    padding: 15px 0px 15px;
  }

  .contacts__article {
    font-size: 14px;
  }

  .main-contacts__info {
    padding: 20px;
  }

  .blogs {
    padding: 15px 0px 15px;
  }

  .blog-item__name {
    font-size: 18px;
  }

  .blog-page {
    padding: 15px 0px 15px;
  }

  .blog-page__article {
    font-size: 14px;
  }

  .blog-page__article h4 {
    font-size: 14px;
  }

  .other-blogs {
    padding: 15px 0px 15px;
  }

  .cabinet {
    padding: 15px 0px 15px;
  }

  .cabinet__top {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .cabinet__name-section._no-grow {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cabinet__other {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .cabinet__clear {
    padding: 0px;
    background: none;
    min-height: 0;
    color: #252525;
  }

  .cabinet__clear div {
    background: none;
    width: 10px;
    height: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
            flex: 0 0 10px;
    border-radius: 0;
  }

  .banner-cabinet__title {
    font-size: 16px;
  }

  .form-cabinet__item._tr {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .form-cabinet__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .form-cabinet__footer {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .history-order__item {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .history-order__total {
    font-size: 14px;
  }

  .order-cabinet__footer {
    margin-top: 20px;
  }

  .product-order-cabinet__total {
    font-size: 14px;
  }

  .favorite-cabinet__item .product__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 5px;
  }

  .favorite-cabinet__item .product__actions .product__buy {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .favorite-cabinet__item .product__actions .product__notify {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 12px;
  }

  .template-details__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .template-details__edit {
    width: 100%;
  }

  .page {
    padding-top: 61px;
  }

  .page section:last-child {
    padding-bottom: 40px;
  }
}

@media (min-width: 721.98px) and (max-width: 1222px) {
  .banner__body::after {
    width: 1750px;
    height: 1750px;
    right: -60px;
  }

  .banner__body::after {
    width: 1250px;
    height: 1250px;
    right: -20px;
  }
}

@media (max-width: 991.98px) and (min-width: 721.98px) {
  .card__details-product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (any-hover: hover) {
  ._btn._stroke:hover {
    color: #fff;
    background: #739600;
    border-color: #739600;
  }

  ._btn._stroke._white:hover {
    background: #fff;
    border-color: #fff;
    color: #87AF00;
  }

  ._btn._stroke._white:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  ._btn._stroke._white:hover svg path[fill] {
    fill: #87AF00;
  }

  ._btn._stroke._white:hover svg path[stroke] {
    stroke: #87AF00;
  }

  ._btn:hover {
    background: #739600;
  }

  .switch_input:not(:checked) + .switch__content:hover {
    background: #f0f0f0;
  }

  .pagging__arrow:hover {
    border-color: #87AF00;
  }

  .pagging__arrow:hover svg path[fill] {
    fill: #87AF00;
  }

  .pagging__arrow:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .pagging__item:not(._active):hover {
    border-color: #87AF00;
    color: #87AF00;
  }

  .popup__text a:hover {
    text-decoration: none;
  }

  .form-popup__link:hover {
    text-decoration: underline;
  }

  .main-header__login:hover {
    color: #87AF00;
  }

  .main-header__login:hover svg path[fill] {
    fill: #87AF00;
  }

  .main-header__login:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .results-search-header__list a:hover {
    color: #87AF00;
  }

  .product-results-search__image:hover {
    border-color: #87AF00;
  }

  .product-results-search__name a:hover {
    color: #87AF00;
  }

  .product-results-search__action:hover {
    border-color: #252525;
    background: rgba(37, 37, 37, 0.05);
  }

  .product-results-search__action._buy:hover {
    background: rgba(135, 175, 0, 0.1);
    border-color: #87AF00;
  }

  .list-menu__link:hover {
    color: #87AF00;
  }

  .list-menu__login:hover {
    color: #87AF00;
  }

  .list-menu__login:hover svg path[fill] {
    fill: #87AF00;
  }

  .list-menu__login:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .user-menu__list a:hover {
    color: #87AF00;
  }

  .language__item:hover {
    color: #87AF00;
  }

  .cart-header-btn:hover {
    color: #87AF00;
  }

  .cart-header-btn:hover .cart-header__icon svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .cart-header-btn:hover .cart-header__icon svg path[fill] {
    fill: #87AF00;
  }

  .cart-header-btn:hover .cart-header__icon svg path[stroke] {
    stroke: #87AF00;
  }

  .product-cart-header__name a:hover {
    color: #87AF00;
  }

  .catalog-header__item:hover {
    color: #87AF00;
  }

  .sidebar-catalog-header__item:not(._active):hover .sidebar-catalog-header__name {
    color: #87AF00;
  }

  .footer__list a:hover {
    color: #87AF00;
  }

  .footer__social:hover svg path[fill] {
    fill: #87AF00;
  }

  .footer__social:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .feedback-open:hover {
    background-color: #622e96;
  }

  .head-section__more:hover img,
  .head-section__more:hover svg {
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }

  .item-category-section:hover {
    -webkit-box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0px 16px 0 rgba(0, 0, 0, 0.1);
    color: #87AF00;
  }

  .slider-action__arrow:hover {
    border-color: #87AF00;
  }

  .slider-action__arrow:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .slider-action__arrow:hover svg path[fill] {
    fill: #87AF00;
  }

  .slider-action__arrow:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .item-type-establishment:hover .item-type-establishment__image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  /*.product:hover .product__head::after {*/
  /*  content: '';*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  position: absolute;*/
  /*  inset: 0;*/
  /*  background: rgba(0, 0, 0, 0.35);*/
  /*  display: inline-block;*/
  /*}*/

  .product:hover .product__fav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .product__name a:hover {
    color: #87AF00;
  }

  .product__like:not(._active):hover {
    background: rgba(135, 175, 0, 0.1);
  }

  .product__buy:hover {
    background: rgba(135, 175, 0, 0.1);
  }

  .product-row__name a:hover {
    color: #87AF00;
  }

  .product-row__buy:hover {
    background: rgba(135, 175, 0, 0.1);
  }

  .product-row__button:hover {
    background: rgba(135, 175, 0, 0.1);
  }

  ._row-products .product:hover .product__head::after {
    display: none;
  }

  .breadcrums__item a:hover {
    color: #87AF00;
    text-decoration: underline;
  }

  .filter-list__remove:hover {
    background: red;
  }

  .filter-list__clear:hover {
    background: #8d8d8d;
  }

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

  .volume-card__input:not(:checked) + .volume-card__content:hover {
    border-color: #87AF00;
    color: #87AF00;
  }

  .product-cart__name a:hover {
    color: #87AF00;
  }

  .product-cart__remove:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .product-cart__remove:hover svg path[fill] {
    fill: red;
  }

  .product-cart__remove:hover svg path[stroke] {
    stroke: red;
  }

  .gift-cart__add:hover {
    text-decoration: underline;
  }

  .select-gift__item:not(._active):hover {
    background: #F3F3F3;
  }

  .stock__name a:hover {
    color: #87AF00;
  }

  .nav-blogs__item:not(._active):hover {
    background: rgba(135, 175, 0, 0.1);
  }

  .blog-item:hover .blog-item__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .blog-item__name a:hover {
    color: #87AF00;
  }

  .cabinet__back:hover {
    color: #252525;
  }

  .cabinet__back:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .cabinet__back:hover svg path[fill] {
    fill: #252525;
  }

  .cabinet__back:hover svg path[stroke] {
    stroke: #252525;
  }

  .cabinet__clear:hover {
    background: #8d8d8d;
  }

  .cabinet__create-template:hover {
    text-decoration: underline;
  }

  .banner-cabinet__pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    opacity: 0.5;
  }

  .sidebar-cabinet__item:not(._active):hover {
    color: #87AF00;
    border-color: #87AF00;
  }

  .head-order-cabinet__back:hover {
    text-decoration: underline;
  }

  .footer-order-cabinet__action:hover {
    text-decoration: underline;
  }

  .templates-cabinet__more:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .templates-cabinet__more:hover svg path[fill] {
    fill: #87AF00;
  }

  .templates-cabinet__more:hover svg path[stroke] {
    stroke: #87AF00;
  }

  .templates-cabinet__delete:hover svg path {
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .templates-cabinet__delete:hover svg path[fill] {
    fill: red;
  }

  .templates-cabinet__delete:hover svg path[stroke] {
    stroke: red;
  }

  .template-details__name a:hover {
    color: #87AF00;
  }

  .template-details__delete:hover svg path[fill] {
    fill: red;
  }

  .template-details__delete:hover svg path[stroke] {
    stroke: red;
  }

  .item-product-cabinet__buy:hover {
    background: rgba(135, 175, 0, 0.1);
  }
}
