@charset "UTF-8";
:root {
  --font-family: "Manrope", Arial, "Helvetica Neue", Helvetica, "Arial Rub", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #ffffff;
  --accent-color: #F2F1F0;
  --dark-color: #000000;
  --grey-color: #757575;
  --accent-color-2: #0af;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  padding-bottom: 50px;
  height: 100%;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.main {
  min-height: calc(100vh - 200px);
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

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

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.x-overflow {
  overflow-x: scroll !important;
  overflow-y: hidden !important;
}
.x-overflow::-webkit-scrollbar {
  display: none !important;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

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

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

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hidden-top {
  position: fixed;
  top: -70px !important;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.opacity-1 {
  opacity: 1;
}

.opacity-0 {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 20;
  background: var(--light-color);
}

.header__inner {
  position: relative;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0 12px;
  background: var(--light-color);
}

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  background: var(--accent-color);
  overflow: hidden;
  padding-right: 20px;
  margin-right: 15px;
  width: 100%;
}

.header__search-input {
  width: 100%;
  height: 52px;
  overflow: hidden;
  background: inherit;
  padding: 0 10px 0 45px;
  background: url("../img/logo.svg");
  background-size: 20px 20px;
  background-position-y: 50%;
  background-position-x: 15px;
  background-repeat: no-repeat;
}

.header__search-btn {
  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;
  height: 34px;
  width: 34px;
}

.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  height: 100%;
}

.header__menu-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.header__search-link {
  color: rgb(0, 153, 247);
  font-size: 16px;
  white-space: nowrap;
}

.header__content {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100dvw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 15;
  background: var(--light-color);
  max-height: 80%;
  height: 100%;
}
.header__menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 41px;
  height: 20px;
}
.header__menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 11px 14px 12px;
  min-height: 60px;
}
.header__menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ebebeb;
  height: 1px;
  width: calc(100% - 65px);
}
.header__menu-description {
  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;
  width: 100%;
  padding-left: 12px;
}
.header__menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__menu-title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  line-height: 20px;
}
.header__menu-text {
  display: block;
  color: rgb(117, 117, 117);
  font-size: 13px;
  line-height: 16px;
}
.header__menu-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header__fixed {
  position: relative;
  bottom: 0;
  z-index: -1;
  background: var(--light-color);
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 0 0 15px 15px;
}
.header__fixed-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.header__fixed-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  padding: 0 12px;
  height: 36px;
  border-radius: 12px;
  color: var(--dark-color);
  font-size: 13px;
  line-height: 36px;
  background: #f5f5f5;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.header__fixed-link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}
