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

@font-face {
  font-family: "Bebas Neue Cyrillic";
  font-display: swap;
  src: url("../fonts/BebasNeueCyrillic.woff") format("woff"), url("../fonts/BebasNeueCyrillic.woff2") format("woff2");
  font-weight: 400;
  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/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/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/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/OnestLight.woff") format("woff"), url("../fonts/OnestLight.woff2") format("woff2");
  font-weight: 300;
  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: #35491E;
  font-size: 16px;
  background: #F1F3ED;
}

body._error-page .wrapper {
  padding-top: 0 !important;
}

body._lock {
  overflow: hidden;
}

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

.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;
  padding-top: 132px;
}

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

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #35491E;
  border: 1px solid #DFDFDF;
  background-color: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 42px;
  padding: 0px 15px;
  -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;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 20px;
  height: 20px;
  background: url("../img/icons/select-g.svg") center/100% no-repeat;
}

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

.select__options {
  color: #35491E;
  display: none;
  position: absolute;
  top: 100%;
  border-radius: 0 0 6px 6px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #DFDFDF;
  border-top: none;
  font-size: 14px;
  padding: 5px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

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

.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 15px;
  border-radius: 6px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  min-height: 44px;
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input:focus {
  border-color: #35491E;
}

.input::-webkit-input-placeholder {
  color: #9AA48F;
}

.input::-moz-placeholder {
  color: #9AA48F;
}

.input:-ms-input-placeholder {
  color: #9AA48F;
}

.input::-ms-input-placeholder {
  color: #9AA48F;
}

.input::placeholder {
  color: #9AA48F;
}

.input._error {
  border-color: #F93535;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.label {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label::after {
  content: "*";
  display: inline-block;
  color: #F93535;
  font-weight: 700;
  margin-left: 3px;
}

.checkbox {
  position: relative;
}

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

.checkbox__input:checked+.checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__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: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

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

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

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.options__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
  flex: 0 0 calc((100% - 30px * 1) / 2);
  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: scale(1);
  -ms-transform: scale(1);
  transform: 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;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

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

.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: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quantity._min .quantity__button.quantity__button_minus::before {
  display: none;
}

.quantity._min .quantity__button.quantity__button_minus::after {
  width: 20px;
  height: 20px;
  background: url(../img/icons/backet.svg) center/100% no-repeat;
  margin: -10px 0px 0px -10px;
}

.quantity__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  border: 1px solid #ACCD76;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0px 0px -8px;
  background-color: #A5A5A5;
  width: 16px;
  height: 2px;
}

.quantity__button_plus::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: #35491E;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
}

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;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  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;
}

._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;
}

._paggination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

._paggination .swiper-pagination-bullet {
  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-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

._paggination .swiper-pagination-bullet::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 6px;
  flex: 0 0 6px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  display: inline-block;
  background: #35491E;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._paggination .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}

.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%;
}

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

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

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

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

.pagging__item {
  width: 42px;
  height: 42px;
  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 transparent;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__item._active {
  border-color: #35491E;
}

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

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-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: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

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

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

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-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: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

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

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10;
}

.header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 24, 7, 0.3);
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__main {
  background: #35491E;
  height: 66px;
}

.header__nav {
  padding: 12px 0px;
}

.header__menu {
  display: none;
}

.main-header__container {
  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;
  min-height: 100%;
  position: relative;
}

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

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

.main-header__actions {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.main-header__stocks {
  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;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.phone-main-header {
  padding: 2px 20px 2px 2px;
  border: 2px solid #ACCD76;
  border-radius: 50px;
  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;
}

.phone-main-header__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
  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: 50%;
  background: #ACCD76;
}

.phone-main-header__icon img,
.phone-main-header__icon svg {
  width: 22px;
  height: 22px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22px;
  flex: 0 0 22px;
}

.phone-main-header__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.phone-main-header__head {
  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;
  cursor: pointer;
}

.phone-main-header__head._active .phone-main-header__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.phone-main-header__value {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.phone-main-header__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
  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: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.phone-main-header__arrow img,
.phone-main-header__arrow svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.phone-main-header__list {
  position: absolute;
  top: calc(100% + 5px);
  left: -5px;
  right: -5px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  display: none;
}

.phone-main-header__item {
  padding: 5px 5px;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.phone-main-header__item:not(:last-child) {
  border-bottom: 1px solid #35491E;
}

.action-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;
}

.action-main-header__item {
  cursor: pointer;
  position: relative;
}

.action-main-header__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

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

.action-main-header__count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #ACCD76;
  color: #35491E;
  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-weight: 500;
  font-size: 16px;
}

.action-main-header__cart {
  position: absolute;
  top: calc(100% - 5px);
  right: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.action-main-header__cart:not(._active) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.nav-header__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;

  max-width: 1220px;
  overflow-y: hidden;
  overflow-x: auto;
  padding-bottom: 4px;
}

.nav-header__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 20px * 5) / 6);
  flex: 0 0 calc((100% - 20px * 5) / 6);
  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: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.nav-header__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-header__icon img,
.nav-header__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.nav-header__name {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  max-height: 100vh;
  height: 100vh;
  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;
  background: #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;
}

.menu:not(._active) {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  pointer-events: none;
}

.menu_head {
  background: #35491E;
}