.header__fixed-title {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

.active-fixed-block {
  position: relative !important;
  bottom: 200px !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.filter {
  padding: 80px 24px 88px;
  background: var(--light-color);
}
.filter__nav {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--light-color);
  height: 56px;
  width: 100%;
  padding: 24px 24px 0;
}
.filter-active-item {
  background: #dbd3c1 !important;
}
.filter__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 56px;
  background: var(--light-color);
  gap: 20px;
  padding: 0 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px 0px;
}
.filter__search .input-reset {
  width: 100%;
}
.filter__region-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.filter__region-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}
.filter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.filter__contentItem {
  width: 100%;
}
.filter__title {
  display: block;
  font-size: 16px;
  color: var(--dark-color);
  font-weight: 900;
}
.filter__btn {
  display: inline-block;
  color: rgb(0, 170, 255);
  font-size: 16px;
  font-weight: 400;
}
.filter__allTitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 28px;
  margin-bottom: 12px;
}
.filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.filter__list-btn {
  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: 0 15px;
  height: 34px;
  border-radius: 5px;
  background: var(--accent-color);
  color: var(--dark-color);
}
.filter__sectionTitle {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.filter__input {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  background: var(--accent-color);
}
.filter__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}
.filter__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filter__checkbox + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filter__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background: #ebeae8;
  border-radius: 2px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.filter__checkbox:checked + label::before {
  background-color: var(--dark-color);
  background-image: url("../img/check.svg");
  background-size: 12px 10px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.filter__checkbox:disabled + label::before {
  opacity: 0.5;
}
.filter__checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #b3d7ff;
}
.filter__radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filter__radio + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filter__radio + label::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background: #ebeae8;
  border-radius: 50%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 45% 45%;
}
.filter__radio:checked + label::before {
  background-color: var(--dark-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: center center;
}
.filter__radio:disabled + label::before {
  opacity: 0.5;
}
.filter__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  -ms-grid-rows: 44px;
  grid-template-rows: 44px;
}
.filter__price {
  background: var(--accent-color);
  border-radius: 5px;
  padding: 0 15px;
}
.filter__seller {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 44px;
  grid-template-rows: 44px;
  margin-bottom: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.filter__seller-item {
  position: relative;
  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: var(--accent-color);
}
.filter__seller-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #e0e0e0;
}
.filter__label {
  position: relative;
}
.filter__label svg {
  position: absolute;
  right: 15px;
  padding: 6px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter__label-value {
  position: absolute;
  left: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark-color);
}
.filter__label-fragment {
  opacity: 0.7;
}
.filter__result {
  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: rgb(0, 153, 247);
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: fixed;
  bottom: 24px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  width: calc(100dvw - 48px);
  height: 44px;
  border-radius: 5px;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.filter-close-btn {
  position: unset !important;
}

.location-close-btn {
  position: unset !important;
  background-image: url("../img/arrow.svg") !important;
  background-repeat: no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 24px !important;
  height: 24px !important;
}

.header-return-btn {
  margin-right: 15px;
}

.active-nav {
  background: var(--dark-color);
}

.active-nav span {
  color: var(--light-color) !important;
}

.active-nav svg {
  fill: var(--light-color);
}

.header__fixed-content {
  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;
  margin-bottom: 15px;
  gap: 10px;
}

.header__fixed-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.header__fixed-btn span span {
  color: var(--dark-color);
}

.header__fixed-btn span {
  color: var(--grey-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.mt-15 {
  margin-top: 15px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-120 {
  margin-top: 120px;
}

.filter__radius-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 0;
  background: var(--accent-color);
  width: calc(100% - 50px);
  margin: 50px auto 0;
  border-radius: 6px;
  overflow: hidden;
}
.filter__radius-search .input-reset {
  background: var(--accent-color);
  min-height: 36px;
  width: 100%;
  padding-left: 50px;
  background-image: url(../img/search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 15px;
}

.radius__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position: fixed;
  bottom: 85px;
  left: 0;
  background: var(--light-color);
  padding: 0 25px;
}
.radius__btn {
  padding: 8px 16px;
  background: var(--accent-color);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
}

.hero__inner {
  padding-top: 75px;
}
.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.hero__item {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.hero__item:not(:last-child) {
  margin-right: 17px;
}
.hero__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
  font-size: 13px;
  white-space: nowrap;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 5px;
}
.menu__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: ([col] 42px)[19];
  grid-template-columns: repeat(19, [col] 42px);
  -ms-grid-rows: ([row] 80px)[2];
  grid-template-rows: repeat(2, [row] 80px);
  gap: 5px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.menu__list:not(:last-child) {
  margin-bottom: 5px;
}
.menu__item {
  background: var(--accent-color);
  border-radius: 16px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 100%;
}
.menu__link {
  display: block;
  min-width: 100%;
  min-height: 100%;
  padding: 12px 14px;
}
.menu__title {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: #000;
  margin: 0;
  -ms-hyphens: auto;
  hyphens: auto;
}
.menu__link-all {
  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: var(--accent-color);
  height: 160px;
  border-radius: 16px;
  min-width: 120px;
  max-width: 120px;
  padding: 10px 14px;
  font-size: 13px;
  color: #000;
  text-align: center;
}
.menu__link-all span {
  display: inline;
}
.menu__link-all svg {
  padding-left: 4px;
}

.category-auto {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-1.png");
}

.category-immovables {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-2.png");
}
.category-immovables .menu__title {
  max-width: 80px;
}

.category-work {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-image: url("../img/category-3.png");
}

.category-cloth {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-4.png");
}

.category-hobby {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-image: url("../img/category-5.png");
}

.category-animals {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-6.png");
}

.category-buisness {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-7.png");
}

.category-service {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-image: url("../img/category-8.png");
}

.category-electronic {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-image: url("../img/category-9.png");
}

.category-dacha {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-10.png");
}
.category-dacha span {
  width: 60%;
}

.category-part {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background-image: url("../img/category-11.png");
}

.category-products {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  background-image: url("../img/category-12.png");
}
.category-products span {
  width: 45%;
}

.category-travel {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-13.png");
}

.category-health {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  background-image: url("../img/category-14.png");
}

.tab {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--light-color);
  border-top: 0.5px solid #EBEBEB;
  z-index: 7;
}
.tab__inner {
  padding: 5px;
}
.tab__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
.tab__item {
  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;
}
.tab__link {
  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;
  font-size: 10px;
  color: #CCCCCC;
}

.active-link .tab__link {
  color: var(--dark-color);
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.disable-scroll {
  position: relative;
  overflow: hidden;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.graph-modal {
  --transition-time: 0.3s;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--transition-time), visibility var(--transition-time);
  transition: opacity var(--transition-time), visibility var(--transition-time);
}

.graph-modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.graph-modal__container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100dvw;
  margin: 0;
  display: inline-block;
  vertical-align: bottom;
  background-color: #fff;
  cursor: default;
  text-align: left;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-top: -100%;
}

.graph-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  padding: 0;
  height: 32px;
  width: 32px;
  z-index: 30;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512.001 512.001'%3E%3Cpath d='M284.286 256.002L506.143 34.144c7.811-7.811 7.811-20.475 0-28.285-7.811-7.81-20.475-7.811-28.285 0L256 227.717 34.143 5.859c-7.811-7.811-20.475-7.811-28.285 0-7.81 7.811-7.811 20.475 0 28.285l221.857 221.857L5.858 477.859c-7.811 7.811-7.811 20.475 0 28.285a19.938 19.938 0 0014.143 5.857 19.94 19.94 0 0014.143-5.857L256 284.287l221.857 221.857c3.905 3.905 9.024 5.857 14.143 5.857s10.237-1.952 14.143-5.857c7.811-7.811 7.811-20.475 0-28.285L284.286 256.002z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.graph-modal__content {
  position: relative;
}

.graph-modal.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity var(--transition-time), visibility var(--transition-time);
  transition: opacity var(--transition-time), visibility var(--transition-time);
}

.graph-modal__container.graph-modal-open {
  display: inline-block;
}

.fade {
  opacity: 0;
}

.fade,
.fade.animate-open {
  -webkit-transition: opacity var(--transition-time);
  transition: opacity var(--transition-time);
}

.fade.animate-open {
  opacity: 1;
  height: 100dvh;
}

.fadeInUp {
  position: relative;
  top: 100%;
  left: unset;
  opacity: 1;
  border-radius: 16px 16px 0 0;
  vertical-align: bottom;
  padding: 16px 6px;
  max-width: 540px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.fadeInUp,
.fadeInUp.animate-open {
  -webkit-transition: opacity var(--transition-time), -webkit-transform var(--transition-time);
  transition: opacity var(--transition-time), -webkit-transform var(--transition-time);
  transition: transform var(--transition-time), opacity var(--transition-time);
  transition: transform var(--transition-time), opacity var(--transition-time), -webkit-transform var(--transition-time);
}

.fadeInUp.animate-open {
  opacity: 1;
  top: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.search__table {
  width: 100%;
  border-collapse: collapse;
}

.search__description {
  max-height: 740px;
  padding-bottom: 100px;
  overflow-y: scroll;
}
.search__description::-webkit-scrollbar {
  display: none;
}

.search__col {
  height: 50px;
}
.search__col span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: var(--dark-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.search__table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin: 15px 0;
  text-align: center;
  width: 100%;
}

.search__table-btn {
  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: transparent;
  width: 100%;
  height: 50px;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
}

.not-date {
  text-decoration: line-through;
  opacity: 0.4;
}

.active-date {
  background: var(--accent-color-2) !important;
  color: var(--light-color) !important;
}

.search__nav {
  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;
  margin-bottom: 20px;
}

.search__nav-title {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 22px;
  text-align: center;
}

.search__nav-btn {
  color: rgb(184, 184, 184);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.search__search {
  position: relative;
  height: 40px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.search__search-input {
  background: #F5F5F5;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  padding: 0 50px 0 35px;
  background-image: url(../../img/search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-x: 6px;
  background-position-y: 50%;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
}

.search__search-input::-webkit-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
  font-weight: 400;
}

.search__search-input::-moz-placeholder {
  color: #C1C1C1;
  font-size: 16px;
  font-weight: 400;
}

.search__search-input:-ms-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
  font-weight: 400;
}

.search__search-input::-ms-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
  font-weight: 400;
}

.search__search-input::placeholder {
  color: #C1C1C1;
  font-size: 16px;
  font-weight: 400;
}

.search__search-btn {
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
}

.search__content-input {
  height: 44px;
  border-radius: 6px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  border: 3px solid transparent;
  padding: 0 0 0 20px;
}

.search__content-input:focus {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  border-color: rgb(121, 210, 255);
}

.search__btnSubmit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 6px;
  background: var(--light-color);
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  -webkit-box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
  box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
  margin: 20px 0;
}

.search__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.search__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}

.search__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  min-height: 46px;
}

.search__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 46px;
}

.search__item-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}

.search__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.search__btn-svg {
  display: none;
}

.active-home span {
  color: rgba(0, 0, 0, 0.5);
}
.active-home svg {
  display: block !important;
}

.stories__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding-top: 35px;
}
.stories__banner {
  border-radius: 16px;
  min-width: 192px;
  min-height: 128px;
}
.stories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.stories__item {
  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;
}
.stories__item .image {
  border-radius: 50%;
  min-width: 92px;
  min-height: 92px;
  padding: 2px;
}
.stories__btn {
  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;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #000;
}
.stories__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stories__title {
  display: block;
  color: var(--light-color);
  font-size: 47px;
  font-weight: 700;
  line-height: 51px;
  margin: 0;
}
.stories__text {
  display: block;
  color: var(--light-color);
  font-size: 23px;
  line-height: 27px;
  margin: 15px 0 0 0;
}
.stories__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  color: var(--light-color);
  background: rgb(0, 153, 247);
  padding: 15px 19px;
  margin-top: 30px;
  font-size: 23px;
}

.viewed-stories {
  border: 2px solid #FF6567;
}

.stories-modal {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  height: 100dvh;
  width: 100dvw;
  background-size: cover;
}

.stories-modal-container {
  overflow: hidden;
  border-radius: 20px;
}
.stories-modal-container .graph-modal__close {
  position: absolute;
  top: 35px;
  right: 20px;
}

.stories-slide {
  display: block;
  height: 2px;
  background: #B7B8C1;
  border-radius: 10px;
}

.card {
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  background: var(--light-color);
  border-radius: 3px;
  overflow: hidden;
}
.card__title {
  margin: 0;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-color);
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 5px;
}
.card__price {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 3px;
}
.card__location {
  display: block;
  color: rgb(133, 133, 133);
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 3px;
}
.card__date {
  display: block;
  color: rgb(133, 133, 133);
  font-size: 13px;
  line-height: 18px;
}
.card__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  min-width: 36px;
}
.card__menu-btn {
  position: relative;
  z-index: 3;
}

.catalog__inner {
  padding-top: 12px;
}
.catalog__title {
  margin: 0 0 0 16px;
  line-height: 1.3;
  font-size: 22px;
  font-weight: 600;
  width: calc(100% - 16px - 0px);
}
.catalog__list {
  overflow-x: scroll;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
  padding-top: 8px;
}
.catalog__list::-webkit-scrollbar {
  display: none;
}
.catalog__more {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
  background: #F2EFE9;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.more {
  padding: 16px 18px;
}
.more__title {
  display: block;
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin: 0;
}
.more__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.more__text {
  color: var(--dark-color);
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 840px) {
  .catalog__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .catalog__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.special-catalog-list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.special-catalog-list .card {
  min-width: 240px;
}

.product {
  position: relative;
  min-height: 140px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
}
.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 8px;
}
.product__picture {
  position: relative;
  width: 140px;
  height: 140px;
  overflow: hidden;
}
.product__features {
  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;
  position: absolute;
  bottom: 5px;
  right: 8px;
  background: #f7be00;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.product__description {
  padding-top: 8px;
}
.product__title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  line-height: 20px;
}
.product__price {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  font-weight: 700;
}
.product__owner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 400;
}
.product__owner-value {
  display: block;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.product__rating-value {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-color);
  line-height: 18px;
}
.product__feedback::after {
  content: ")";
}
.product__feedback::before {
  content: "(";
}
.product__feedback {
  color: rgb(117, 117, 117);
}
.product__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgb(117, 117, 117);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.product__delivery {
  display: block;
  color: rgb(117, 117, 117);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.product__date {
  display: block;
  color: rgb(117, 117, 117);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.product__btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.product__preview {
  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;
  gap: 8px;
}
.product__preview-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 400;
}

.product-item {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  padding: 0 10px 10px;
}

.product-item__picture {
  position: relative;
  max-height: 356px;
  max-width: 460px;
  margin-bottom: 10px;
  padding: 0 10px;
}

.swiper {
  max-width: 500px;
}

.swiper-slide .image {
  max-height: 356px;
  max-width: 500px;
}

.product-item__description {
  position: relative;
}

.product-item__title {
  display: block;
  color: rgb(33, 33, 33);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}

.product-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.product-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
}