.menu__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow-y: auto;
}

.menu__body::-webkit-scrollbar {
  width: 4px;
  padding: 1px;
}

.menu__body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.menu__catalog {
  background: #ACCD76;
}

.menu__contacts {
  background: #35491E;
}

.head-menu {
  padding: 0px 50px;
  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: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

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

.head-menu__logo img,
.head-menu__logo svg {
  width: 100%;
  max-width: 100%;
}

.head-menu__close {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.head-menu__close img,
.head-menu__close svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.language-header {
  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;
}

.language-header__item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.language-header__item._active {
  color: #fff;
  pointer-events: none;
}

.catalog-menu__item {
  padding: 12px 50px;
}

.catalog-menu__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.catalog-menu__head {
  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;
  cursor: pointer;
}

.catalog-menu__head._active .catalog-menu__more {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.catalog-menu__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.catalog-menu__icon img,
.catalog-menu__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.catalog-menu__title {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.catalog-menu__more {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-menu__more img,
.catalog-menu__more svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.catalog-menu__sublist {
  display: none;
  margin-top: 12px;
  padding-left: 62px;
}

.sublist-catalog-menu__item:not(:last-child) {
  margin-bottom: 30px;
}

.sublist-catalog-menu__link {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts-menu {
  padding: 30px 50px;
  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;
}

.contacts-menu__title {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.list-contacts-menu {
  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;
}

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

.list-contacts-menu__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.list-contacts-menu__icon svg path {
  fill: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-contacts-menu__icon img,
.list-contacts-menu__icon svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.list-contacts-menu__value {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.socials-contacts-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.socials-contacts-menu__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.socials-contacts-menu__item svg path {
  fill: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.socials-contacts-menu__item img,
.socials-contacts-menu__item svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.search-header {
  background: #fff;
  padding: 11px 0px;
  height: 66px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #ECECEC;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.search-header:not(._active) {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.search-header__container {
  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;
}

.search-header__form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #35491E;
  background: #FFF;
  padding: 2px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  min-height: 44px;
}

.search-header__input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 18px;
  color: #35491E;
  font-size: 16px;
  min-width: 0px;
  max-width: 100%;
  width: 100%;
}

.search-header__input::-webkit-input-placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.search-header__input::-moz-placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.search-header__input:-ms-input-placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.search-header__input::-ms-input-placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.search-header__input::placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.search-header__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #35491E;
}

.search-header__button img,
.search-header__button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22px;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

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

.search-header__close img,
.search-header__close svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.cart-header {
  padding: 20px;
  width: 100vw;
  max-width: 500px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
}

.cart-header__head {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
}

.cart-header__body {
  border-bottom: 1px solid #E0E0E0;
  max-height: 550px;
  overflow-x: hidden;
}

.cart-header__item:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

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

.head-cart-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.head-cart-header__main {
  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-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.head-cart-header__title {
  color: #35491E;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-cart-header__delete {
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.head-cart-header__close {
  width: 24px;
  height: 24px;
  width: 24px;
}

.head-cart-header__close img,
.head-cart-header__close svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.item-cart-header {
  padding: 20px 0px;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  -ms-grid-columns: 1fr 95px 80px;
  grid-template-columns: 1fr 95px 80px;
}

.item-cart-header>* {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

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

.item-cart-header__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  height: 80px;
  border-radius: 6px;
  position: relative;
  display: block;
  overflow: hidden;
}

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

.item-cart-header__info {
  -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;
  row-gap: 6px;
}

.item-cart-header__name {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.item-cart-header__color {
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-cart-header__price {
  text-align: right;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.footer-cart-header {
  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;
}

.footer-cart-header__total {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.footer-cart-header__button {
  color: #ACCD76;
  background: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  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-radius: 6px;
  padding: 10px 30px;
  min-height: 55px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.icon-menu {
  display: block;
  position: relative;
  width: 27px;
  height: 20px;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27px;
  flex: 0 0 27px;
}

.icon-menu span {
  -webkit-transition: all 0.3s ease 0s;
  -o-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: #fff;
  border-radius: 5px;
}

.icon-menu span:first-child {
  top: 0px;
}

.icon-menu span:last-child {
  top: auto;
  bottom: 0px;
}

.footer {
  background: #35491E;
  padding: 50px 0px;
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr 160px;
  grid-template-columns: 200px 1fr 160px;
  -webkit-column-gap: 75px;
  -moz-column-gap: 75px;
  column-gap: 75px;
}

.main-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: 30px;
}

.main-footer__logo {
  width: 200px;
}

.main-footer__logo img {
  width: 100%;
  max-width: 100%;
}

.main-footer__copy {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.main-footer__dev {
  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;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-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: 40px;
}

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

.nav-footer__top._active .nav-footer__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-footer__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.nav-footer__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-footer__arrow img,
.nav-footer__arrow svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

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

.nav-footer__list {
  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: 20px;
}

.nav-footer__link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts-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: 30px;
}

.contacts-footer__title {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.list-contacts-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: 30px;
}

.list-contacts-footer__item {
  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;
}

.list-contacts-footer__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.list-contacts-footer__icon img,
.list-contacts-footer__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.list-contacts-footer__value {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.socials-contacts-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.socials-contacts-footer__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.banner {
  padding: 30px 0px;
}

.banner__content {
  position: relative;
}

.banner__slider {
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.banner__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  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;
  height: 460px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.banner__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  margin-left: 95px;
}

.banner__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50px;
  max-width: 845px;
  max-height: 100%;
}

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

.banner__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  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: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.banner__arrow svg path {
  fill: #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.banner__arrow.banner-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner__arrow.banner-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.banner__paggination {
  margin-top: 15px;
}

.banner__price {
  position: absolute;
  top: 51%;
  right: 43%;
}

.info-banner {
  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;
  position: relative;
  z-index: 1;
}

.info-banner__head {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}

.info-banner__suptitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.info-banner__weight {
  padding: 5px 8px;
  color: #263238;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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;
  border-radius: 6px;
  background: #FFF;
}

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

.info-banner__title {
  color: #263238;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.info-banner__more {
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid #263238;
  color: #263238;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

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

.price-banner {
  width: 166px;
  height: 94px;
  z-index: 1;
  background: url(../img/bg-price.svg) center/cover no-repeat;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.price-banner__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.price-banner__now {
  color: #263238;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  line-height: 0.7;
  margin-top: 10px;
}

.price-banner__old {
  color: #263238;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
  text-transform: uppercase;
}

.tabel-catalog {
  padding: 25px 0px;
}

.tabel-catalog__slider {
  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;
}

.tabel-catalog__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
  flex: 0 0 calc((100% - 30px * 2) / 3);
  padding: 30px;
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabel-catalog__info {
  max-width: 160px;
  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;
}

.tabel-catalog__icon {
  width: 62px;
  height: 62px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 62px;
  flex: 0 0 62px;
}

.tabel-catalog__icon img,
.tabel-catalog__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.tabel-catalog__name {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.tabel-catalog__paggination {
  margin-top: 15px;
}

.popular {
  padding: 25px 0px;
}

.popular__content {
  margin-top: 30px;
  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;
}

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

.popular__item:not(:nth-child(-n+8)) {
  display: none;
}

.head-section {
  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: 10px;
}

.head-section__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-section__more {
  padding: 11px 20px;
  border: 1px solid #35491E;
  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: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

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

.head-section__more svg path {
  fill: #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product {
  border-radius: 16px;
  border: 1px solid #E4E4E4;
  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-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 93%;
  border-radius: 16px 16px 0px 0px;
}

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

.product__body {
  -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;
  row-gap: 10px;
  padding: 20px;
  max-width: 100%;
}

.product__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

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

.collors-product__item {
  position: relative;
  padding: 2px;
}

.collors-product__item:not(:nth-child(-n+5)) {
  display: none;
}

.collors-product__item._active {
  display: none;
}

.collors-product__item:hover .collors-product__name {
  opacity: 1;
  visibility: visible;
}

.collors-product__circle {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
}

.collors-product__name {
  position: absolute;
  top: 30%;
  left: calc(100% + 7px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
  background: #fff;
  padding: 5px 10px;
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
  pointer-events: none;
  text-align: center;
  max-width: 120px;
}

.collors-product__count {
  color: #A2A2A2;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
}

.price-product {
  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: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.price-product__now {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.price-product__old {
  color: #989898;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.price-product__old::after {
  content: "";
  width: 110%;
  height: 2px;
  background: #F31E1E;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-17deg);
  -ms-transform: translate(-50%, -50%) rotate(-17deg);
  transform: translate(-50%, -50%) rotate(-17deg);
}

.product-stock {
  padding: 25px 0px;
}

.product-stock__content {
  margin-top: 30px;
  position: relative;
}

.product-stock__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
  flex: 0 0 calc((100% - 30px * 3) / 4);
}

.product-stock__item:not(:last-child) {
  margin-right: 30px;
}

.product-stock__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  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: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.product-stock__arrow svg path {
  fill: #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-stock__arrow.product-stock-arrow-prev {
  left: -20px;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.product-stock__arrow.product-stock-arrow-next {
  right: -20px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}

.product-stock__paggination {
  margin-top: 15px;
}

.stock-section {
  padding: 25px 0px;
}

.stock-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  margin-top: 30px;
}

.stock-section__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
  flex: 0 0 calc((100% - 30px * 2) / 3);
}

.stock-section__item:not(:nth-child(-n+3)) {
  display: none;
}

.item-stock {
  border-radius: 16px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-stock__image {
  width: 100%;
  position: relative;
  padding-bottom: 74%;
  overflow: hidden;
  display: block;
}

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

.item-stock__body {
  padding: 20px 30px;
  -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;
  row-gap: 10px;
}

.item-stock__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #35491E;
}

.item-stock__description {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 2;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.breadrums {
  padding: 30px 0px 30px;
}

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

.breadrums__list {
  display: inline;
}

.breadrums__item {
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  display: inline;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadrums__item:not(:last-child) {
  margin-right: 8px;
}

.breadrums__item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}

.breadrums__item a {
  color: inherit;
}

.catalog {
  padding: 25px 0px;
}

.catalog__content {
  margin-top: 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: 30px;
}

.catalog__products {
  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;
}

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

.head-catalog {
  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;
}

.head-catalog__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52px;
  flex: 0 0 52px;
  height: 52px;
  width: 52px;
}

.head-catalog__icon img,
.head-catalog__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.head-catalog__name {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

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

.tabs-catalog__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
  flex: 0 0 calc((100% - 20px * 4) / 5);
  padding: 6px 6px 6px 20px;
  border-radius: 16px;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabs-catalog__name {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tabs-catalog__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 81px;
  flex: 0 0 81px;
  width: 81px;
  height: 68px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

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

.card {
  padding: 25px 0px;
}

.card__wrapper {
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.card__image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
}

.card__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 450px;
  flex: 0 0 450px;
}

.image-card {
  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;
}

.main-image-card__slider {
  border-radius: 16px;
  overflow: hidden;
}

.main-image-card__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  overflow: hidden;
  padding-bottom: 90%;
  position: relative;
  border-radius: 16px;
}

.main-image-card__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: contain;
}

.thumbs-image-card {
  position: relative;
}

.thumbs-image-card__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  width: 120px;
  height: 98px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.thumbs-image-card__item::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
  display: inline-block;
}

.thumbs-image-card__item.swiper-slide-thumb-active::after {
  background: #ACCD76;
}

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

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

.thumbs-image-card__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  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: #fff;
  cursor: pointer;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.thumbs-image-card__arrow.swiper-button-disabled {
  display: none;
}

.thumbs-image-card__arrow.thumbs-image-card-arrow-prev {
  left: 0;
}

.thumbs-image-card__arrow.thumbs-image-card-arrow-next {
  right: 0;
}

.info-card {
  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-card__title {
  color: #35491E;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.info-card__color-now {
  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;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.info-card__color-now div {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
}

.info-card__colors {
  margin-top: -10px;
}

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

.info-card__price {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 10px 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  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: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  background: #ACCD76;
  min-height: 56px;
  border-radius: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  white-space: nowrap;
}

.info-card__price ._old {
  font-size: 20px;
  font-weight: 400;
  position: relative;
}

.info-card__price ._old::after {
  content: "";
  width: 110%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #F31E1E;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%) rotate(-17deg);
  -ms-transform: translate(-50%, -50%) rotate(-17deg);
  transform: translate(-50%, -50%) rotate(-17deg);
}

.info-card__cart {
  padding: 10px 27px;
  border-radius: 6px;
  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;
  color: #ACCD76;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  background: #35491E;
  min-height: 56px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.info-card__cart svg path {
  fill: #ACCD76;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.information-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 8px;
}

.information-card__item {
  color: #35491E;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  cursor: pointer;
}

.information-card__item._active::after {
  opacity: 1;
}

.information-card__item::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ACCD76;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  opacity: 0;
}

.information-card__blocks {
  margin-top: 20px;
}

.information-card__block {
  display: none;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.information-card__block h4 {
  font-weight: 500;
}

.information-card__block ul {
  padding-left: 25px;
}

.information-card__block ul:not(:first-child) {
  margin-top: 15px;
}

.information-card__block ul li {
  list-style: disc;
}

.information-card__block ul li:not(:last-child) {
  margin-bottom: 5px;
}

.colors-card {
  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;
}

.colors-card__item {
  position: relative;
}

/* .colors-card__item._active {
  display: none;
} */

.cart {
  padding: 25px 0px;
}

.cart__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cart__wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.cart__main {
  border-radius: 16px;
  background: #FFF;
  padding: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.cart__sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 315px;
  flex: 0 0 315px;
}

.main-cart__head {
  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;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}

.main-cart__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-cart__delete {
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-cart__product {
  padding: 20px 0px;
  border-bottom: 1px solid #E0E0E0;
}

.product-main-cart {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 80px 95px 80px;
  grid-template-columns: 260px 80px 95px 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-main-cart>* {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

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

.product-main-cart__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  height: 80px;
  width: 100px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

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

.product-main-cart__info {
  -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;
  row-gap: 5px;
}

.product-main-cart__name {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-main-cart__color {
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-main-cart__price {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.product-main-cart__total {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: right;
}

.sidebar-cart__wrapper {
  padding: 20px;
  border-radius: 16px;
  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;
  row-gap: 20px;
}

.sidebar-cart__title {
  color: #35491E;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sidebar-cart__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;
}

.sidebar-cart__item {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar-cart__item._total {
  font-weight: 700;
}

.sidebar-cart__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  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;
}

.sidebar-cart__edit {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.sidebar-cart__edit img,
.sidebar-cart__edit svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.sidebar-cart__value {
  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;
}

.sidebar-cart__button {
  border-radius: 6px;
  padding: 10px 20px;
  color: #ACCD76;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  background: #35491E;
  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;
  min-height: 55px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.info-tippy {
  position: relative;
}

.info-tippy:hover .info-tippy__body {
  opacity: 1;
}

.info-tippy__icon {
  width: 24px;
  height: 24px;
}

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

.info-tippy__body {
  padding: 10px 20px;
  position: absolute;
  top: calc(100% + 5px);
  left: -10px;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  width: 220px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.order {
  padding: 25px 0px;
}

.order__head {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}

.order__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.order__back {
  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: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #35491E;
}

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

.order__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-top: 20px;
}

.order__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px;
  border-radius: 16px;
  background: #FFF;
}

.order__sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 315px;
  flex: 0 0 315px;
}

.main-order__section {
  padding: 30px 0px;
}

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

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

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

.main-order__head {
  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;
}

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

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

.main-order__title {
  color: #35491E;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-order__body {
  margin-top: 20px;
}

.data-main-order {
  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;
}

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

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

.delivery-main-order__blocks {
  margin-top: 20px;
}

.delivery-main-order__block {
  display: none;
}

.delivery-main-order__block._active {
  display: block;
}

.delivery-main-order__curier {
  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;
}

.curier-delivery-main-order__alert {
  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: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #35491E;
}

.curier-delivery-main-order__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.curier-delivery-main-order__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
  flex: 0 0 calc((100% - 30px * 1) / 2);
}

.curier-delivery-main-order__label {
  display: inline-block;
  margin-bottom: 5px;
}

.store-delivery-main-order {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  border-radius: 16px;
  border: 2px solid #E0E0E0;
}

.store-delivery-main-order__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}

.store-delivery-main-order__title {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.store-delivery-main-order__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;
}

.store-delivery-main-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.store-delivery-main-order__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.store-delivery-main-order__icon img,
.store-delivery-main-order__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.store-delivery-main-order__value {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.store-delivery-main-order__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.comment-main-order__label {
  display: inline-block;
  margin-bottom: 5px;
}

.comment-main-order__textarea {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  height: 100px;
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  resize: none;
  padding: 12px 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.comment-main-order__textarea:focus {
  border-color: #35491E;
}

.comment-main-order__textarea::-webkit-input-placeholder {
  color: #9AA48F;
}

.comment-main-order__textarea::-moz-placeholder {
  color: #9AA48F;
}

.comment-main-order__textarea:-ms-input-placeholder {
  color: #9AA48F;
}

.comment-main-order__textarea::-ms-input-placeholder {
  color: #9AA48F;
}

.comment-main-order__textarea::placeholder {
  color: #9AA48F;
}

.order-send {
  padding: 70px 0px !important;
}

.order-send__wrapper {
  padding: 40px;
  border-radius: 16px;
  background: #FFF;
  max-width: 415px;
  margin: 0px auto;
  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;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.order-send__icon {
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  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: 50%;
  -webkit-box-shadow: 0px 12px 12px rgba(172, 205, 118, 0.5);
  box-shadow: 0px 12px 12px rgba(172, 205, 118, 0.5);
  background: #ACCD76;
}

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

.order-send__title {
  color: #35491E;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.order-send__text {
  text-align: center;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.order-send__text a {
  display: inline-block;
  color: inherit;
}

.order-send__button {
  width: 100%;
  min-height: 55px;
  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: 10px 20px;
  border-radius: 6px;
  text-align: center;
  color: #ACCD76;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  background: #35491E;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.about {
  padding: 25px 0px;
}

.about__wrapper {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  border-radius: 16px;
  background: #fff;
}

.about__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about__description {
  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: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.about__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
}

.about__img {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 87%;
  border-radius: 16px;
}

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

.contacts__wrapper {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  background: #fff;
  border-radius: 16px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contacts__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 100px * 1) / 2);
  flex: 0 0 calc((100% - 100px * 1) / 2);
  padding: 30px 40px;
  border-radius: 16px;
  border: 2px solid #F0F0F0;
  background: #FFF;
}

.info-contacts__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.info-contacts__body {
  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: 30px;
}

.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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.info-contacts__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

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

.info-contacts__value {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.socials-info-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.socials-info-contacts__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.socials-info-contacts__item img,
.socials-info-contacts__item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.feedback {
  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;
}

.feedback__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;
}

.feedback__label {
  display: inline-block;
  margin-bottom: 5px;
}

.feedback__textarea {
  width: 100%;
  display: block;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  height: 80px;
  overflow-y: auto;
  color: #35491E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  resize: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.feedback__textarea:focus {
  border-color: #35491E;
}

.feedback__textarea::-webkit-input-placeholder {
  color: #9AA48F;
}

.feedback__textarea::-moz-placeholder {
  color: #9AA48F;
}

.feedback__textarea:-ms-input-placeholder {
  color: #9AA48F;
}

.feedback__textarea::-ms-input-placeholder {
  color: #9AA48F;
}

.feedback__textarea::placeholder {
  color: #9AA48F;
}

.feedback__submit {
  width: 100%;
  max-width: 100%;
  min-height: 55px;
  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;
  border-radius: 6px;
  background: #35491E;
  color: #ACCD76;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.error {
  min-height: 100vh;
  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;
}

.error__container {
  max-width: 720px;
}

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

.error__image {
  width: 100%;
  max-width: 525px;
}

.error__image img {
  width: 100%;
  max-width: 100%;
}

.error__info {
  text-align: center;
}

.error__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.error__text {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

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

.error__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
  flex: 0 0 calc((100% - 40px * 1) / 2);
  text-align: center;
  color: #ACCD76;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  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: 6px;
  border: 2px solid #35491E;
  min-height: 55px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.error__button._fill {
  background: #35491E;
}

.error__button._stroke {
  color: #35491E;
}

.stock {
  padding: 25px 0px;
}

.stock__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

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

.stock__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
  flex: 0 0 calc((100% - 30px * 2) / 3);
}

.stock-page {
  padding: 25px 0px 25px;
}

.stock-page__wrapper {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.stock-page__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
  flex: 0 0 calc((100% - 30px * 1) / 2);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
}

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

.stock-page__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
  flex: 0 0 calc((100% - 30px * 1) / 2);
}

.stock-page__title {
  color: #35491E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stock-page__descriptoin {
  color: #35491E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}

.stock-page__descriptoin ul {
  padding-left: 25px;
}

.stock-page__descriptoin ul:not(:first-child) {
  margin-top: 10px;
}

.stock-page__descriptoin ul li {
  list-style: disc;
}

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

.page>section:last-child {
  padding-bottom: 50px;
}

@media (min-width: 720.98px) {
  .head-cart-header__top {
    display: none;
  }

  .head-cart-header__close {
    display: none;
  }
}

@media (min-width: 991.98px) {

  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: #35491E;
  }

  .tabel-catalog__paggination {
    display: none;
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1272px) {
  .product-stock__slider {
    margin: -30px;
    padding: 30px;
  }

  .product-stock__paggination {
    display: none;
  }

  .info-card__information {
    margin-top: 20px;
  }
}

@media (max-width: 1550px) {
  .info-tippy__body {
    left: auto;
    right: -10px;
  }
}

@media (max-width: 1272px) {
  .wrapper {
    padding-top: 66px;
  }

  .options {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }

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

  .header__nav {
    display: none;
  }

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

  .banner__item {
    height: 370px;
  }

  .banner__info {
    margin-left: 75px;
  }

  .banner__image {
    max-width: 682px;
    right: 40px;
  }

  .banner__arrow {
    display: none;
  }

  .info-banner__head {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .info-banner__suptitle {
    font-size: 13px;
  }

  .info-banner__weight {
    font-size: 12px;
    padding: 4px 6px;
  }

  .info-banner__title {
    font-size: 88px;
  }

  .info-banner__more {
    font-size: 13px;
  }

  .price-banner {
    width: 134px;
    height: 75px;
  }

  .price-banner__text {
    font-size: 11px;
    letter-spacing: 0.55px;
  }

  .price-banner__now {
    font-size: 26px;
  }

  .price-banner__old {
    font-size: 14px;
  }

  .tabel-catalog__slider {
    row-gap: 15px;
  }

  .tabel-catalog__item {
    padding: 20px;
    height: 200px;
  }

  .tabel-catalog__icon {
    width: 52px;
    height: 52px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
  }

  .tabel-catalog__name {
    font-size: 14px;
  }

  .popular__content {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .popular__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .popular__item:not(:nth-child(-n+6)) {
    display: none;
  }

  .product-stock__slider {
    overflow: visible;
  }

  .product-stock__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .product-stock__item:not(:last-child) {
    margin-right: 20px;
  }

  .product-stock__arrow {
    display: none;
  }

  .stock-section__content {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .stock-section__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .item-stock__body {
    padding: 20px;
  }

  .item-stock__name {
    font-size: 16px;
  }

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

  .catalog__products {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .catalog__product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .tabs-catalog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
    flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .card__wrapper {
    padding: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .thumbs-image-card__item {
    width: 100px;
    height: 81px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }

  .cart__wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .cart__main {
    padding: 20px;
  }

  .cart__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }

  .order__head {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .order__wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .order__main {
    padding: 20px;
  }

  .order__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }

  .data-main-order {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }

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

  .curier-delivery-main-order__other {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }

  .curier-delivery-main-order__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .store-delivery-main-order {
    padding: 20px;
  }

  .about__wrapper {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 20px;
  }

  .about__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
  }

  .about__img {
    height: 400px;
    padding-bottom: 0;
  }

  .contacts__wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 20px;
  }

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

  .stock__content {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }

  .stock__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .stock-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px;
  }

  .stock-page__image {
    width: 100%;
    max-width: 460px;
    height: 380px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 991.98px) {
  ._swiper-md2 {
    overflow: hidden;
  }

  ._swiper-md2 .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-md2.swiper-container-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

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

  .main-header__actions {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .action-main-header {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .footer__content {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .nav-footer__list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .banner__info {
    margin-left: 35px;
  }

  .banner__image {
    right: -20%;
  }

  .banner__price {
    right: 35%;
  }

  .tabel-catalog__slider {
    overflow: visible;
    row-gap: 0px;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
  }

  .tabel-catalog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 310px;
    flex: 0 0 310px;
  }

  .tabel-catalog__item:not(:last-child) {
    margin-right: 30px;
  }

  .popular__content {
    row-gap: 20px;
    margin-top: 20px;
  }

  .head-section__title {
    font-size: 28px;
  }

  .collors-product__item:not(:nth-child(-n+4)) {
    display: none;
  }

  .collors-product__name {
    left: -10px;
    top: calc(100% + 3px);
  }

  .product-stock__content {
    margin-top: 20px;
  }

  .stock-section__content {
    margin-top: 20px;
  }

  .breadrums {
    padding: 20px 0px;
  }

  .catalog__content {
    margin-top: 20px;
    row-gap: 20px;
  }

  .catalog__products {
    row-gap: 20px;
  }

  .head-catalog__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }

  .head-catalog__name {
    font-size: 28px;
  }

  .tabs-catalog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

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

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

  .thumbs-image-card__item {
    width: 80px;
    height: 65px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .info-card__title {
    font-size: 24px;
  }

  .info-card__cart {
    font-size: 0;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 56px;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .information-card {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    margin-top: 20px;
  }

  .cart__title {
    font-size: 28px;
  }

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

  .cart__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .cart__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .sidebar-cart__wrapper {
    position: static !important;
  }

  .order__title {
    font-size: 28px;
  }

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

  .order__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .order__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .main-order__section {
    padding: 20px 0px;
  }

  .order-send {
    padding: 50px 0px !important;
  }

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

  .about__title {
    font-size: 28px;
  }

  .about__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .contacts__column {
    padding: 20px;
  }

  .info-contacts__title {
    font-size: 28px;
  }

  .error__title {
    font-size: 28px;
  }

  .stock__title {
    font-size: 28px;
  }

  .stock__content {
    margin-top: 20px;
  }

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

  .stock-page__title {
    font-size: 28px;
  }
}

@media (max-width: 720.98px) {
  .wrapper {
    padding-top: 50px;
  }

  .options__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .header__main {
    height: 50px;
  }

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

  .main-header__stocks {
    display: none;
  }

  .phone-main-header {
    padding: 0px;
    border: none;
  }

  .phone-main-header__content {
    display: none;
  }

  .action-main-header__cart:not(._active) {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  .action-main-header__cart {
    position: fixed;
    z-index: 5;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 16px 16px 0px 0px;
  }

  .menu {
    max-width: 300px;
  }

  .head-menu {
    padding: 0px 20px;
  }

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

  .catalog-menu__item {
    padding: 12px 20px;
  }

  .contacts-menu {
    padding: 30px 20px;
  }

  .socials-contacts-menu {
    max-width: 160px;
  }

  .search-header {
    height: 50px;
    padding: 6px 0px;
  }

  .search-header__container {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .search-header__form {
    min-height: 38px;
  }

  .search-header__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    height: 30px;
    width: 30px;
  }

  .item-cart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .item-cart-header__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .item-cart-header__quantity {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
  }

  .item-cart-header__price {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .footer-cart-header__total {
    font-size: 20px;
    font-weight: 700;
  }

  .footer {
    padding: 40px 0px;
  }

  .footer__content {
    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: 40px;
  }

  .main-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
  }

  .banner__info {
    margin-left: 13px;
    padding-top: 30px;
  }

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

  .product-stock__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .stock-section__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
    flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .stock-section__item:not(:nth-child(-n+2)) {
    display: none;
  }

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

  .tabs-catalog {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    margin: 0px -20px -10px;
    padding: 0px 20px 10px;
    overflow-x: auto;
  }

  .tabs-catalog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    padding: 6px 6px 6px 12px;
  }

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

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

  .product-main-cart__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .product-main-cart__price {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .product-main-cart__quantity {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 92px;
    flex: 0 0 92px;
  }

  .product-main-cart__total {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .data-main-order__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .curier-delivery-main-order__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .store-delivery-main-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .store-delivery-main-order__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .store-delivery-main-order__map {
    height: 250px;
    width: 100%;
  }

  .contacts__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .error__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 479.98px) {
  .pagging {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .pagging__list li:not(:nth-child(-n+2),
    ._more,
    :nth-last-child(-n+2)) {
    display: none;
  }

  .main-header__actions {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .action-main-header {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .search-header__container {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }

  .cart-header {
    padding: 20px 20px 30px;
  }

  .footer-cart-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .icon-menu {
    margin-left: 5px;
  }

  .footer {
    padding: 30px 0px;
  }

  .banner {
    padding: 20px 0px 15px;
  }

  .banner__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 200px;
  }

  .banner__image {
    max-width: 320px;
  }

  .banner__price {
    right: 32%;
    top: 62%;
  }

  .info-banner {
    row-gap: 4px;
  }

  .info-banner__head {
    -webkit-column-gap: 13px;
    -moz-column-gap: 13px;
    column-gap: 13px;
  }

  .info-banner__suptitle {
    font-size: 7px;
  }

  .info-banner__weight img,
  .info-banner__weight svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7px;
    flex: 0 0 7px;
    height: 7px;
    width: 7px;
  }

  .info-banner__weight {
    padding: 2px 4px;
    font-size: 6px;
    border-radius: 2px;
  }

  .info-banner__title {
    font-size: 50px;
  }

  .info-banner__more {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 5px 13px;
    font-size: 7px;
  }

  .info-banner__more img,
  .info-banner__more svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7px;
    flex: 0 0 7px;
    height: 7px;
    width: 7px;
  }

  .price-banner {
    width: 90px;
    height: 51px;
  }

  .price-banner__text {
    font-size: 7px;
  }

  .price-banner__now {
    font-size: 17px;
  }

  .price-banner__old {
    font-size: 9px;
  }

  .tabel-catalog {
    padding: 15px 0px;
  }

  .tabel-catalog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    height: 140px;
  }

  .tabel-catalog__item:not(:last-child) {
    margin-right: 20px;
  }

  .tabel-catalog__icon {
    width: 42px;
    height: 42px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
  }

  .popular {
    padding: 15px 0px;
  }

  .popular__item:not(:nth-child(-n+4)) {
    display: none;
  }

  .head-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .head-section__title {
    font-size: 24px;
  }

  .product__body {
    padding: 12px;
  }

  .product__name {
    font-size: 14px;
  }

  .collors-product {
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }

  .collors-product__list {
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }

  .collors-product__item:not(:nth-child(-n+3)) {
    display: none;
  }

  .price-product {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }

  .price-product__old {
    font-size: 14px;
  }

  .price-product__old::after {
    height: 1px;
  }

  .product-stock {
    padding: 15px 0px;
  }

  .stock-section {
    padding: 15px 0px;
  }

  .stock-section__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .stock-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .stock-section__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .catalog {
    padding: 15px 0px;
  }

  .head-catalog__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }

  .head-catalog__name {
    font-size: 24px;
  }

  .tabs-catalog__image {
    width: 77px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 77px;
    flex: 0 0 77px;
    height: 62px;
  }

  .card {
    padding: 15px 0px;
  }

  .info-card {
    row-gap: 15px;
  }

  .info-card__title {
    font-size: 22px;
  }

  .info-card__colors {
    margin-top: -5px;
  }

  .info-card__price {
    font-size: 24px;
    min-height: 51px;
    padding: 10px 15px;
  }

  .info-card__price ._old {
    font-size: 16px;
  }

  .info-card__cart {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 51px;
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    min-height: 51px;
  }

  .information-card__head {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .information-card__item {
    font-size: 16px;
  }

  .cart {
    padding: 15px 0px;
  }

  .cart__title {
    font-size: 24px;
  }

  .order {
    padding: 15px 0px;
  }

  .order__head {
    -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;
  }

  .order__title {
    font-size: 24px;
  }

  .order-send__wrapper {
    padding: 30px 20px;
  }

  .about {
    padding: 15px 0px;
  }

  .about__title {
    font-size: 24px;
  }

  .about__description {
    row-gap: 15px;
  }

  .about__img {
    height: auto;
    padding-bottom: 95%;
  }

  .info-contacts__title {
    font-size: 24px;
  }

  .error__wrapper {
    row-gap: 35px;
  }

  .error__title {
    font-size: 24px;
  }

  .error__actions {
    margin-top: 20px;
  }

  .stock {
    padding: 15px 0px;
  }

  .stock__title {
    font-size: 24px;
  }

  .stock__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .stock-page {
    padding: 15px 0px;
  }

  .stock-page__image {
    padding-bottom: 80%;
    height: auto;
  }

  .stock-page__title {
    font-size: 24px;
  }

  .page>section:last-child {
    padding-bottom: 30px;
  }
}

@media (any-hover: hover) {
  .pagging__item:not(._active, ._more):hover {
    border-color: #ACCD76;
  }

  .phone-main-header__item:hover {
    color: #ACCD76;
  }

  .nav-header__item:hover .nav-header__icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .nav-header__item:hover .nav-header__name {
    color: #ACCD76;
  }

  .language-header__item:not(._active):hover {
    color: rgba(255, 255, 255, 0.75);
  }

  .sublist-catalog-menu__link:hover {
    text-decoration: underline;
  }

  .list-contacts-menu__item:hover .list-contacts-menu__icon svg path {
    fill: #ACCD76;
  }

  .list-contacts-menu__item:hover .list-contacts-menu__value {
    color: #ACCD76;
  }

  .socials-contacts-menu__item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .socials-contacts-menu__item:hover svg path {
    fill: #ACCD76;
  }

  .head-cart-header__delete:hover {
    text-decoration: underline;
  }

  .footer-cart-header__button:hover {
    color: #fff;
  }

  .main-footer__dev:hover {
    text-decoration: underline;
  }

  .list-contacts-footer__item:hover .list-contacts-footer__value {
    text-decoration: underline;
  }

  .socials-contacts-footer__item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .banner__arrow:hover {
    background: #35491E;
  }

  .banner__arrow:hover svg path {
    fill: #fff;
  }

  .tabel-catalog__item:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

  .head-section__more:hover {
    background: #35491E;
    color: #fff;
  }

  .head-section__more:hover svg path {
    fill: #fff;
  }

  .product:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

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

  .product-stock__arrow:hover {
    background: #35491E;
  }

  .product-stock__arrow:hover svg path {
    fill: #fff;
  }

  .item-stock:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

  .item-stock__name:hover {
    text-decoration: underline;
  }

  .breadrums__item a:hover {
    text-decoration: underline;
  }

  .tabs-catalog__item:hover {
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  }

  .thumbs-image-card__arrow:hover {
    background: #ACCD76;
  }

  .info-card__cart:hover {
    color: #fff;
  }

  .info-card__cart:hover svg path {
    fill: #fff;
  }

  .colors-card__item:hover .collors-product__name {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-cart__button:hover {
    color: #fff;
  }

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

  .order-send__text a:hover {
    text-decoration: underline;
  }

  .order-send__button:hover {
    color: #fff;
  }

  .socials-info-contacts__item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .feedback__submit:hover {
    color: #fff;
  }

  .error__button._fill:hover {
    color: #fff;
  }

  .error__button._stroke:hover {
    background: #35491E;
    color: #fff;
  }
}