.product-item__text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}

.product-item__span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgb(117, 117, 117);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
}

.product-item__item {
  padding: 5px;
  border-radius: 5px;
  background: #CCECFF;
  color: var(--dark-color);
  font-size: 11px;
  font-weight: 600;
}

.product-item__address {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(117, 117, 117);
}

.dote {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.product-item__delivery {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(117, 117, 117);
}

.product-item__date {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(117, 117, 117);
}

.product-item__like {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 2;
  width: 18px;
  height: 16px;
  background-image: url("../../img/like_blue.svg");
  background-size: 18px 16px;
  background-repeat: no-repeat;
}

.product-item__btn {
  width: 100%;
  height: 28px;
  border-radius: 6px;
  background: #02D15C;
  color: var(--light-color);
  font-size: 14px;
  font-weight: 400;
}

.arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.product-item .arrow {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
}

.arrow__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.slide__inner {
  padding: 30px 0;
}
.slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
}
.slide__item {
  width: 100%;
  min-width: 500px;
  max-width: 500px;
}
.slide__item .image {
  border-radius: 16px;
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-bottom: 5px;
  min-width: 300px;
}
.slide__title {
  display: block;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 7px 16px;
}
.slide__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.slide__link {
  display: block;
  padding: 9px 15px;
  background: var(--accent-color);
  border-radius: 12px;
  font-size: 13px;
  color: var(--dark-color);
}

.market__inner {
  padding-top: 50px;
}
.market__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 50%;
  color: var(--light-color) !important;
  font-size: 11px;
  font-weight: 500;
  padding: 8px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.footer {
  background: #EEEEEE;
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.08), inset 0 0 2px 0 rgba(0, 0, 0, 0.04);
  height: 200px;
  width: 100%;
  padding-top: 24px;
  margin-top: 30px;
}

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

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

.footer__link {
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-color-2);
}

.footer__text {
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 400;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
}
.p-header__title {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  line-height: 19px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
}
.p-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.ya-share2 {
  background: none !important;
}

.store__price {
  margin: 20px 0 0;
  color: var(--dark-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}
.store .swiper {
  height: 360px !important;
  overflow: hidden;
  border-radius: 16px;
  max-width: calc(100% - 30px);
}
.store .swiper .image {
  border-radius: 5px;
}
.store__title {
  margin: 0;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
.store__rating {
  margin-top: 15px;
}
.store__rating-value {
  padding: 1px 6px;
  border-radius: 3px;
  background: #00C257;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
}
.store__rating-text {
  color: #00C257;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.store .description-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* Ограничение по количеству строк */
}
.store__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 38%;
  grid-template-columns: 60% 38%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}
.store__nav-btn {
  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: #965EEB;
  border-radius: 16px;
  min-height: 52px;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
}
.store__tab {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% calc(40% - 5px);
  grid-template-columns: 60% calc(40% - 5px);
  gap: 5px;
  position: fixed;
  bottom: 5px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  width: calc(100% - 20px);
  background: var(--light-color);
  border-radius: 22px 22px 0 0;
  padding: 8px 8px 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.store .hidden-bottom {
  bottom: -100px !important;
}
.store__tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 400;
  background: #965EEB;
  border-radius: 16px;
  height: 52px;
}
.store__delivery {
  margin-top: 20px;
  width: 90%;
}
.store__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.store__text-delivery {
  margin: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.store__link {
  display: block;
  color: var(--accent-color-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.store__user {
  margin-top: 30px;
}
.store__user-title {
  margin: 0;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.store__user-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  line-height: 30px;
}
.store__user-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.store__user-item {
  width: 14px;
  height: 14px;
  fill: #FFB020;
}
.store__contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px;
  margin-top: 10px;
}
.store__btn {
  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: 44px;
  padding: 8px 16px;
  border-radius: 12px;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  background: var(--accent-color);
}
.store__address {
  margin-top: 30px;
}
.store__text-fragment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--grey-color);
}
.store__text-walk {
  width: 30px;
  height: 30px;
  fill: var(--grey-color);
}
.store__property {
  margin-top: 30px;
}
.store__property-title {
  margin: 0 0 20px;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.store__description {
  margin-top: 30px;
}
.store__description-title {
  margin: 0 0 20px;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.store__seller {
  margin-top: 30px;
}
.store__seller-title {
  margin: 0;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.store__seller-message {
  position: relative;
  margin-top: 15px;
  height: 44px;
}
.store__seller-input {
  width: 100%;
  height: 22px;
  padding: 10px 12px 12px 16px;
  background: var(--accent-color);
  border-radius: 16px;
  height: 44px;
}
.store__seller-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.store__message-send {
  width: 20px;
  height: 22px;
  fill: #C2C1BE;
}
.store__seller-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
.store__list-btn {
  padding: 8px 10px;
  border-radius: 12px;
  background: #292827;
  color: var(--light-color);
  font-size: 13px;
  font-weight: 400;
}
.store__details {
  margin-bottom: 15px;
}
.store__details[open] summary::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.store__summary {
  position: relative;
  list-style: none;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.store__summary::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow_2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.store__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-top: 10px;
}
.store__item {
  border-radius: 5px;
  overflow: hidden;
  background: var(--light-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
}
.store__item-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px;
}
.store__item-title {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.store__item-price {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
.store__report {
  height: 44px;
  width: 100%;
  padding: 6px 16px;
  background: var(--accent-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}
.store__info {
  margin-top: 20px;
}
.store__info span {
  display: block;
  color: rgb(117, 117, 117);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.store__info-path {
  margin-top: 30px;
}

.fragment {
  color: #00C257;
}

.salesman {
  margin-top: 30px;
}
.salesman__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.salesman__description .image {
  border-radius: 50%;
}
.salesman__title {
  margin: 0;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.salesman__type {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.salesman__span {
  display: block;
  padding: 2px 5px;
  background: #CCECFF;
  font-size: 13px;
  font-weight: 300;
  border-radius: 6px;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.shop__inner {
  padding-top: 10px;
}
.shop__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.shop__preview .image {
  min-width: 177px;
  border-radius: 5px;
}
.shop__description {
  margin-top: 20px;
}
.shop__description-text {
  margin: 0 0 20px;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.shop__price {
  display: block;
  color: var(--dark-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
.shop__description-title {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  line-height: 22px;
  color: rgb(117, 117, 117);
}
.shop__description-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #E2FFD6;
  border-radius: 16px;
  width: 100%;
  margin-top: 30px;
}
.shop__description-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/arrow_90.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.shop__description-btn-title {
  display: block;
  text-align: left;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.shop__description-btn-text {
  display: block;
  text-align: left;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}
.shop__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 28px;
  background: #00AAFF;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  margin-top: 50px;
}
.shop__rating {
  padding: 0 10px;
}
.shop__rating-nav {
  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;
}
.shop__rating-title {
  display: block;
  margin: 0;
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 10px;
}
.shop__rating-text {
  margin: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
}

.tabs__panel {
  display: none;
}

.tabs__nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.tabs__panel--active {
  display: block;
}

.tabs__nav-btn--active {
  color: var(--dark-color) !important;
}
.tabs__nav-btn--active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-color);
}

.feedback {
  background: var(--light-color);
  height: 100dvh;
}
.feedback__wrapper {
  background: #BFBFBF;
  max-width: 540px;
  margin: 0 auto;
  padding-top: 15px;
}
.feedback .tabs__content {
  padding-top: 0 !important;
}
.feedback .tabs__nav {
  position: unset !important;
}
.feedback__btn {
  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;
  position: fixed;
  bottom: 15px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  width: calc(100% - 40px);
  min-height: 46px;
  border-radius: 5px;
  background: var(--accent-color-2);
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
}
.feedback__inner {
  position: relative;
  background: var(--light-color);
  min-height: calc(100vh - 10px);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  padding: 0 20px;
}
.feedback__header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}
.feedback__header-back .image {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  min-width: 18px;
  min-height: 18px;
}
.feedback__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.feedback__header-btn .image {
  min-width: 18px;
  min-height: 18px;
}
.feedback__header-top {
  padding-top: 20px;
}
.feedback__path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.feedback__path-link {
  color: var(--grey-color);
  font-size: 13px;
  font-weight: 400;
}
.feedback__header-title {
  margin: 15px 0 30px;
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}
.feedback .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border-bottom: 3px solid #E3E2E1;
  padding-bottom: 15px;
}
.feedback .tabs__nav-btn {
  position: relative;
  color: var(--grey-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.feedback .tabs__panel {
  background: var(--light-color);
  overflow-y: scroll;
  max-height: 100dvh;
  padding-top: 10px;
  padding-bottom: 220px;
}
.feedback .tabs__panel::-webkit-scrollbar {
  display: none;
}

.rating__text {
  color: rgb(48, 168, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 10px;
}
.rating__text-span {
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--light-color);
  background: rgb(48, 168, 0);
}
.rating__panel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}
.rating__panel-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.rating__panel-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rating__star {
  width: 16px;
  height: 16px;
  fill: #FFB021;
}
.rating__panel-progress {
  width: calc(100% - 50px);
  height: 4px;
  border-radius: 3px;
  background: #EBEAE8;
  overflow: hidden;
}
.rating__panel-progress-bar {
  height: 4px;
  background: #7A7976;
  border-radius: 3px;
}
.rating__panel-text {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  min-width: 30px;
  margin-left: 5px;
  text-align: right;
}

.disabled-star {
  fill: #E3E2E1 !important;
}

.comment {
  margin-top: 30px;
}
.comment__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}
.comment__user .image {
  border-radius: 50%;
  min-width: 32px;
  min-height: 32px;
}
.comment__experience {
  display: block;
  color: var(--grey-color);
  font-size: 15px;
  line-height: 22px;
  margin: 5px 0;
}
.comment__user-title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.comment__user-date {
  display: block;
  color: var(--grey-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
.comment__feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.comment__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.comment__description {
  padding-top: 30px;
}
.comment__description-title {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
}
.comment__description-text {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 20px;
}

.property__title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 8px;
}
.property__text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: var(--grey-color);
}
.property__text-span {
  color: var(--dark-color);
}
.property__advice {
  font-size: 11px;
  line-height: 14px;
  color: var(--grey-color);
  font-weight: 600;
  margin: 0 0 20px;
}
.property__titleMarket {
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 30px;
}
.property__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding: 17px;
  border-radius: 12px;
  background: var(--accent-color);
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
}

.model__title {
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}
.model__options {
  margin-top: 20px;
}
.model__options-title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
}
.model__options-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 5px;
}
.model__options-btn {
  padding: 12px 17px;
  background: var(--accent-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}
.model__options-color {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #9C9C9C;
  margin-right: 5px;
}
.model__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  background: var(--dark-color);
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  padding: 5px 20px;
  margin: 20px 0 40px;
}
.model__property-title {
  color: var(--dark-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 15px;
}
.model__property-text {
  display: block;
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}
.model__property-btn {
  padding: 12px 17px;
  background: var(--accent-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  margin-bottom: 40px;
}

.model-fixed-btn {
  position: fixed;
  bottom: -20px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  width: calc(100% - 70px);
  z-index: 10;
}

.model-active-btn {
  background: var(--dark-color);
  color: var(--light-color);
}

.model-active-color::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--dark-color);
  border-radius: 50%;
}

.retailer__inner {
  padding: 0 10px 150px;
}
.retailer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.retailer__company .image {
  border-radius: 50%;
  min-width: 84px;
  min-height: 84px;
  -o-object-fit: contain;
  object-fit: contain;
}
.retailer__company-content {
  margin-bottom: 20px;
}
.retailer__title {
  color: var(--dark-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  margin: 0;
}
.retailer__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.retailer__rating-num {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.retailer__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.retailer__star-item {
  width: 17px;
  height: 17px;
  fill: #ffb020;
}
.retailer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--accent-color-2);
}
.retailer__subscribers {
  display: block;
  font-size: 15px;
  color: var(--dark-color);
  font-weight: 400;
  line-height: 22px;
}
.retailer__date {
  display: block;
  font-size: 15px;
  color: var(--dark-color);
  font-weight: 400;
  line-height: 22px;
}
.retailer__dashboard {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: (46px)[4];
  grid-template-rows: repeat(4, 46px);
  gap: 2px;
}
.retailer__dashboard-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 400;
  padding: 13px;
  background-color: #e6f6ff;
  border-radius: 6px 6px 0 0;
}
.retailer__dashboard-btn:focus {
  background: #ccecff;
}
.retailer__dashboard-btn:nth-child(2) {
  border-radius: 0 0 0 0;
}
.retailer__dashboard-btn:nth-child(3) {
  border-radius: 0 0 6px 6px;
}
.retailer__menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 52px;
  grid-template-rows: 52px;
  padding-top: 10px;
  gap: 15px;
  margin-bottom: 40px;
}
.retailer__btn {
  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: var(--accent-color);
  border-radius: 16px;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
}
.retailer__tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.retailer__tabs-btn {
  position: relative;
  color: var(--grey-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
}
.retailer__tabs-num {
  position: absolute;
  top: -5px;
  color: var(--grey-color);
  font-size: 14px;
  text-align: left;
}
.retailer__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background: var(--accent-color);
  height: 52px;
  padding: 15px;
  border-radius: 16px;
  margin-bottom: 10px;
}
.retailer__input {
  background: var(--accent-color);
  height: 100%;
  width: 100%;
  padding-left: 30px;
  background-image: url(../img/search.svg);
  background-repeat: no-repeat;
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-color);
}
.retailer__catalog-btn {
  padding: 15px 17px;
  background: var(--accent-color);
  border-radius: 12px;
  margin-bottom: 20px;
}
.retailer__list {
  margin-bottom: 20px;
}
.retailer__main {
  padding-top: 80px;
}
.retailer__info-title {
  display: block;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.retailer__info-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.retailer__info-slider .image {
  height: 158px;
  border-radius: 8px;
}
.retailer__info-span {
  display: block;
  padding: 12px 17px;
  border-radius: 12px;
  background: var(--dark-color);
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.retailer__info-text {
  margin: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.retailer__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
  position: fixed;
  bottom: 10px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  background: var(--light-color);
  width: calc(100% - 5px);
  padding: 8px;
  border-radius: 28px;
  z-index: 10;
}
.retailer__tab-btn {
  width: 100%;
  min-height: 52px;
  background: var(--accent-color-2);
  border-radius: 16px;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
}
.retailer__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--light-color);
  z-index: 10;
}

.seller .swiper {
  height: 90vh;
}
.seller .swiper-slide {
  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;
}
.seller__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 40px;
}
.seller__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent-color);
  border-radius: 16px;
}

.retailer-green-btn {
  background: #02D15C;
}

.profile .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  background: #F4F4F4;
  min-height: 100dvh;
  padding: 56px 0 65px;
}
.profile__description {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 140px;
  padding-bottom: 20px;
}
.profile__description .profile__text {
  text-align: left;
}
.profile__description .image {
  position: absolute;
  right: 0;
}
.profile .p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 56px;
  background: var(--light-color);
  z-index: 10;
}
.profile .new-profile-item {
  position: relative;
}
.profile .new-profile-item::after {
  content: "Новое";
  color: var(--light-color);
  font-size: 11px;
  font-weight: 500;
  background: #FF6163;
  border-radius: 8px;
  padding: 1px 6px;
  line-height: 19px;
  margin-left: 5px;
}
.profile__section {
  background: var(--light-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
}
.profile__inner {
  padding: 20px 15px;
}
.profile__title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 20px;
}
.profile__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  padding: 10px 0;
}
.profile__content-text {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-left: 32px;
}
.profile__menu {
  position: relative;
  padding-top: 20px;
}
.profile__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: calc(100% + 30px);
  height: 1px;
  background: #E0E0E0;
}
.profile__link {
  display: block;
  color: var(--accent-color-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}
.profile__more {
  background: var(--light-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  min-height: 72px;
  padding: 16px;
}
.profile__more-link {
  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;
  gap: 5px;
}
.profile__more-title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.profile__more-text {
  display: block;
  color: var(--grey-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
.profile__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.profile__nav-link {
  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: var(--light-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  min-height: 56px;
  padding: 20px 16px;
  color: var(--accent-color-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.user {
  background: var(--light-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
}
.user__inner {
  padding: 10px 0;
}
.user__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
}
.user__content-link {
  position: relative;
  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;
}
.user__content-link .image {
  border-radius: 50%;
}
.user__content-item {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.user__content-btn {
  background: var(--accent-color);
}
.user__title {
  margin: 5px 0 8px;
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
}
.user__text {
  display: block;
  color: var(--dark-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}
.user__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.user__rating-item {
  fill: #E0E0E0;
}
.user__rating-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
}
.user__link {
  display: block;
  margin-top: 5px;
  color: var(--accent-color-2);
  font-size: 16px;
  font-weight: 400;
}

.user-current-profile::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 72px;
  height: 72px;
  border: 4px solid var(--accent-color-2);
  border-radius: 50%;
}

.ads__inner {
  padding-top: 105px;
}
.ads__title {
  margin: 20px 0;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
}
.ads__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: var(--light-color);
  min-height: 105px;
  padding: 0 15px;
}
.ads .tabs__nav {
  display: -ms-grid;
  display: grid;
}
.ads .tabs__nav-item {
  position: relative;
  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: 30px;
}
.ads .tabs__content {
  padding-top: 0 !important;
}
.ads__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: 140px;
  grid-template-rows: 140px;
  padding-top: 30px;
  gap: 5px;
}
.ads .tabs__nav-btn--active {
  color: var(--accent-color-2) !important;
}
.ads .tabs__nav-btn--active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color-2);
}
.ads__btn {
  position: fixed;
  bottom: 70px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--accent-color-2);
  border-radius: 24px;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--light-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 16.5px;
  text-transform: uppercase;
  min-width: 220px;
}
.ads__btn-svg {
  margin-right: 10px;
  min-height: 24px;
  min-width: 24px;
}

.rank__inner {
  padding-top: 10px;
}
.rank__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 5px;
  margin-bottom: 20px;
}
.rank__title {
  color: var(--dark-color);
  font-size: 52px;
  font-weight: 700;
  line-height: 56px;
  margin: 0;
}
.rank__content-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.rank__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rank__star-item {
  fill: #E0E0E0;
}
.rank__text {
  display: block;
  font-size: 13px;
  color: var(--dark-color);
  line-height: 16px;
}
.rank__scale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
}
.rank__scale-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
.rank__scale-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rank__scale-slide {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100%;
  padding: 5px 0;
  width: 100%;
}
.rank__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 4px;
  background: #EBEBEB;
}
.rank__sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4px;
  background: #7A7976;
}
.rank__scale-numbers {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100%;
}
.rank__num {
  display: block;
  font-size: 13px;
  color: var(--dark-color);
  line-height: 16px;
}
.rank__scale-title {
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin: 30px 0 5px;
}

.rank-header-btn {
  color: var(--grey-color);
  font-size: 16px;
  font-weight: 400;
}

.cart__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
  margin-top: 60px;
}
.cart__link {
  color: var(--accent-color-2);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.cart__link span::before {
  content: "(";
}
.cart__link span::after {
  content: ")";
}
.cart__page .p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  background: var(--light-color);
  z-index: 10;
}
.cart__header-title {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
}
.cart__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding-bottom: 160px;
}
.cart__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.cart__user-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.cart__user-name {
  display: block;
  color: var(--dark-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 21px;
}
.cart__user-star {
  fill: #FFA500;
}
.cart__user-rating {
  display: block;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.cart__user-num {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-color);
}
.cart__user-num::before {
  content: "(";
}
.cart__user-num::after {
  content: ")";
}
.cart__catalog {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.cart__image {
  min-width: 96px;
  min-height: 96px;
  border-radius: 12px;
}
.cart__product-picture {
  margin-right: 15px;
}
.cart__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cart__product-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 10px;
}
.cart__price {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
.cart__title {
  display: block;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 8px;
  background: #F2F1F0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 12px;
}
.cart__quantity-btn {
  min-height: 44px;
  min-width: 44px;
}
.cart__quantity-num {
  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-width: 36px;
  min-height: 46px;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
}
.cart__catalog-link {
  display: block;
  color: rgb(161, 104, 247);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 10px;
}
.cart__catalog-list {
  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;
  margin-left: auto;
  gap: 10px;
}
.cart__catalog-btn {
  min-width: 20px;
  min-height: 20px;
}
.cart__tab {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100dvw;
  background: var(--light-color);
  padding: 15px;
}
.cart__tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 5px;
}
.cart__tab-text {
  display: block;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}
.cart__tab-border {
  width: 100%;
  height: 0;
  border-top: 1px dotted rgb(184, 184, 184);
  border-bottom: 1px dotted rgb(184, 184, 184);
  margin-bottom: 5px;
}
.cart__tab-title {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 10px;
  white-space: nowrap;
}
.cart__tab-btn {
  min-height: 52px;
  padding: 0 20px;
  width: 100%;
  background: rgb(161, 104, 247);
  border-radius: 16px;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.control__inner {
  padding: 0 10px;
}
.control__header-link {
  color: var(--accent-color-2);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.control__title {
  margin: 0;
  color: var(--dark-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
}
.control__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.control__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 15px 0;
}
.control__user-picture {
  position: relative;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.control__user-picture .input-reset {
  width: 88px;
  height: 88px;
  opacity: 0;
}
.control__user-picture::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background-image: url("../img/photo.svg");
  background-repeat: no-repeat;
  background-size: 18px 17px;
  background-position: 50% 50%;
  background-color: var(--light-color);
  border-radius: 50%;
  padding: 6px;
}
.control__pin {
  padding-top: 20px;
}
.control__tab-title {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.control__pin-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border-radius: 6px;
  background: #E6F6FF;
}
.control__phone-text {
  display: block;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
.control__pin-title {
  display: block;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}
.control__pin-text {
  display: block;
  color: var(--grey-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.control__container {
  margin-top: 20px;
}
.control__vkText {
  margin: 15px 0 0;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.control__container-text {
  margin: 0;
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}
.control .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #E3E2E1;
  padding-bottom: 16px;
  margin-top: 30px;
}
.control .tabs__nav-btn {
  position: relative;
  font-weight: 700;
  color: var(--grey-color);
}
.control .tabs__panel {
  padding-top: 20px;
}

.manage__article {
  background: #D4F0FF;
  padding: 20px 24px 36px;
  border-radius: 20px;
}
.manage__article-title {
  display: block;
  color: var(--dark-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
}
.manage__article-text {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 10px 0 0;
}
.manage__article-link {
  display: block;
  padding: 10px 17px;
  background: var(--light-color);
  border-radius: 6px;
  -webkit-box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
  box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}
.manage__hat {
  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;
  margin-top: 20px;
  gap: 20px;
}
.manage__hat-title {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}
.manage__hat-text {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
.manage__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  opacity: 0.5;
  padding-bottom: 50px;
}
.manage__item {
  margin-top: 30px;
}
.manage__title {
  display: block;
  color: var(--dark-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}
.manage__text {
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 20px;
}
.manage__avatar {
  position: relative;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 150px;
  min-height: 100px;
  max-width: 150px;
  max-height: 100px;
  background: #E3E2E1;
  border-radius: 5px;
  overflow: hidden;
}
.manage__avatar .input-reset {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 150px;
  min-height: 100px;
  max-width: 150px;
  max-height: 100px;
  opacity: 0;
}
.manage__btn {
  padding: 8px 10px;
  background: #E3E2E1;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}

.notification__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 56px;
  background: var(--light-color);
  z-index: 10;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
}
.notification__header .p-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  color: var(--dark-color);
}
.notification__list {
  padding-top: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.notification__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.notification__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 22px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification__date {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-color);
  line-height: 22px;
  text-align: right;
  white-space: nowrap;
}
.notification__text {
  margin: 5px 0 0;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
  color: #272727;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.messenger__inner {
  padding-top: 130px;
}
.messenger__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 10;
  background: var(--light-color);
}
.messenger__header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.messenger__header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-right: 10px;
  background: #F2F1F0;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.messenger__header-input {
  height: 28px;
  width: 100%;
  font-size: 13px;
  padding-left: 40px;
  background: inherit;
  background-image: url(../img/search.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: 50%;
}
.messenger__header-input::-webkit-input-placeholder {
  font-size: 13px;
}
.messenger__header-input::-moz-placeholder {
  font-size: 13px;
}
.messenger__header-input:-ms-input-placeholder {
  font-size: 13px;
}
.messenger__header-input::-ms-input-placeholder {
  font-size: 13px;
}
.messenger__header-input::placeholder {
  font-size: 13px;
}
.messenger__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  min-height: 32px;
  border: 1px solid #CCCCCC;
}
.messenger__filter .image {
  rotate: 180deg;
}
.messenger__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.messenger__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  background: var(--light-color);
  padding-top: 10px;
  padding-bottom: 10px;
}
.messenger__content {
  max-width: 300px;
  width: 100%;
}
.messenger__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--dark-color);
}
.messenger__text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: var(--dark-color);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.messenger__date {
  position: absolute;
  right: 0;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--grey-color);
}

.admin {
  background: #E6F6FF;
  border-radius: 20px;
  padding: 10px 40px;
}

@media (max-width: 400px) {
  .messenger__content {
    max-width: 200px;
  }
}
.favorites__header {
  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;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--light-color);
  width: 100%;
  z-index: 10;
  padding: 20px;
}
.favorites__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  min-height: 28px;
  color: var(--dark-color);
  margin: 0;
}
.favorites__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.favorites__btn {
  color: var(--accent-color-2);
  font-size: 16px;
  font-weight: 400;
}
.favorites__menu {
  position: absolute;
  top: 0;
  right: 28px;
  border-radius: 5px;
  z-index: 12;
  background: var(--light-color);
  min-width: 204px;
  padding: 5px 16px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px, rgba(0, 0, 0, 0.04) 0px 0px 2px 0px;
}
.favorites__menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.favorites__link {
  position: relative;
  z-index: 13;
  display: block;
  padding: 8px 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}
.favorites .tabs__nav {
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  min-height: 30px;
  border-bottom: 3px solid #E3E2E1;
  padding-bottom: 15px;
  padding-top: 10px;
  background: var(--light-color);
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
}
.favorites .tabs__nav-item {
  position: relative;
}
.favorites .tabs__nav-btn {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-color);
}
.favorites .tabs__content {
  padding-top: 140px;
}

.favorites-header-more {
  rotate: 90deg;
}

.favorites-ads__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.favorites-ads__item {
  padding: 6px 15px;
  border-radius: 6px;
  background: #EBEBEB;
}
.favorites-ads__btn {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}
.favorites-ads__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.favorites-ads__market {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.favorites-ads__market .product {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}
.favorites-ads__market .product__picture .image {
  border-radius: 5px;
}

.favorites-selection__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.favorites-selection__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}
.favorites-selection__item .image {
  border-radius: 5px;
}
.favorites-selection__content {
  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;
  width: 100%;
}
.favorites-selection__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.favorites-selection__num {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 5px;
}
.favorites-selection__content-list {
  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;
}

.favorites-search__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.favorites-search__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background: var(--light-color);
  border-radius: 5px;
  padding: 15px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
}
.favorites-search a {
  display: block;
  width: 100%;
}
.favorites-search__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 30px;
}
.favorites-search__path {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-color);
  line-height: 30px;
}

.favorites-compare__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.favorites-compare__item a {
  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;
}
.favorites-compare__title {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.favorites-compare__num {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.favorites-compare__pictures {
  position: relative;
}
.favorites-compare__pictures .image {
  border-radius: 5px;
  border-right: 2px solid var(--light-color);
}
.favorites-compare__pictures .image:nth-child(1) {
  position: absolute;
  right: 30px;
}

.favorites-profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.favorites-profile__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.favorites-profile__user .image {
  border-radius: 50%;
}
.favorites-profile__name {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.favorites-profile__num {
  color: var(--grey-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.favorites-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
  padding-bottom: 10px;
}
.favorites-profile__item {
  min-width: 150px;
  background: var(--light-color);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 0 2px 0 rgba(0, 0, 0, 0.04);
}
.favorites-profile__list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 5px;
  gap: 20px;
}
.favorites-profile__list-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: var(--dark-color);
}
.favorites-profile__list-price {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: var(--dark-color);
}
.favorites-profile__btn {
  min-width: 18px;
  min-height: 16px;
}

.favorites-ads-active-item {
  background: #CFEDFF;
}

.favorites-body {
  padding-bottom: 55px;
}
/*# sourceMappingURL=main.css.map */